62 Commits

Author SHA1 Message Date
897e867819 added hawk_get_val_type() 2021-08-18 05:11:04 +00:00
5f7bef98f5 fixed an issue with an old compiler 2020-12-31 16:27:29 +00:00
7d2a0ed484 got the ffi module to work in the basics at least 2020-12-27 19:26:07 +00:00
3412108b75 fixed bchr handling in some functions in val.c 2020-12-18 17:48:36 +00:00
dc4b629cbf added hawk::cmgr_exists()
enhanced str::tombs()
enhanced hawk_rtx_valtobcstrdupwithcmgr()
2020-12-11 12:14:48 +00:00
0de14c4744 resolved numerous bugs regarding byte-characters and byte-strings
changed the way to handle %s/%k/%K contained inside CONVFMT - treat the format specifier as if it is %g instead of returning an error.
removed HAWK_EFMTCNV for the CONVFMT formatting change
2020-12-10 16:55:47 +00:00
e983d7701a added some code for the byte-character literal support.
enhanced value comparison routines
2020-12-09 18:07:20 +00:00
2e25911bfd enhanced the concat operator handler to process mbs properly 2020-12-09 04:02:04 +00:00
97bd469ce8 touched up hawk_rtx_truncrec().
fixed a bug in hawk_xma_init()
2020-12-07 16:48:29 +00:00
792f38acae use hawk_rtx_getvaloocstr()/hawk_rtx_getfreeoocstr() more wherever possible
trying to make character handling sane
2020-12-07 16:22:39 +00:00
342e01f5b4 attempting to support the character literal notation 2020-12-04 16:19:01 +00:00
65ad752666 hacked formatting code to work around a compiler problem of not passing __float128 properly via va_list.
introduced 'jj' to pass a large value via a pointer but to take the value inside the pointer
changed hawk_rtx_format() and hawk_rtx_formatmbs() to use 'jj' when building with HAWK_USE_FLTMAX on
2020-12-03 07:28:53 +00:00
2dd6029064 fixed a parser bug when handling the print/printf statement without redirection.
fixed a bug where a single dot was converted to 0 when passed via -v (e.g. -vTDIR=.)
added more test cases
2020-12-01 10:22:17 +00:00
29bc731ccb enhanced asort() and asorti() to handle an array value.
added hawk_rtx_getarrvalfld() and hawk_rtx_setarrvalfld()
2020-05-02 18:18:26 +00:00
881dfd2ce0 enhanced array manipulation code 2020-04-26 15:28:44 +00:00
70f759b140 more code for array support 2020-04-24 17:27:56 +00:00
f860798821 Added partial code for array support 2020-04-24 15:52:08 +00:00
6e857ff4f2 updated hawk_arr_t callback functions to be more consistent with hawk_rbt_t/hawk_htb_t by creating hawk_arr_style_t and adding hawk_arr_setstyle()/hawk_arr_getstyle().
remove hawk_arr_getcopier()/hawk_arr_setcopier()/hawk_arr_getcomper()/hawk_arr_setcomper()
2020-04-24 06:49:19 +00:00
22342148f5 changed hawk_rtx_makemapvalwithdata() to accept data count.
enhanced sys::tcgetattr() and sys::tcsetattr() to store and fetch the value for c_cc field to and from the "cc" slot
2020-04-22 06:48:01 +00:00
8b597b7acf did some preparatory work to support an array that uses an integer as the index 2020-04-20 15:34:59 +00:00
c3d137a5c2 added %check to the rpm spec file.
renamed awk to hawk
updated copyright years
2020-04-16 03:42:30 +00:00
f827a94d64 work in progress - debugging reference evaluation issues 2020-04-14 06:02:55 +00:00
a8afcca04e simplified hawk::call().
fixed a bug in copying a value for a reference upon returning from a function in hawk_rtx_evalcall(). it was unable to handle the case where a reference variable is not updated in the called function
2020-04-13 08:41:16 +00:00
9328a49cb1 added hawk_rtx_valtofun() and changed the asort implementation to use it 2020-04-08 17:07:19 +00:00
ca1877d412 call-by-reference handling with a true multidimensional map 2020-04-04 17:40:56 +00:00
76d295365a writing code for supporting true multi-dimensional indices in map 2020-03-30 08:54:37 +00:00
a93beaaf55 added hawk::gc(), hawk::gc_set_threshold(), hawk::gc_get_threshold() 2020-03-28 08:04:37 +00:00
7d70005984 implemented automatic generational processing based on threshold in garbage collection 2020-03-28 06:45:36 +00:00
752b1332c9 touched up gc code 2020-03-25 17:05:48 +00:00
d448f8d8bc gc enhancement for supporting generational processing 2020-03-25 08:40:41 +00:00
c1ffc899fe some more code cleanup 2020-03-25 06:22:25 +00:00
74180e1d8a some cosmetic source code changes 2020-03-25 05:56:11 +00:00
404c382e33 fixed a gc flaw upon rtx disposal 2020-03-24 15:26:00 +00:00
565e51091b fixed outstanding bugs in gc implementation. pending more improvements 2020-03-24 06:49:25 +00:00
8f6176f451 trying to fix bugs in gc implementation 2020-03-23 16:14:38 +00:00
8c01bef2fb some interim code for gc implementation 2020-03-23 09:24:22 +00:00
6502a2e388 changed the behavior of for(x in y) loop - it now takes a snapshot of keys before running body 2020-03-22 18:01:05 +00:00
f0c1a26ccc some gc works 2020-03-20 09:50:32 +00:00
adcbf748a2 fixed a bug in string cache managment.
added mbs cache management
2020-03-20 06:05:28 +00:00
7fe9ea0936 added some code to implement gc 2020-03-19 17:42:01 +00:00
1285d77c1e changed the doubly linked list to circular in idmap-imp.h
started writing some code to implement gc
2020-03-18 08:30:40 +00:00
ddcdd3904e enhanced hawk_makemapvalwithdata() to handle integers of various size
enhanced sys::stat()
2020-03-17 08:12:01 +00:00
6cd9cafd33 added hawk-map.h which uses either htb or rbt depending on HAWK_MAP_IS_HTB or HAWK_MAP_IS_RBT
the hawk's map value is now dependent on the above change. at compile time, you can choose HTB or RBT.
fixed a bug of not resetting FNR in the standard console read handlers
2020-03-15 17:39:15 +00:00
f2316d1d3e hawk_unescape_bcstr()/hawk_unescape_ucstr() 2020-03-13 16:00:21 +00:00
059ba422ce removed some unneeded lines 2020-03-10 15:27:44 +00:00
c2162bd12b enhanced hawk_rtx_match() to handle mbs
fixed bugs in hawk_rtx_getrefval() and hawk_rtx_getrefvaltype() for HAWK_VAL_REF_POS
2020-03-10 15:17:21 +00:00
bae06804ef added hawk_rtx_matchvalwithucs() and hawk_rtx_matchvalwithbcs()
renamed hawk_rtx_matchval() to hawk_rtx_matchvalwithoocs()
updated code concerning the call to hawk_rtx_setrefval()
2020-03-10 08:36:31 +00:00
260df21f85 made sub() and gsub() mbs-aware 2020-03-10 04:07:23 +00:00
fd56a19a79 added @pragma stripstrspc on/off
added a new global variable STRIPSTRSPC
2020-03-09 08:52:42 +00:00
f0d588414e added %u to printf
changed %c with an empty string to '\0' in printf
fixed the execution behavior of double patterned action block(e.g. /a/,/b/)
fixed a bug in NF=value assignment handling
fixed a bug when assigning NF with a large number than the current number of records
fixed a bug in converting multidimensional array index to a string
2020-03-08 15:04:47 +00:00