vrtc / pjass (public) (License: BSD) (since 2023-08-03) (hash sha1)
pjass is a free Jass scripting language parser. This repository is a fork of lep/pjass. The goal is to add Debian packaging. As of the time of this writing, it works for current stable, that is Debian 12 (bookworm).
List of commits:
Subject Hash Author Date (UTC)
Replace strncat with str_append. ad968e040f315ed3cf6580e46587342897839529 lep 2018-03-21 13:53:11
Do not report arrays as uninitialized when the index is missing. 72e93bd234743a438fb0a5c105514bf732c22b89 lep 2017-12-20 14:59:10
Better error messages. ad8342582ac3617280f471d889b1766be272858b lep 2017-11-15 17:52:08
Handle wrong shadowing. 0500a60ef11f39c4f33044e26c29798f6d8445b5 lep 2017-02-19 14:37:21
Added checks for natives which behave bad in a globals block. 3e6ac270dda9ad695723d3bc2aac4d69a2fdf87a lep 2017-02-19 10:57:33
Update readme.md 2c9177dd5482ed8c4c1464a4ade37c301205fe6b lep 2017-02-01 17:42:49
Public git release. 2da78f3665ac4f53f5833c6a48ebbeaabea0cd49 lep 2017-02-01 16:42:21
Better ifdef-handling for aligned malloc. d95ebafa7204e49d84a9fed8cdeb01713dd0bc82 lep 2017-02-01 16:41:07
Makefile changes. 0458bb26764aad1caec71ccf721e84a28c699ee0 lep 2017-02-01 15:48:25
Can now compile on freebsd and linux from one branch. 0772c4bd17dcfc389ca0e887b4bbceda8e46fa8e lep 2017-01-07 21:05:10
More descriptive check for assignment. 474462b44fe20e958e8c6a3b51ba2da9c4a46451 lep 2016-11-24 16:47:15
Actually add all the sources to the release zipball 151ae88aac4c3ac8aae432a4a240239f652fa8f4 lep 2016-11-10 15:30:38
Don't treat ``.'' as a valid real value. 72e5087e22af66de0765c6d4f9ceae154725e2c2 lep 2016-10-24 14:55:02
Also split on \r in flag parser. 519d685ab24864716e3a1ecfd797790a327868ca lep 2016-08-28 12:41:08
Improved errors for function-calls. 5a50178a03c5aa3d153e8699070942327fde0b7b lep 2016-08-27 18:44:01
A very strange error with newlines and comments. d822cacbd889fe723102102c8a09d578d90f013e lep 2016-08-21 09:15:00
Added +nosyntaxerror and +nosemanticerror e755e12b3cab1d5069574e34d22633dd420bb230 lep 2016-05-07 13:42:57
MinGW fixes. f579fad932039f1bca43e7612154f5b7dc4aea4f lep 2016-03-13 19:29:36
Added +shadow description to -h 6a62b1ecf773175992a2a430a178fffb5532e467 lep 2016-03-13 19:35:20
Reduced duplicate code from variable decleration. 01d6f01ebf7c2df9f58aea1bba61bae8a270b520 lep 2016-03-13 19:03:34
Commit ad968e040f315ed3cf6580e46587342897839529 - Replace strncat with str_append.
Author: lep
Author date (UTC): 2018-03-21 13:53
Committer name: lep
Committer date (UTC): 2018-03-21 14:59
Parent(s): 72e93bd234743a438fb0a5c105514bf732c22b89
Signer:
Signing key:
Signing status: N
Tree: 9f4e4678ef85cc493054fec198c50ff2031b979d
File Lines added Lines deleted
misc.c 22 8
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)){
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/pjass

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/pjass

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/pjass

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main