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)
Don't use strncat. 332fecc88884fe33da77036a41188b9cfc73e4f2 lep 2021-02-19 22:25:35
Allow assignment to local variable in constant function 0920290c0af1fe76066aa9520729b2afaa41fbd7 lep 2020-08-04 16:18:16
Add hexadecimal form with uppercase X 43d20a0f74e86cb2c89021b893b923d2efb4070a lep 2020-08-04 16:17:13
Use flag in test. df89d16a43ce0b5c2f7ca0a079818361dee02908 lep 2020-08-04 16:15:24
Small readme fixes eeddac84a092c2cb3105510626cb674729c4f09f lep 2020-08-03 09:49:49
Warn when using native as code 1b14ec57777560df0982a08f3a2bc8eb27a1df75 lep 2020-08-03 09:32:38
Use the strhash hashfunc for our hashtables. d6f0de51cb54921b529799b9939cfe2dcdf7b4d0 lep 2020-07-29 11:13:13
Document installation methods 814075ef77bc8981684971bfc2a5c626f2e34035 lep 2020-07-18 08:11:43
Improved Readme c8d57e3c1953d5e67ca12f75f5685f7786eacaf2 lep 2020-07-18 07:43:09
Added some tests for the new StringHash check. 1f613e7c5b078cc3ce3a04a957291ca070856528 lep 2020-07-18 07:17:26
Added check for bad StringHash usage 3abbed6aa1cd87e202a0b038e8af2246e9ceadeb lep 2020-07-17 22:13:39
Fix release target 6eca932b6210f1ac93b3bc030c15797d88d529b6 lep 2019-10-17 12:58:24
Better error message for `type` as a name 665dc1efab9a5a8706bb0fcb95a13eabe3358436 lep 2019-10-17 12:53:35
Added reserved keyword 'alias' 7589b241e1179f85bf19b82696d97d8365034376 lep 2019-05-31 21:57:10
More newline stuff 3e57cdb92c766375430c701034db56e81dcc27e2 lep 2019-05-18 09:44:12
Report natives after function defintions eb58451c6e2df142a51e85e68ee11efa45c3215c lep 2019-04-01 12:49:24
Specify minimum bison version in readme 44b75417a7d01e2639a4b4acda031e95eca8ffb2 lep 2019-02-18 23:41:48
Support Apple by defining _aligned_malloc 596488eafa1e09c1120d2488c78959a8c63c5a5d Jesse Rogers 2019-01-03 17:08:49
Improved the amalgation build 4be0d720517e70920c7b716f95babc63df1f4ffa lep 2018-12-31 14:50:05
Added missing new tests c5c6dab555bec81e6a7b419ea88d195836b3762f lep 2018-12-30 18:40:02
Commit 332fecc88884fe33da77036a41188b9cfc73e4f2 - Don't use strncat.
Author: lep
Author date (UTC): 2021-02-19 22:25
Committer name: lep
Committer date (UTC): 2021-02-19 22:25
Parent(s): 0920290c0af1fe76066aa9520729b2afaa41fbd7
Signer:
Signing key:
Signing status: N
Tree: 37ac7e54a950068a410cfabe8979d8c4c817db3c
File Lines added Lines deleted
blocks.h 2 1
grammar.y 0 1
misc.c 1 1
misc.h 5 3
sstrhash.c 3 1
sstrhash.h 1 1
token.l 4 4
tree.c 3 1
File blocks.h changed (mode: 100644) (index 7e06325..fe2c87b)
... ... void block_push(int lineno, enum block_type type);
13 13 bool block_pop(enum block_type type, char *buf, size_t len); bool block_pop(enum block_type type, char *buf, size_t len);
14 14 void block_missing_error(char *msg, size_t len); void block_missing_error(char *msg, size_t len);
15 15
16 #endif
16 #endif
17
File grammar.y changed (mode: 100644) (index d468d76..3c0c7a1)
... ... statement: newline { $$.ty = gEmpty; }
482 482 } }
483 483 | SET rid LBRACKET expr RBRACKET EQUALS expr newline{ | SET rid LBRACKET expr RBRACKET EQUALS expr newline{
484 484 const struct typeandname *tan = getVariable($2.str); const struct typeandname *tan = getVariable($2.str);
485 char buf[1024];
486 485 $$.ty = gAny; $$.ty = gAny;
487 486 if (tan->ty != gAny) { if (tan->ty != gAny) {
488 487 checkarrayindex(tan->name, $4.ty, lineno -1); checkarrayindex(tan->name, $4.ty, lineno -1);
File misc.c changed (mode: 100644) (index 9de9d46..d8c7e95)
... ... struct hashtable uninitialized_globals;
48 48 struct hashtable string_literals; struct hashtable string_literals;
49 49
50 50 size_t stringlit_buffsize = 2048; size_t stringlit_buffsize = 2048;
51 char stringlit_buffer[2048] = {0};
51 char stringlit_buff[2048] = {0};
52 52 size_t stringlit_length = 0; size_t stringlit_length = 0;
53 53
54 54 struct tree stringlit_hashes; struct tree stringlit_hashes;
File misc.h changed (mode: 100644) (index d082216..9aec719)
... ... extern struct hashtable shadowed_variables;
136 136
137 137 extern struct tree stringlit_hashes; extern struct tree stringlit_hashes;
138 138
139 size_t stringlit_buffsize;
140 char stringlit_buff[2048];
141 size_t stringlit_length;
139 extern size_t stringlit_buffsize;
140 extern char stringlit_buff[2048];
141 extern size_t stringlit_length;
142 142
143 143 union node checkfunctionheader(const char *fnname, struct paramlist *pl, const struct typenode *retty); union node checkfunctionheader(const char *fnname, struct paramlist *pl, const struct typenode *retty);
144 144 union node checkfunccall(const char *fnname, struct paramlist *pl); union node checkfunccall(const char *fnname, struct paramlist *pl);
 
... ... union node checkarraydecl(struct typeandname *tan);
146 146 union node checkvartypedecl(struct typeandname *tan); union node checkvartypedecl(struct typeandname *tan);
147 147 void checkwrongshadowing(const struct typeandname *tan, int linemod); void checkwrongshadowing(const struct typeandname *tan, int linemod);
148 148 void checkmodulo(const struct typenode *a, const struct typenode *b); void checkmodulo(const struct typenode *a, const struct typenode *b);
149 void checkallshadowing(struct typeandname *tan);
150 void checkarrayindex(const char *name, const struct typenode *ty, int lineno);
149 151
150 152 void str_append(char *buf, const char *str, size_t buf_size); void str_append(char *buf, const char *str, size_t buf_size);
151 153
File sstrhash.c changed (mode: 100644) (index 2da9278..ea18861)
1 1 #include "sstrhash.h" #include "sstrhash.h"
2 2
3 3 #include <stdint.h> #include <stdint.h>
4 #include <string.h>
4 5
5 6 #define mix(a,b,c) \ #define mix(a,b,c) \
6 7 { \ { \
 
... ... uint32_t SStrHash2(uint8_t *key){
83 84 len++; len++;
84 85 } }
85 86 return hash(buff, len, 0); return hash(buff, len, 0);
86 }
87 }
88
File sstrhash.h changed (mode: 100644) (index 554d4f7..c5326df)
3 3
4 4 #include <stdint.h> #include <stdint.h>
5 5
6 inline uint32_t hashfunc(uint8_t *key);
6 uint32_t hashfunc(uint8_t *key);
7 7 uint32_t SStrHash2(uint8_t *key); uint32_t SStrHash2(uint8_t *key);
8 8
9 9 #endif #endif
File token.l changed (mode: 100644) (index 5b80751..3557a23)
... ... TABS [\x01-\x09\x0B\x0C\x0E-\x1F]
103 103 } }
104 104 <INSTRING>["] { BEGIN(INITIAL); return STRINGLIT; } <INSTRING>["] { BEGIN(INITIAL); return STRINGLIT; }
105 105 <INSTRING>\\[btrnf"\\] { <INSTRING>\\[btrnf"\\] {
106 strncat(stringlit_buff, yytext, stringlit_buffsize);
106 str_append(stringlit_buff, yytext, stringlit_buffsize);
107 107 } }
108 108 <INSTRING>\\(.|[\r\n]) { yyerrorline(syntaxerror, lineno, "Invalid escape character sequence"); } <INSTRING>\\(.|[\r\n]) { yyerrorline(syntaxerror, lineno, "Invalid escape character sequence"); }
109 109
110 110 <INSTRING>\r?\n { <INSTRING>\r?\n {
111 strncat(stringlit_buff, yytext, stringlit_buffsize);
111 str_append(stringlit_buff, yytext, stringlit_buffsize);
112 112 lineno++; lineno++;
113 113 isconstant = 0; isconstant = 0;
114 114 } }
115 115 <INSTRING>\r { <INSTRING>\r {
116 strncat(stringlit_buff, yytext, stringlit_buffsize);
116 str_append(stringlit_buff, yytext, stringlit_buffsize);
117 117 lineno++; lineno++;
118 118 isconstant = 0; isconstant = 0;
119 119 } }
120 <INSTRING>. { strncat(stringlit_buff, yytext, stringlit_buffsize); }
120 <INSTRING>. { str_append(stringlit_buff, yytext, stringlit_buffsize); }
121 121
122 122
123 123 {NEWLINE} { {NEWLINE} {
File tree.c changed (mode: 100644) (index 7fe0fbe..753fde4)
1 1 #include <string.h> #include <string.h>
2 2 #include <stdbool.h> #include <stdbool.h>
3 #include <stdlib.h>
3 4
4 5 #include "tree.h" #include "tree.h"
5 6
 
... ... void tree_put(struct tree *t, uint32_t key, void *value){
56 57 } }
57 58 } }
58 59 } }
59 }
60 }
61
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