Commit Graph

14 Commits

Author SHA1 Message Date
Danila Fedorin f18a31c0df Change return code to EXIT_SUCCESS. 2017-02-14 19:13:43 -08:00
Danila Fedorin 140b727cc7 Make foreach_free public and fix a few bugs. 2017-02-14 19:10:44 -08:00
Danila Fedorin 97933c4ce9 Tentatively implement lexing multiple words. 2017-02-05 16:29:44 -08:00
Danila Fedorin 8ff435b7b5 Add underscores to local functions. 2017-02-05 15:49:06 -08:00
Danila Fedorin a0f51d441e Change the way best match is picked to the one with the "largest" id. 2017-02-05 15:46:43 -08:00
Danila Fedorin 5be88a2856 Fix bug(s) in pattern compilation that added the '[' pr ']' chars. 2017-02-04 00:29:20 -08:00
Danila Fedorin 0b6d73ebdf Write initial code for matching the patterns to a single string.
The code is limited in two aspects, at the moment:
* It's not very well tested
* The current "best" match is just the one that occurred last. While
this is just fine in terms of length, this leaves open to chance which
pattern type will be returned if multiple patterns of the same length
match.
2017-02-04 00:28:36 -08:00
Danila Fedorin 01d49eb397 Implement a few "pair map" functions, mostly used for hash tables.
In order to efficiently check if nodes are contained within a
given set, without knowing exactly how many nodes there are and
allocating a ton of memory, it's probably best to use a hash table
(sparse sets would be more efficient but would require to allocate
all of their space at once). It's also pointless to reimplement most
of the hash table functionality from libds just to get it to work
with pairs (pattern id + node id), so pairmap.h provides a few
defaults that can be plugged into the default ht_s, as well as a
few macros to facilitate some hash table operations.
2017-01-27 22:16:31 -08:00
Danila Fedorin bae15027c3 Add a pattern id variable to all nodes. 2017-01-26 15:02:44 -08:00
Danila Fedorin ee40622ceb Implement pattern compilation and freeing. 2017-01-21 21:19:12 -08:00
Danila Fedorin d8ddaa8b45 Fix a few more bugs in helper functions. 2017-01-21 21:18:55 -08:00
Danila Fedorin 16832e98a9 Fix create functions not setting node type. 2017-01-21 21:18:34 -08:00
Danila Fedorin 961136a41b Add internal function, mostly for memory allocation and concatenation. 2017-01-19 23:32:09 -08:00
Danila Fedorin 41d4d98678 Create CMakeLists.txt file. 2017-01-19 19:33:59 -08:00