Remove switch in prv emit
This commit is contained in:
parent
b42fb4d2f3
commit
96cfd6247e
@ -108,34 +108,28 @@ emit(struct prv *prv, struct prv_chan *rchan)
|
|||||||
rchan->last_value_set = 1;
|
rchan->last_value_set = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Assume null */
|
||||||
long val = 0;
|
long val = 0;
|
||||||
switch (value.type) {
|
if (likely(value.type == VALUE_INT64)) {
|
||||||
case VALUE_INT64:
|
val = value.i;
|
||||||
val = value.i;
|
if (rchan->flags & PRV_NEXT)
|
||||||
if (rchan->flags & PRV_NEXT)
|
val++;
|
||||||
val++;
|
|
||||||
|
|
||||||
if (~rchan->flags & PRV_ZERO && val == 0) {
|
if (~rchan->flags & PRV_ZERO && val == 0) {
|
||||||
err("forbidden value 0 in %s: %s\n",
|
err("forbidden value 0 in channel %s: %s",
|
||||||
chan->name,
|
|
||||||
value_str(value));
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case VALUE_NULL:
|
|
||||||
val = 0;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
err("chan_read %s only int64 and null supported: %s\n",
|
|
||||||
chan->name, value_str(value));
|
chan->name, value_str(value));
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
|
} else if (value.type != VALUE_NULL) {
|
||||||
|
err("in channel %s: only int64 and null supported, found %s",
|
||||||
|
chan->name, value_str(value));
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_line(prv, rchan->row_base1, rchan->type, val);
|
write_line(prv, rchan->row_base1, rchan->type, val);
|
||||||
|
|
||||||
dbg("written %s for chan %s", value_str(value), chan->name);
|
dbg("written %s for chan %s", value_str(value), chan->name);
|
||||||
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user