如果条件不起作用

时间:2013-03-06 12:21:19

标签: c if-statement

我有这部分代码:

void query(hash_t* params) {
record_t* rec;

// Coordinator, opgroup and  Opcode  specified by the client
uint64_t netid = 0;
uint8_t op_code_group = 0;
uint8_t op_code = 0;
char* par;
now = mdl_now();
/* set the start and end time based on query parameters */
...........
// Network id is required
par = hash_get(params, "netid");
...........
netid = strtoull(par, NULL, 10);
par = hash_get(params, "opcode_group");
...........
op_code_group = strtoul(par, NULL, 10);
par = hash_get(params, "opcode");
...........
op_code = strtoul(par, NULL, 10);
/* seek in the bytestream */
mdl_seek(start);
while((rec = (record_t* ) mdl_next(&ts)) != NULL) {
    ...............
    // Only print records with the wanted net and opcodes
    if((netid != 0) && (netid != NTOHLL(rec->net_id))) 
        continue;
    if((opcode_group != 0) && (op_code_group != ntohl(rec->opcode_group))) 
        continue;
    if((opcode != 0) && (op_code != ntohl(rec->opcode)))
        continue;
    ..............
    mdl_print("%u %llu %u %u %u %d\n", 
        sec, 
        NTOHLL(rec->net_id), 
        rec->op_code_group, 
        rec->op_code, 
        rec->payloadlength, 
        val);
     }
 }

opcode_group,操作码和其他参数通过http请求传递给查询类。

这是一个问题: 如果我指定opcode_group例如= 160,结果不会显示任何内容。相反,如果我指定opcode_group = 0(所有记录),结果会显示所有记录,包含opcode_group = 160的记录。

错误在哪里?非常感谢你。

1 个答案:

答案 0 :(得分:1)

我可以看到代码并找到只在变量“ op_code_group ”中获取值而不是“ opcode_group

op_code_group = strtoul(par, NULL, 10);

我相信你会弄乱类似的变量

_EDITED_ _ __ _ __

我认为问题在于这部分

if((opcode_group != 0) && (op_code_group != ntohl(rec->opcode_group))) 
    continue;"   

此部分将失败并仅在opcode_group == 0

时打印记录

将此修改为

if((opcode_group == 0) || (op_code_group != ntohl(rec->opcode_group))) 
    continue;"  

猜猜你也面对与netid和op_code相同的问题