我正在用C ++编写一段代码,它将char数组作为输入,包含类似JSON的文本。我们的想法是从JSON中获取值。
给出错误的函数如下:
variable * getVariableInfo(const char * variableInfo){
/*get {...}*/
printf("%s\n",variableInfo);
int start, countWord=0;
int order=-1, type=-1;
char * value;
variable * returnValue;
const char * aux;
while(*(variableInfo++)){
if(*variableInfo=='"'){
variableInfo++;
aux=variableInfo;
countWord=0;
while(*(variableInfo++)!='"'){
countWord++;
}
char *word = (char *) calloc(1, sizeof(char) * ( countWord + 1 ) );
strncpy(word, aux, countWord);
word[countWord]='\0';
printf("\nWORD %s", word);
while(*(variableInfo++)!='"');
aux=variableInfo;
countWord=0;
while(*(variableInfo++)!='"'){
countWord++;
}
char *str = (char *) calloc(1, sizeof(char) * ( countWord + 1 ) );
strncpy(str, aux, countWord);
str[countWord]='\0';
printf("\nSTR %s\n",str);
if(strcmp(word,ORDER)==0){
order=a2i(str);
printf("ORDER = %i", order);
}
/*TYPE*/
else if(strcmp(word,TYPE)==0){
if(strcmp(str, valueINT)==0) type=TYPE_INT;
else if(strcmp(str, valueSTR)==0) type=TYPE_STRING;
else if(strcmp(str, valueBOOL)==0) type=TYPE_BOOLEAN;
else return 0;
printf("TYPE = %i", type);
/*VALUE*/
}
else if(strcmp(word,VALUE)==0){
value = (char *) calloc(1, sizeof(char) * ( countWord + 1 ) );
strncpy(value, str, countWord);
value[countWord]='\0';
printf("VALUE = %s", value);
}
else{
printf("ELSE");
return 0;
}
}
printf("\nCHAR %c\n---------", *variableInfo);
}
printf("Pass");
if(type==-1||order==-1||!value){
if(!type) printf("NOT");
if(!order) printf("NOO");
if(!value) printf("NOV");
return 0;
}
returnValue = (variable *) calloc(1,sizeof(variable)+(sizeof(char)*(strlen(value)+1)));
returnValue->order=order;
returnValue->type=type;
strncpy(returnValue->value,value,strlen(value));
returnValue->value[strlen(value)]='\0';
return returnValue;
}
var“variableInfo”从另一个函数发送,并从包含原始完整JSON文本的aux指针创建如下:
variableInfo = (char *) calloc(1, sizeof(char) * ( countWord + 1 ) );
strncpy(variableInfo, aux, countWord);
variableInfo[countWord]='\0';
variables[variableCount]=getVariableInfo(variableInfo);
如您所见,我添加了一些printf,输出如下所示:
{"ORDER":"0","TYPE":"int","VALUE":"9999"}
WORD ORDER
STR 0
ORDER = 0
CHAR ,
---------
WORD TYPE
STR int
TYPE = 0
CHAR ,
---------
WORD VALUE
STR 9999
VALUE = 9999
CHAR }
---------
CHAR
Segmentation fault (core dumped)
我打印“variableInfo”变量并显示应该发送到“getVariableInfo”函数的正确文本,然后ORDER,TYPE和VALUE的值可以从类似JSON的文本中正确获取。但是,我得到了分段错误错误,因为最后一轮的while,即使最后一个char是'\ 0',它也会停留在while循环中(参见输出“CHAR}”应该是最后一次,下一次检查while声明它应该结束但它然后打印“CHAR”)。
感谢您的帮助。
亲切的问候。
答案 0 :(得分:0)
您正在使用后增量运算符来递增variableInfo
。此运算符返回旧指针值的副本,该值不指向\0
。改为使用预增量:
while(*(++variableInfo))
预增量将返回递增的值。 有关前后增量的详细信息,请参阅this question。
答案 1 :(得分:0)
在这种情况下,如果我要调试,我可能会选择存储' variableinfo'的原始值。并打印' variableinfo-originalPointer' - 获得合理的指数值。
我没有方便的C编译器,但我确实想知道你的while循环: 也许
while (*(variableinfo++)=='"')
始终增加' variableinfo'。如果是这样,它可以增加3次(三个while循环),然后再检查是否可以到达字符串的结尾。 如果是这种情况,它可以越过字符串的末尾,永远不会检测到它越过字符串的末尾。
解决方案:(1)撕开whileloops使增量显式,(2)始终检查' \ 0'当你增加你的字符串指针时:
while(*variableinfo == '"' && *variableinfo!='\0')
{
variableinfo++;
}
可能:
if ('\0' == *variableinfo)
break;
立即退出最外面的循环。