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)
Power of 2 hashing 065325daf390f5217310cbd5f19989a774af56c0 lep 2018-12-22 19:45:21
Small cleanup 48f7c95157d71e12b4ecea13315b6b4c144fc629 lep 2018-12-09 20:23:53
Increased types hashtable size 8970d5c4bb8f9e4640f4c6a1805cf69369ebaea3 lep 2018-12-07 18:13:17
Fixed some warnings. 334a10dc8faad2fa19eed06834273bff438f3955 lep 2018-11-07 22:45:22
Optimized ht_put by not calling ht_lookup. 4a2c4d293b719c939b4d8f357adcc04ef26b1cbb lep 2018-11-07 20:51:00
Only add globals to uninitialized globals. efb384fb661e08a855a5861189bf9409ebf9f557 lep 2018-11-07 14:56:38
Added unitialized check for globals. d8a909d8ac08cc233f5cd988afac043cbaeb1b4e lep 2018-11-06 19:43:57
Fixed off-by-one error in str_append. b458eb97a71bad87bbbbef610009da40e0dbf855 lep 2018-11-01 12:26:48
Added modulo operator. 70b4c5117a0b84cddd0c35e07a47e3b2aaf847b8 lep 2018-08-09 19:46:14
realloc returns the new pointer... c15eac9a4c2c2531a256125bc70272edbbf1d036 lep 2018-07-24 20:03:41
Track blocks d2763ae8473a1c699aa2e5605922e4b500c83ed4 lep 2018-07-22 13:28:40
Cross compile and strip under FreeBSD 296bd56c1347afb7a20337e02574f9196b48317a lep 2018-07-22 11:55:29
Track opening/closing blocks. 49b23df64b209106cce92e417ee13ecebb0bc009 lep 2018-07-09 09:37:01
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
Commit 065325daf390f5217310cbd5f19989a774af56c0 - Power of 2 hashing
sdasdsadas
Author: lep
Author date (UTC): 2018-12-22 19:45
Committer name: lep
Committer date (UTC): 2018-12-22 23:01
Parent(s): 48f7c95157d71e12b4ecea13315b6b4c144fc629
Signer:
Signing key:
Signing status: N
Tree: 56ea832409ad2bbe184aad2c51df26fbe436b67c
File Lines added Lines deleted
hashtable.c 7 7
main.c 11 11
File hashtable.c changed (mode: 100644) (index 2893edb..bf0d0de)
... ... void ht_init(struct hashtable *h, size_t size)
22 22
23 23 void * ht_lookup(struct hashtable *h, const char *name) void * ht_lookup(struct hashtable *h, const char *name)
24 24 { {
25 size_t start = hashfunc(name);
26 size_t idx = (start + 1) % h->size;
27 for(; idx != start; idx = (idx + 1) % h->size){
25 size_t start = hashfunc(name) & (h->size -1);
26 size_t idx = (start + 1) & (h->size -1);
27 for(; idx != start; idx = (idx + 1) & (h->size -1)){
28 28 if(h->bucket[idx].name){ if(h->bucket[idx].name){
29 29 if( !strcmp(h->bucket[idx].name, name)){ if( !strcmp(h->bucket[idx].name, name)){
30 30 return h->bucket[idx].val; return h->bucket[idx].val;
 
... ... void * ht_lookup(struct hashtable *h, const char *name)
39 39 static void resize(struct hashtable *h) static void resize(struct hashtable *h)
40 40 { {
41 41 struct hashtable newht; struct hashtable newht;
42 ht_init(&newht, h->size*2 +1);
42 ht_init(&newht, h->size*2);
43 43 size_t i; size_t i;
44 44 for(i = 0; i != h->size; i++){ for(i = 0; i != h->size; i++){
45 45 if(h->bucket[i].name){ if(h->bucket[i].name){
 
... ... static void resize(struct hashtable *h)
54 54
55 55 bool ht_put(struct hashtable *h, const char *name, void *val) bool ht_put(struct hashtable *h, const char *name, void *val)
56 56 { {
57 size_t start = hashfunc(name);
58 size_t idx = (start + 1) % h->size;
59 for(; /*idx != start*/; idx = (idx + 1) % h->size){
57 size_t start = hashfunc(name) & (h->size-1);
58 size_t idx = (start + 1) & (h->size-1);
59 for(; /*idx != start*/; idx = (idx + 1) & (h->size-1)){
60 60 if(!h->bucket[idx].name){ if(!h->bucket[idx].name){
61 61 h->bucket[idx].name = name; h->bucket[idx].name = name;
62 62 h->bucket[idx].val = val; h->bucket[idx].val = val;
File main.c changed (mode: 100644) (index 931a28d..c05ae19)
... ... static struct typenode* addPrimitiveType(const char *name)
17 17
18 18 static void init() static void init()
19 19 { {
20 ht_init(&functions, 10009);
21 ht_init(&globals, 8191);
22 ht_init(&locals, 57);
23 ht_init(&params, 23);
24 ht_init(&types, 151);
25 ht_init(&initialized, 2047);
26
27 ht_init(&bad_natives_in_globals, 17);
28 ht_init(&shadowed_variables, 17);
20 ht_init(&functions, 1 << 13);
21 ht_init(&globals, 1 << 13);
22 ht_init(&locals, 1 << 6);
23 ht_init(&params, 1 << 5);
24 ht_init(&types, 1 << 7);
25 ht_init(&initialized, 1 << 11);
26
27 ht_init(&bad_natives_in_globals, 1 << 4);
28 ht_init(&shadowed_variables, 1 << 4);
29 29
30 ht_init(&uninitialized_globals, 2047);
30 ht_init(&uninitialized_globals, 1 << 11);
31 31
32 32 gHandle = addPrimitiveType("handle"); gHandle = addPrimitiveType("handle");
33 33 gInteger = addPrimitiveType("integer"); gInteger = addPrimitiveType("integer");
 
... ... static void init()
65 65 fFilter = NULL; fFilter = NULL;
66 66 fCondition = NULL; fCondition = NULL;
67 67
68 ht_init(&available_flags, 11);
68 ht_init(&available_flags, 16);
69 69 ht_put(&available_flags, "rb", (void*)flag_rb); ht_put(&available_flags, "rb", (void*)flag_rb);
70 70 ht_put(&available_flags, "shadow", (void*)flag_shadowing); ht_put(&available_flags, "shadow", (void*)flag_shadowing);
71 71 ht_put(&available_flags, "filter", (void*)flag_filter); ht_put(&available_flags, "filter", (void*)flag_filter);
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