File misc.c changed (mode: 100644) (index 64411e0..64ca79a) |
... |
... |
int abs(int i){ |
104 |
104 |
return i; |
return i; |
105 |
105 |
} |
} |
106 |
106 |
|
|
|
107 |
|
static void str_append(char *buf, const char *str, size_t buf_size){ |
|
108 |
|
size_t str_len = strlen(str); |
|
109 |
|
size_t buf_len = strlen(buf); |
|
110 |
|
size_t buf_freespace = buf_size - (buf_len+1); // +1 for zero byte at the end |
|
111 |
|
size_t to_copy; |
|
112 |
|
if(buf_freespace > str_len){ |
|
113 |
|
to_copy = str_len; |
|
114 |
|
}else{ |
|
115 |
|
to_copy = buf_freespace; |
|
116 |
|
} |
|
117 |
|
|
|
118 |
|
memmove(buf+buf_len, str, to_copy); |
|
119 |
|
buf[buf_len + to_copy +1] = 0; |
|
120 |
|
} |
|
121 |
|
|
107 |
122 |
static int editdistance(const char *s, const char *t, int cutoff){ |
static int editdistance(const char *s, const char *t, int cutoff){ |
108 |
123 |
if(!strcmp(s, t)) return 0; |
if(!strcmp(s, t)) return 0; |
109 |
124 |
|
|
|
... |
... |
void getsuggestions(const char *name, char *buff, size_t buffsize, int nTables, |
226 |
241 |
char hbuff[1024]; |
char hbuff[1024]; |
227 |
242 |
if(count == 1){ |
if(count == 1){ |
228 |
243 |
snprintf(hbuff, 1024, ". Maybe you meant %s", suggestions[0].name); |
snprintf(hbuff, 1024, ". Maybe you meant %s", suggestions[0].name); |
229 |
|
strncat(buff, hbuff, buffsize); |
|
|
244 |
|
str_append(buff, hbuff, buffsize); |
230 |
245 |
}else if(count == 2){ |
}else if(count == 2){ |
231 |
246 |
snprintf(hbuff, 1024, ". Maybe you meant %s or %s", suggestions[0].name, suggestions[1].name); |
snprintf(hbuff, 1024, ". Maybe you meant %s or %s", suggestions[0].name, suggestions[1].name); |
232 |
|
strncat(buff, hbuff, buffsize); |
|
|
247 |
|
str_append(buff, hbuff, buffsize); |
233 |
248 |
}else if(count >= 3){ |
}else if(count >= 3){ |
234 |
249 |
snprintf(hbuff, 1024, ". Maybe you meant %s, %s or %s", suggestions[0].name, suggestions[1].name, suggestions[2].name); |
snprintf(hbuff, 1024, ". Maybe you meant %s, %s or %s", suggestions[0].name, suggestions[1].name, suggestions[2].name); |
235 |
|
strncat(buff, hbuff, buffsize); |
|
|
250 |
|
str_append(buff, hbuff, buffsize); |
236 |
251 |
} |
} |
237 |
252 |
} |
} |
238 |
253 |
|
|
|
... |
... |
void validateGlobalAssignment(const char *varname) |
275 |
290 |
} |
} |
276 |
291 |
} |
} |
277 |
292 |
|
|
278 |
|
|
|
279 |
293 |
void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, bool mustretbool) |
void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, bool mustretbool) |
280 |
294 |
{ |
{ |
281 |
295 |
const struct paramlist *func = fd->p; |
const struct paramlist *func = fd->p; |
|
... |
... |
void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, boo |
293 |
307 |
if (fi != NULL && pi == NULL) { |
if (fi != NULL && pi == NULL) { |
294 |
308 |
char buf[1024]; |
char buf[1024]; |
295 |
309 |
snprintf(buf, 1024, "Not enough arguments passed to function %s. ", fd->name); |
snprintf(buf, 1024, "Not enough arguments passed to function %s. ", fd->name); |
296 |
|
strncat(buf, "Still missing: ", 1024); |
|
|
310 |
|
str_append(buf, "Still missing: ", 1024); |
297 |
311 |
bool addComma = false; |
bool addComma = false; |
298 |
312 |
for(; fi; fi = fi->next){ |
for(; fi; fi = fi->next){ |
299 |
313 |
if(addComma){ |
if(addComma){ |
300 |
|
strncat(buf, ", ", 1024); |
|
|
314 |
|
str_append(buf, ", ", 1024); |
301 |
315 |
} |
} |
302 |
|
strncat(buf, fi->name, 1024); |
|
|
316 |
|
str_append(buf, fi->name, 1024); |
303 |
317 |
addComma = true; |
addComma = true; |
304 |
318 |
} |
} |
305 |
319 |
yyerrorex(semanticerror, buf); |
yyerrorex(semanticerror, buf); |
|
... |
... |
void checkParameters(const struct funcdecl *fd, const struct paramlist *inp, boo |
309 |
323 |
if(! canconvertbuf(buf, 1024, pi->ty, fi->ty )){ |
if(! canconvertbuf(buf, 1024, pi->ty, fi->ty )){ |
310 |
324 |
char pbuf[1024]; |
char pbuf[1024]; |
311 |
325 |
snprintf(pbuf, 1024, " in parameter %s in call to %s", fi->name, fd->name); |
snprintf(pbuf, 1024, " in parameter %s in call to %s", fi->name, fd->name); |
312 |
|
strncat(buf, pbuf, 1024); |
|
|
326 |
|
str_append(buf, pbuf, 1024); |
313 |
327 |
yyerrorex(semanticerror, buf); |
yyerrorex(semanticerror, buf); |
314 |
328 |
} |
} |
315 |
329 |
if(flagenabled(flag_filter) && mustretbool && typeeq(pi->ty, gCodeReturnsNoBoolean)){ |
if(flagenabled(flag_filter) && mustretbool && typeeq(pi->ty, gCodeReturnsNoBoolean)){ |