我有一个c ++代码,它接收来自erlang进程的数据。我得到一个元组并使用ei_decode_tuple_header / 4,我得到了列表的arity,然后使用for循环遍历元组的元素并解码它们中的每一个:
void decode_tuple(char *buff) {
int index = 0;
int size;
int type;
int res = ei_decode_tuple_header(buff, &index, &size);
if(res == 0) {
cout<<"Success"<<endl;
} else {
cout<<"Fail"<<endl;
}
for(int i = 0; i < size; ++i) {
char *p = (char*)malloc(sizeof(char) * 1000);
int res = ei_decode_string(buff, &index, p);
if(res == 0) {
cout<<"Success"<<endl;
} else {
cout<<"Fail"<<endl;
}
cout<<"The decoded string is "<<p<<endl;
}
}
但是,当元组/列表中的所有元素属于同一类型时,这种方法才有效。无论这个术语是什么,我都想解码。我知道有ei_decode_term,但是文档非常糟糕,我无法知道如何做到这一点?
有人可以帮忙!谢谢@
答案 0 :(得分:0)
您是否尝试使用regionprops
,例如:
typedef struct {
char ei_type;
int arity;
int size;
union {
long i_val;
double d_val;
char atom_name[MAXATOMLEN_UTF8];
erlang_pid pid;
erlang_port port;
erlang_ref ref;
} value;
} ei_term;
ei_term的定义如下:
term.ei_type
因此,您可能需要检查{{1}}以便更好地解析