From: Dirk Koopman Date: Thu, 16 Jul 2020 22:07:28 +0000 (+0100) Subject: Fix Filtering, RBN changes X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=2733a992ac8c3d315c110a2cc1984ea0a5e5d0ff;hp=2733a992ac8c3d315c110a2cc1984ea0a5e5d0ff;p=spider.git Fix Filtering, RBN changes Filter has changed so that it is now a "simple" transliteration into perl expressions and relies on perl to do what is required It is quitely that some more work will be required for error handling, but the I no longer attempt to do any bracket handling and leave that up to perl. This means that brackets are fully working (as opposed to NOT working at all). Regexes are now robustly translated where necessary. In order to do this I have ditched Data Dumper because it did not seem to cope with the regex translations correctly. '\s' would seem have been translated to '\\s' and not what the regex actually said. So I have changed the file format to JSON. As this is now the 3rd or 4th JSON change I have made, I have created a "standard" encode and decode in DXJSON.pm and retrofitted it to all the other places which had their own purpose built one. DXJSON.pm is just a very light shim over the standard one. The RBN changes are: 1. don't short-circuit the zone iteration by a filter firing. 2. make sure that filtering and not filtering work identically 3. Add constants to the caches records to make it more obvious what is going on. ---