tesseract_bin 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +23 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +46 -0
- data/VERSION +1 -0
- data/ext/tesseract_bin/extconf.rb +17 -0
- data/lib/tesseract_bin.rb +12 -0
- data/tesseract_bin.gemspec +660 -0
- data/test/helper.rb +18 -0
- data/test/test_tesseract_bin.rb +7 -0
- data/vendor/tesseract-2.04/AUTHORS +8 -0
- data/vendor/tesseract-2.04/COPYING +23 -0
- data/vendor/tesseract-2.04/ChangeLog +71 -0
- data/vendor/tesseract-2.04/INSTALL +229 -0
- data/vendor/tesseract-2.04/Makefile.am +20 -0
- data/vendor/tesseract-2.04/Makefile.in +641 -0
- data/vendor/tesseract-2.04/NEWS +1 -0
- data/vendor/tesseract-2.04/README +138 -0
- data/vendor/tesseract-2.04/ReleaseNotes +213 -0
- data/vendor/tesseract-2.04/StdAfx.cpp +8 -0
- data/vendor/tesseract-2.04/StdAfx.h +24 -0
- data/vendor/tesseract-2.04/ccmain/Makefile.am +63 -0
- data/vendor/tesseract-2.04/ccmain/Makefile.in +735 -0
- data/vendor/tesseract-2.04/ccmain/adaptions.cpp +1082 -0
- data/vendor/tesseract-2.04/ccmain/adaptions.h +109 -0
- data/vendor/tesseract-2.04/ccmain/applybox.cpp +891 -0
- data/vendor/tesseract-2.04/ccmain/applybox.h +73 -0
- data/vendor/tesseract-2.04/ccmain/baseapi.cpp +1105 -0
- data/vendor/tesseract-2.04/ccmain/baseapi.h +256 -0
- data/vendor/tesseract-2.04/ccmain/blobcmp.cpp +76 -0
- data/vendor/tesseract-2.04/ccmain/blobcmp.h +29 -0
- data/vendor/tesseract-2.04/ccmain/callnet.cpp +93 -0
- data/vendor/tesseract-2.04/ccmain/callnet.h +32 -0
- data/vendor/tesseract-2.04/ccmain/charcut.cpp +704 -0
- data/vendor/tesseract-2.04/ccmain/charcut.h +120 -0
- data/vendor/tesseract-2.04/ccmain/charsample.cpp +699 -0
- data/vendor/tesseract-2.04/ccmain/control.cpp +1842 -0
- data/vendor/tesseract-2.04/ccmain/control.h +198 -0
- data/vendor/tesseract-2.04/ccmain/docqual.cpp +1481 -0
- data/vendor/tesseract-2.04/ccmain/docqual.h +155 -0
- data/vendor/tesseract-2.04/ccmain/expandblob.cpp +82 -0
- data/vendor/tesseract-2.04/ccmain/expandblob.h +13 -0
- data/vendor/tesseract-2.04/ccmain/fixspace.cpp +989 -0
- data/vendor/tesseract-2.04/ccmain/fixspace.h +72 -0
- data/vendor/tesseract-2.04/ccmain/fixxht.cpp +825 -0
- data/vendor/tesseract-2.04/ccmain/fixxht.h +93 -0
- data/vendor/tesseract-2.04/ccmain/imgscale.cpp +154 -0
- data/vendor/tesseract-2.04/ccmain/imgscale.h +32 -0
- data/vendor/tesseract-2.04/ccmain/matmatch.cpp +391 -0
- data/vendor/tesseract-2.04/ccmain/matmatch.h +48 -0
- data/vendor/tesseract-2.04/ccmain/output.cpp +1273 -0
- data/vendor/tesseract-2.04/ccmain/output.h +116 -0
- data/vendor/tesseract-2.04/ccmain/pagewalk.cpp +666 -0
- data/vendor/tesseract-2.04/ccmain/pagewalk.h +155 -0
- data/vendor/tesseract-2.04/ccmain/paircmp.cpp +107 -0
- data/vendor/tesseract-2.04/ccmain/paircmp.h +43 -0
- data/vendor/tesseract-2.04/ccmain/pgedit.cpp +1867 -0
- data/vendor/tesseract-2.04/ccmain/pgedit.h +181 -0
- data/vendor/tesseract-2.04/ccmain/reject.cpp +1775 -0
- data/vendor/tesseract-2.04/ccmain/reject.h +181 -0
- data/vendor/tesseract-2.04/ccmain/scaleimg.cpp +366 -0
- data/vendor/tesseract-2.04/ccmain/scaleimg.h +35 -0
- data/vendor/tesseract-2.04/ccmain/tessbox.cpp +375 -0
- data/vendor/tesseract-2.04/ccmain/tessbox.h +110 -0
- data/vendor/tesseract-2.04/ccmain/tessedit.cpp +278 -0
- data/vendor/tesseract-2.04/ccmain/tessedit.h +49 -0
- data/vendor/tesseract-2.04/ccmain/tessembedded.cpp +110 -0
- data/vendor/tesseract-2.04/ccmain/tessembedded.h +38 -0
- data/vendor/tesseract-2.04/ccmain/tesseractfull.cc +37 -0
- data/vendor/tesseract-2.04/ccmain/tesseractmain.cpp +387 -0
- data/vendor/tesseract-2.04/ccmain/tesseractmain.h +58 -0
- data/vendor/tesseract-2.04/ccmain/tessio.h +110 -0
- data/vendor/tesseract-2.04/ccmain/tessvars.cpp +38 -0
- data/vendor/tesseract-2.04/ccmain/tessvars.h +48 -0
- data/vendor/tesseract-2.04/ccmain/tfacep.h +62 -0
- data/vendor/tesseract-2.04/ccmain/tfacepp.cpp +443 -0
- data/vendor/tesseract-2.04/ccmain/tfacepp.h +85 -0
- data/vendor/tesseract-2.04/ccmain/tstruct.cpp +549 -0
- data/vendor/tesseract-2.04/ccmain/tstruct.h +108 -0
- data/vendor/tesseract-2.04/ccmain/varabled.cpp +346 -0
- data/vendor/tesseract-2.04/ccmain/varabled.h +125 -0
- data/vendor/tesseract-2.04/ccmain/werdit.cpp +193 -0
- data/vendor/tesseract-2.04/ccmain/werdit.h +67 -0
- data/vendor/tesseract-2.04/ccstruct/Makefile.am +25 -0
- data/vendor/tesseract-2.04/ccstruct/Makefile.in +650 -0
- data/vendor/tesseract-2.04/ccstruct/blckerr.h +29 -0
- data/vendor/tesseract-2.04/ccstruct/blobbox.cpp +778 -0
- data/vendor/tesseract-2.04/ccstruct/blobbox.h +381 -0
- data/vendor/tesseract-2.04/ccstruct/blobs.cpp +247 -0
- data/vendor/tesseract-2.04/ccstruct/blobs.h +119 -0
- data/vendor/tesseract-2.04/ccstruct/blread.cpp +537 -0
- data/vendor/tesseract-2.04/ccstruct/blread.h +63 -0
- data/vendor/tesseract-2.04/ccstruct/callcpp.cpp +252 -0
- data/vendor/tesseract-2.04/ccstruct/coutln.cpp +650 -0
- data/vendor/tesseract-2.04/ccstruct/coutln.h +186 -0
- data/vendor/tesseract-2.04/ccstruct/crakedge.h +39 -0
- data/vendor/tesseract-2.04/ccstruct/genblob.cpp +133 -0
- data/vendor/tesseract-2.04/ccstruct/genblob.h +52 -0
- data/vendor/tesseract-2.04/ccstruct/hpddef.h +39 -0
- data/vendor/tesseract-2.04/ccstruct/hpdsizes.h +8 -0
- data/vendor/tesseract-2.04/ccstruct/ipoints.h +479 -0
- data/vendor/tesseract-2.04/ccstruct/labls.cpp +188 -0
- data/vendor/tesseract-2.04/ccstruct/labls.h +38 -0
- data/vendor/tesseract-2.04/ccstruct/linlsq.cpp +249 -0
- data/vendor/tesseract-2.04/ccstruct/linlsq.h +102 -0
- data/vendor/tesseract-2.04/ccstruct/lmedsq.cpp +453 -0
- data/vendor/tesseract-2.04/ccstruct/lmedsq.h +84 -0
- data/vendor/tesseract-2.04/ccstruct/mod128.cpp +100 -0
- data/vendor/tesseract-2.04/ccstruct/mod128.h +85 -0
- data/vendor/tesseract-2.04/ccstruct/normalis.cpp +176 -0
- data/vendor/tesseract-2.04/ccstruct/normalis.h +108 -0
- data/vendor/tesseract-2.04/ccstruct/ocrblock.cpp +369 -0
- data/vendor/tesseract-2.04/ccstruct/ocrblock.h +235 -0
- data/vendor/tesseract-2.04/ccstruct/ocrrow.cpp +216 -0
- data/vendor/tesseract-2.04/ccstruct/ocrrow.h +133 -0
- data/vendor/tesseract-2.04/ccstruct/pageblk.cpp +879 -0
- data/vendor/tesseract-2.04/ccstruct/pageblk.h +318 -0
- data/vendor/tesseract-2.04/ccstruct/pageres.cpp +330 -0
- data/vendor/tesseract-2.04/ccstruct/pageres.h +313 -0
- data/vendor/tesseract-2.04/ccstruct/pdblock.cpp +361 -0
- data/vendor/tesseract-2.04/ccstruct/pdblock.h +181 -0
- data/vendor/tesseract-2.04/ccstruct/pdclass.h +54 -0
- data/vendor/tesseract-2.04/ccstruct/points.cpp +102 -0
- data/vendor/tesseract-2.04/ccstruct/points.h +299 -0
- data/vendor/tesseract-2.04/ccstruct/polyaprx.cpp +588 -0
- data/vendor/tesseract-2.04/ccstruct/polyaprx.h +51 -0
- data/vendor/tesseract-2.04/ccstruct/polyblk.cpp +398 -0
- data/vendor/tesseract-2.04/ccstruct/polyblk.h +122 -0
- data/vendor/tesseract-2.04/ccstruct/polyblob.cpp +357 -0
- data/vendor/tesseract-2.04/ccstruct/polyblob.h +102 -0
- data/vendor/tesseract-2.04/ccstruct/polyvert.cpp +23 -0
- data/vendor/tesseract-2.04/ccstruct/polyvert.h +58 -0
- data/vendor/tesseract-2.04/ccstruct/poutline.cpp +441 -0
- data/vendor/tesseract-2.04/ccstruct/poutline.h +125 -0
- data/vendor/tesseract-2.04/ccstruct/quadlsq.cpp +147 -0
- data/vendor/tesseract-2.04/ccstruct/quadlsq.h +67 -0
- data/vendor/tesseract-2.04/ccstruct/quadratc.cpp +21 -0
- data/vendor/tesseract-2.04/ccstruct/quadratc.h +63 -0
- data/vendor/tesseract-2.04/ccstruct/quspline.cpp +382 -0
- data/vendor/tesseract-2.04/ccstruct/quspline.h +113 -0
- data/vendor/tesseract-2.04/ccstruct/ratngs.cpp +372 -0
- data/vendor/tesseract-2.04/ccstruct/ratngs.h +198 -0
- data/vendor/tesseract-2.04/ccstruct/rect.cpp +229 -0
- data/vendor/tesseract-2.04/ccstruct/rect.h +320 -0
- data/vendor/tesseract-2.04/ccstruct/rejctmap.cpp +545 -0
- data/vendor/tesseract-2.04/ccstruct/rejctmap.h +284 -0
- data/vendor/tesseract-2.04/ccstruct/rwpoly.cpp +89 -0
- data/vendor/tesseract-2.04/ccstruct/rwpoly.h +45 -0
- data/vendor/tesseract-2.04/ccstruct/statistc.cpp +905 -0
- data/vendor/tesseract-2.04/ccstruct/statistc.h +135 -0
- data/vendor/tesseract-2.04/ccstruct/stepblob.cpp +296 -0
- data/vendor/tesseract-2.04/ccstruct/stepblob.h +88 -0
- data/vendor/tesseract-2.04/ccstruct/txtregn.cpp +230 -0
- data/vendor/tesseract-2.04/ccstruct/txtregn.h +155 -0
- data/vendor/tesseract-2.04/ccstruct/vecfuncs.cpp +63 -0
- data/vendor/tesseract-2.04/ccstruct/vecfuncs.h +91 -0
- data/vendor/tesseract-2.04/ccstruct/werd.cpp +967 -0
- data/vendor/tesseract-2.04/ccstruct/werd.h +277 -0
- data/vendor/tesseract-2.04/ccutil/Makefile.am +19 -0
- data/vendor/tesseract-2.04/ccutil/Makefile.in +626 -0
- data/vendor/tesseract-2.04/ccutil/basedir.cpp +118 -0
- data/vendor/tesseract-2.04/ccutil/basedir.h +32 -0
- data/vendor/tesseract-2.04/ccutil/bits16.cpp +30 -0
- data/vendor/tesseract-2.04/ccutil/bits16.h +61 -0
- data/vendor/tesseract-2.04/ccutil/boxread.cpp +105 -0
- data/vendor/tesseract-2.04/ccutil/boxread.h +44 -0
- data/vendor/tesseract-2.04/ccutil/clst.cpp +626 -0
- data/vendor/tesseract-2.04/ccutil/clst.h +1085 -0
- data/vendor/tesseract-2.04/ccutil/debugwin.cpp +500 -0
- data/vendor/tesseract-2.04/ccutil/debugwin.h +103 -0
- data/vendor/tesseract-2.04/ccutil/elst.cpp +593 -0
- data/vendor/tesseract-2.04/ccutil/elst.h +1125 -0
- data/vendor/tesseract-2.04/ccutil/elst2.cpp +606 -0
- data/vendor/tesseract-2.04/ccutil/elst2.h +1121 -0
- data/vendor/tesseract-2.04/ccutil/errcode.cpp +104 -0
- data/vendor/tesseract-2.04/ccutil/errcode.h +104 -0
- data/vendor/tesseract-2.04/ccutil/fileerr.h +34 -0
- data/vendor/tesseract-2.04/ccutil/globaloc.cpp +115 -0
- data/vendor/tesseract-2.04/ccutil/globaloc.h +40 -0
- data/vendor/tesseract-2.04/ccutil/hashfn.cpp +57 -0
- data/vendor/tesseract-2.04/ccutil/hashfn.h +30 -0
- data/vendor/tesseract-2.04/ccutil/host.h +180 -0
- data/vendor/tesseract-2.04/ccutil/hosthplb.h +1 -0
- data/vendor/tesseract-2.04/ccutil/lsterr.h +43 -0
- data/vendor/tesseract-2.04/ccutil/mainblk.cpp +126 -0
- data/vendor/tesseract-2.04/ccutil/mainblk.h +39 -0
- data/vendor/tesseract-2.04/ccutil/memblk.cpp +1106 -0
- data/vendor/tesseract-2.04/ccutil/memblk.h +189 -0
- data/vendor/tesseract-2.04/ccutil/memry.cpp +532 -0
- data/vendor/tesseract-2.04/ccutil/memry.h +192 -0
- data/vendor/tesseract-2.04/ccutil/memryerr.h +38 -0
- data/vendor/tesseract-2.04/ccutil/mfcpch.cpp +5 -0
- data/vendor/tesseract-2.04/ccutil/mfcpch.h +37 -0
- data/vendor/tesseract-2.04/ccutil/ndminx.h +31 -0
- data/vendor/tesseract-2.04/ccutil/notdll.h +28 -0
- data/vendor/tesseract-2.04/ccutil/nwmain.h +176 -0
- data/vendor/tesseract-2.04/ccutil/ocrclass.h +345 -0
- data/vendor/tesseract-2.04/ccutil/ocrshell.cpp +772 -0
- data/vendor/tesseract-2.04/ccutil/ocrshell.h +191 -0
- data/vendor/tesseract-2.04/ccutil/platform.h +18 -0
- data/vendor/tesseract-2.04/ccutil/scanutils.cpp +543 -0
- data/vendor/tesseract-2.04/ccutil/scanutils.h +55 -0
- data/vendor/tesseract-2.04/ccutil/secname.h +9 -0
- data/vendor/tesseract-2.04/ccutil/serialis.cpp +117 -0
- data/vendor/tesseract-2.04/ccutil/serialis.h +93 -0
- data/vendor/tesseract-2.04/ccutil/stderr.h +26 -0
- data/vendor/tesseract-2.04/ccutil/strngs.cpp +495 -0
- data/vendor/tesseract-2.04/ccutil/strngs.h +138 -0
- data/vendor/tesseract-2.04/ccutil/tessclas.h +135 -0
- data/vendor/tesseract-2.04/ccutil/tessopt.cpp +61 -0
- data/vendor/tesseract-2.04/ccutil/tessopt.h +30 -0
- data/vendor/tesseract-2.04/ccutil/tprintf.cpp +122 -0
- data/vendor/tesseract-2.04/ccutil/tprintf.h +35 -0
- data/vendor/tesseract-2.04/ccutil/unichar.cpp +144 -0
- data/vendor/tesseract-2.04/ccutil/unichar.h +84 -0
- data/vendor/tesseract-2.04/ccutil/unicharmap.cpp +172 -0
- data/vendor/tesseract-2.04/ccutil/unicharmap.h +82 -0
- data/vendor/tesseract-2.04/ccutil/unicharset.cpp +307 -0
- data/vendor/tesseract-2.04/ccutil/unicharset.h +267 -0
- data/vendor/tesseract-2.04/ccutil/varable.cpp +672 -0
- data/vendor/tesseract-2.04/ccutil/varable.h +419 -0
- data/vendor/tesseract-2.04/classify/Makefile.am +24 -0
- data/vendor/tesseract-2.04/classify/Makefile.in +647 -0
- data/vendor/tesseract-2.04/classify/adaptive.cpp +535 -0
- data/vendor/tesseract-2.04/classify/adaptive.h +199 -0
- data/vendor/tesseract-2.04/classify/adaptmatch.cpp +2958 -0
- data/vendor/tesseract-2.04/classify/adaptmatch.h +86 -0
- data/vendor/tesseract-2.04/classify/baseline.cpp +58 -0
- data/vendor/tesseract-2.04/classify/baseline.h +91 -0
- data/vendor/tesseract-2.04/classify/blobclass.cpp +123 -0
- data/vendor/tesseract-2.04/classify/blobclass.h +49 -0
- data/vendor/tesseract-2.04/classify/chartoname.cpp +74 -0
- data/vendor/tesseract-2.04/classify/chartoname.h +21 -0
- data/vendor/tesseract-2.04/classify/cluster.cpp +2834 -0
- data/vendor/tesseract-2.04/classify/cluster.h +158 -0
- data/vendor/tesseract-2.04/classify/clusttool.cpp +507 -0
- data/vendor/tesseract-2.04/classify/clusttool.h +70 -0
- data/vendor/tesseract-2.04/classify/cutoffs.cpp +73 -0
- data/vendor/tesseract-2.04/classify/cutoffs.h +49 -0
- data/vendor/tesseract-2.04/classify/extern.h +32 -0
- data/vendor/tesseract-2.04/classify/extract.cpp +100 -0
- data/vendor/tesseract-2.04/classify/extract.h +36 -0
- data/vendor/tesseract-2.04/classify/featdefs.cpp +244 -0
- data/vendor/tesseract-2.04/classify/featdefs.h +71 -0
- data/vendor/tesseract-2.04/classify/flexfx.cpp +87 -0
- data/vendor/tesseract-2.04/classify/flexfx.h +34 -0
- data/vendor/tesseract-2.04/classify/float2int.cpp +126 -0
- data/vendor/tesseract-2.04/classify/float2int.h +65 -0
- data/vendor/tesseract-2.04/classify/fpoint.cpp +73 -0
- data/vendor/tesseract-2.04/classify/fpoint.h +63 -0
- data/vendor/tesseract-2.04/classify/fxdefs.cpp +74 -0
- data/vendor/tesseract-2.04/classify/fxdefs.h +93 -0
- data/vendor/tesseract-2.04/classify/fxid.h +69 -0
- data/vendor/tesseract-2.04/classify/hideedge.cpp +35 -0
- data/vendor/tesseract-2.04/classify/hideedge.h +76 -0
- data/vendor/tesseract-2.04/classify/intfx.cpp +608 -0
- data/vendor/tesseract-2.04/classify/intfx.h +63 -0
- data/vendor/tesseract-2.04/classify/intmatcher.cpp +1524 -0
- data/vendor/tesseract-2.04/classify/intmatcher.h +199 -0
- data/vendor/tesseract-2.04/classify/intproto.cpp +1823 -0
- data/vendor/tesseract-2.04/classify/intproto.h +320 -0
- data/vendor/tesseract-2.04/classify/kdtree.cpp +884 -0
- data/vendor/tesseract-2.04/classify/kdtree.h +118 -0
- data/vendor/tesseract-2.04/classify/mf.cpp +106 -0
- data/vendor/tesseract-2.04/classify/mf.h +43 -0
- data/vendor/tesseract-2.04/classify/mfdefs.cpp +58 -0
- data/vendor/tesseract-2.04/classify/mfdefs.h +60 -0
- data/vendor/tesseract-2.04/classify/mfoutline.cpp +1087 -0
- data/vendor/tesseract-2.04/classify/mfoutline.h +277 -0
- data/vendor/tesseract-2.04/classify/mfx.cpp +436 -0
- data/vendor/tesseract-2.04/classify/mfx.h +52 -0
- data/vendor/tesseract-2.04/classify/normfeat.cpp +132 -0
- data/vendor/tesseract-2.04/classify/normfeat.h +63 -0
- data/vendor/tesseract-2.04/classify/normmatch.cpp +305 -0
- data/vendor/tesseract-2.04/classify/normmatch.h +38 -0
- data/vendor/tesseract-2.04/classify/ocrfeatures.cpp +310 -0
- data/vendor/tesseract-2.04/classify/ocrfeatures.h +148 -0
- data/vendor/tesseract-2.04/classify/outfeat.cpp +262 -0
- data/vendor/tesseract-2.04/classify/outfeat.h +76 -0
- data/vendor/tesseract-2.04/classify/picofeat.cpp +297 -0
- data/vendor/tesseract-2.04/classify/picofeat.h +65 -0
- data/vendor/tesseract-2.04/classify/protos.cpp +472 -0
- data/vendor/tesseract-2.04/classify/protos.h +258 -0
- data/vendor/tesseract-2.04/classify/sigmenu.cpp +225 -0
- data/vendor/tesseract-2.04/classify/sigmenu.h +39 -0
- data/vendor/tesseract-2.04/classify/speckle.cpp +127 -0
- data/vendor/tesseract-2.04/classify/speckle.h +69 -0
- data/vendor/tesseract-2.04/classify/xform2d.cpp +120 -0
- data/vendor/tesseract-2.04/classify/xform2d.h +60 -0
- data/vendor/tesseract-2.04/config/config.guess +1466 -0
- data/vendor/tesseract-2.04/config/config.h.in +188 -0
- data/vendor/tesseract-2.04/config/config.sub +1579 -0
- data/vendor/tesseract-2.04/config/depcomp +530 -0
- data/vendor/tesseract-2.04/config/install-sh +269 -0
- data/vendor/tesseract-2.04/config/missing +198 -0
- data/vendor/tesseract-2.04/config/mkinstalldirs +40 -0
- data/vendor/tesseract-2.04/config/stamp-h.in +0 -0
- data/vendor/tesseract-2.04/configure +10424 -0
- data/vendor/tesseract-2.04/cutil/Makefile.am +14 -0
- data/vendor/tesseract-2.04/cutil/Makefile.in +612 -0
- data/vendor/tesseract-2.04/cutil/bitvec.cpp +115 -0
- data/vendor/tesseract-2.04/cutil/bitvec.h +100 -0
- data/vendor/tesseract-2.04/cutil/callcpp.h +190 -0
- data/vendor/tesseract-2.04/cutil/const.h +108 -0
- data/vendor/tesseract-2.04/cutil/cutil.cpp +92 -0
- data/vendor/tesseract-2.04/cutil/cutil.h +159 -0
- data/vendor/tesseract-2.04/cutil/danerror.cpp +144 -0
- data/vendor/tesseract-2.04/cutil/danerror.h +41 -0
- data/vendor/tesseract-2.04/cutil/debug.cpp +97 -0
- data/vendor/tesseract-2.04/cutil/debug.h +348 -0
- data/vendor/tesseract-2.04/cutil/efio.cpp +62 -0
- data/vendor/tesseract-2.04/cutil/efio.h +32 -0
- data/vendor/tesseract-2.04/cutil/emalloc.cpp +91 -0
- data/vendor/tesseract-2.04/cutil/emalloc.h +44 -0
- data/vendor/tesseract-2.04/cutil/freelist.cpp +75 -0
- data/vendor/tesseract-2.04/cutil/freelist.h +45 -0
- data/vendor/tesseract-2.04/cutil/funcdefs.h +35 -0
- data/vendor/tesseract-2.04/cutil/general.h +33 -0
- data/vendor/tesseract-2.04/cutil/globals.cpp +69 -0
- data/vendor/tesseract-2.04/cutil/globals.h +70 -0
- data/vendor/tesseract-2.04/cutil/listio.cpp +68 -0
- data/vendor/tesseract-2.04/cutil/listio.h +43 -0
- data/vendor/tesseract-2.04/cutil/minmax.h +40 -0
- data/vendor/tesseract-2.04/cutil/oldheap.cpp +337 -0
- data/vendor/tesseract-2.04/cutil/oldheap.h +126 -0
- data/vendor/tesseract-2.04/cutil/oldlist.cpp +393 -0
- data/vendor/tesseract-2.04/cutil/oldlist.h +350 -0
- data/vendor/tesseract-2.04/cutil/structures.cpp +66 -0
- data/vendor/tesseract-2.04/cutil/structures.h +112 -0
- data/vendor/tesseract-2.04/cutil/tessarray.cpp +115 -0
- data/vendor/tesseract-2.04/cutil/tessarray.h +166 -0
- data/vendor/tesseract-2.04/cutil/tordvars.cpp +95 -0
- data/vendor/tesseract-2.04/cutil/tordvars.h +61 -0
- data/vendor/tesseract-2.04/cutil/variables.cpp +317 -0
- data/vendor/tesseract-2.04/cutil/variables.h +170 -0
- data/vendor/tesseract-2.04/dict/Makefile.am +13 -0
- data/vendor/tesseract-2.04/dict/Makefile.in +609 -0
- data/vendor/tesseract-2.04/dict/choicearr.h +96 -0
- data/vendor/tesseract-2.04/dict/choices.cpp +210 -0
- data/vendor/tesseract-2.04/dict/choices.h +241 -0
- data/vendor/tesseract-2.04/dict/context.cpp +270 -0
- data/vendor/tesseract-2.04/dict/context.h +82 -0
- data/vendor/tesseract-2.04/dict/dawg.cpp +363 -0
- data/vendor/tesseract-2.04/dict/dawg.h +394 -0
- data/vendor/tesseract-2.04/dict/hyphen.cpp +84 -0
- data/vendor/tesseract-2.04/dict/hyphen.h +125 -0
- data/vendor/tesseract-2.04/dict/lookdawg.cpp +228 -0
- data/vendor/tesseract-2.04/dict/lookdawg.h +76 -0
- data/vendor/tesseract-2.04/dict/makedawg.cpp +449 -0
- data/vendor/tesseract-2.04/dict/makedawg.h +83 -0
- data/vendor/tesseract-2.04/dict/matchdefs.h +145 -0
- data/vendor/tesseract-2.04/dict/permdawg.cpp +415 -0
- data/vendor/tesseract-2.04/dict/permdawg.h +98 -0
- data/vendor/tesseract-2.04/dict/permngram.cpp +358 -0
- data/vendor/tesseract-2.04/dict/permngram.h +33 -0
- data/vendor/tesseract-2.04/dict/permnum.cpp +522 -0
- data/vendor/tesseract-2.04/dict/permnum.h +83 -0
- data/vendor/tesseract-2.04/dict/permute.cpp +1704 -0
- data/vendor/tesseract-2.04/dict/permute.h +93 -0
- data/vendor/tesseract-2.04/dict/reduce.cpp +424 -0
- data/vendor/tesseract-2.04/dict/reduce.h +112 -0
- data/vendor/tesseract-2.04/dict/states.cpp +382 -0
- data/vendor/tesseract-2.04/dict/states.h +111 -0
- data/vendor/tesseract-2.04/dict/stopper.cpp +1458 -0
- data/vendor/tesseract-2.04/dict/stopper.h +103 -0
- data/vendor/tesseract-2.04/dict/trie.cpp +683 -0
- data/vendor/tesseract-2.04/dict/trie.h +190 -0
- data/vendor/tesseract-2.04/dlltest/Makefile.am +2 -0
- data/vendor/tesseract-2.04/dlltest/Makefile.in +388 -0
- data/vendor/tesseract-2.04/dlltest/dlltest.cpp +163 -0
- data/vendor/tesseract-2.04/dlltest/dlltest.dsp +186 -0
- data/vendor/tesseract-2.04/dlltest/dlltest.vcproj +637 -0
- data/vendor/tesseract-2.04/eurotext.tif +0 -0
- data/vendor/tesseract-2.04/image/Makefile.am +10 -0
- data/vendor/tesseract-2.04/image/Makefile.in +596 -0
- data/vendor/tesseract-2.04/image/bitstrm.cpp +157 -0
- data/vendor/tesseract-2.04/image/bitstrm.h +73 -0
- data/vendor/tesseract-2.04/image/img.h +336 -0
- data/vendor/tesseract-2.04/image/imgbmp.cpp +223 -0
- data/vendor/tesseract-2.04/image/imgbmp.h +50 -0
- data/vendor/tesseract-2.04/image/imgerrs.h +35 -0
- data/vendor/tesseract-2.04/image/imgio.cpp +321 -0
- data/vendor/tesseract-2.04/image/imgio.h +22 -0
- data/vendor/tesseract-2.04/image/imgs.cpp +1764 -0
- data/vendor/tesseract-2.04/image/imgs.h +102 -0
- data/vendor/tesseract-2.04/image/imgtiff.cpp +723 -0
- data/vendor/tesseract-2.04/image/imgtiff.h +89 -0
- data/vendor/tesseract-2.04/image/imgunpk.h +1377 -0
- data/vendor/tesseract-2.04/image/svshowim.cpp +40 -0
- data/vendor/tesseract-2.04/image/svshowim.h +25 -0
- data/vendor/tesseract-2.04/java/Makefile.am +4 -0
- data/vendor/tesseract-2.04/java/Makefile.in +473 -0
- data/vendor/tesseract-2.04/java/com/Makefile.am +1 -0
- data/vendor/tesseract-2.04/java/com/Makefile.in +470 -0
- data/vendor/tesseract-2.04/java/com/google/Makefile.am +1 -0
- data/vendor/tesseract-2.04/java/com/google/Makefile.in +470 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/Makefile.am +4 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/Makefile.in +473 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ScrollView.java +421 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/Makefile.am +5 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/Makefile.in +474 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/SVEvent.java +87 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/SVEventHandler.java +296 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/events/SVEventType.java +31 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/Makefile.am +7 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/Makefile.in +476 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVAbstractMenuItem.java +58 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVCheckboxMenuItem.java +60 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVEmptyMenuItem.java +48 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVImageHandler.java +228 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVMenuBar.java +130 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVMenuItem.java +61 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVPopupMenu.java +142 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVSubMenuItem.java +41 -0
- data/vendor/tesseract-2.04/java/com/google/scrollview/ui/SVWindow.java +643 -0
- data/vendor/tesseract-2.04/java/makefile +55 -0
- data/vendor/tesseract-2.04/pageseg/Makefile.am +13 -0
- data/vendor/tesseract-2.04/pageseg/Makefile.in +596 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg.cpp +363 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg.h +90 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg_interface.cpp +82 -0
- data/vendor/tesseract-2.04/pageseg/leptonica_pageseg_interface.h +30 -0
- data/vendor/tesseract-2.04/pageseg/pageseg.cpp +170 -0
- data/vendor/tesseract-2.04/pageseg/pageseg.h +29 -0
- data/vendor/tesseract-2.04/phototest.tif +0 -0
- data/vendor/tesseract-2.04/tessdata/Makefile.am +31 -0
- data/vendor/tesseract-2.04/tessdata/Makefile.in +529 -0
- data/vendor/tesseract-2.04/tessdata/configs/Makefile.am +3 -0
- data/vendor/tesseract-2.04/tessdata/configs/Makefile.in +344 -0
- data/vendor/tesseract-2.04/tessdata/configs/api_config +1 -0
- data/vendor/tesseract-2.04/tessdata/configs/box.train +19 -0
- data/vendor/tesseract-2.04/tessdata/configs/box.train.stderr +18 -0
- data/vendor/tesseract-2.04/tessdata/configs/inter +4 -0
- data/vendor/tesseract-2.04/tessdata/configs/kannada +4 -0
- data/vendor/tesseract-2.04/tessdata/configs/makebox +1 -0
- data/vendor/tesseract-2.04/tessdata/configs/unlv +3 -0
- data/vendor/tesseract-2.04/tessdata/confsets +3 -0
- data/vendor/tesseract-2.04/tessdata/eng.DangAmbigs +39 -0
- data/vendor/tesseract-2.04/tessdata/eng.freq-dawg +0 -0
- data/vendor/tesseract-2.04/tessdata/eng.inttemp +0 -0
- data/vendor/tesseract-2.04/tessdata/eng.normproto +1247 -0
- data/vendor/tesseract-2.04/tessdata/eng.pffmtable +111 -0
- data/vendor/tesseract-2.04/tessdata/eng.unicharset +113 -0
- data/vendor/tesseract-2.04/tessdata/eng.user-words +921 -0
- data/vendor/tesseract-2.04/tessdata/eng.word-dawg +0 -0
- data/vendor/tesseract-2.04/tessdata/makedummies +8 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/Makefile.am +3 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/Makefile.in +344 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/batch +2 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/batch.nochop +2 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/matdemo +7 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/msdemo +13 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/nobatch +2 -0
- data/vendor/tesseract-2.04/tessdata/tessconfigs/segdemo +9 -0
- data/vendor/tesseract-2.04/tessdll.cpp +351 -0
- data/vendor/tesseract-2.04/tessdll.dsp +2050 -0
- data/vendor/tesseract-2.04/tessdll.h +143 -0
- data/vendor/tesseract-2.04/tessdll.vcproj +5495 -0
- data/vendor/tesseract-2.04/tesseract.dsp +2124 -0
- data/vendor/tesseract-2.04/tesseract.dsw +116 -0
- data/vendor/tesseract-2.04/tesseract.sln +59 -0
- data/vendor/tesseract-2.04/tesseract.spec +188 -0
- data/vendor/tesseract-2.04/tesseract.vcproj +5859 -0
- data/vendor/tesseract-2.04/testing/Makefile.am +2 -0
- data/vendor/tesseract-2.04/testing/Makefile.in +312 -0
- data/vendor/tesseract-2.04/testing/README +43 -0
- data/vendor/tesseract-2.04/testing/counttestset.sh +61 -0
- data/vendor/tesseract-2.04/testing/reorgdata.sh +44 -0
- data/vendor/tesseract-2.04/testing/reports/1995.bus.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/1995.doe3.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/1995.mag.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/1995.news.3B.sum +1 -0
- data/vendor/tesseract-2.04/testing/reports/2.03.summary +9 -0
- data/vendor/tesseract-2.04/testing/reports/2.04.summary +9 -0
- data/vendor/tesseract-2.04/testing/runalltests.sh +110 -0
- data/vendor/tesseract-2.04/testing/runtestset.sh +61 -0
- data/vendor/tesseract-2.04/textord/Makefile.am +20 -0
- data/vendor/tesseract-2.04/textord/Makefile.in +624 -0
- data/vendor/tesseract-2.04/textord/blkocc.cpp +809 -0
- data/vendor/tesseract-2.04/textord/blkocc.h +327 -0
- data/vendor/tesseract-2.04/textord/blobcmpl.h +31 -0
- data/vendor/tesseract-2.04/textord/drawedg.cpp +77 -0
- data/vendor/tesseract-2.04/textord/drawedg.h +34 -0
- data/vendor/tesseract-2.04/textord/drawtord.cpp +469 -0
- data/vendor/tesseract-2.04/textord/drawtord.h +107 -0
- data/vendor/tesseract-2.04/textord/edgblob.cpp +412 -0
- data/vendor/tesseract-2.04/textord/edgblob.h +100 -0
- data/vendor/tesseract-2.04/textord/edgloop.cpp +211 -0
- data/vendor/tesseract-2.04/textord/edgloop.h +66 -0
- data/vendor/tesseract-2.04/textord/fpchop.cpp +1641 -0
- data/vendor/tesseract-2.04/textord/fpchop.h +238 -0
- data/vendor/tesseract-2.04/textord/gap_map.cpp +166 -0
- data/vendor/tesseract-2.04/textord/gap_map.h +40 -0
- data/vendor/tesseract-2.04/textord/makerow.cpp +2628 -0
- data/vendor/tesseract-2.04/textord/makerow.h +295 -0
- data/vendor/tesseract-2.04/textord/oldbasel.cpp +1761 -0
- data/vendor/tesseract-2.04/textord/oldbasel.h +195 -0
- data/vendor/tesseract-2.04/textord/pithsync.cpp +696 -0
- data/vendor/tesseract-2.04/textord/pithsync.h +134 -0
- data/vendor/tesseract-2.04/textord/pitsync1.cpp +425 -0
- data/vendor/tesseract-2.04/textord/pitsync1.h +135 -0
- data/vendor/tesseract-2.04/textord/scanedg.cpp +452 -0
- data/vendor/tesseract-2.04/textord/scanedg.h +74 -0
- data/vendor/tesseract-2.04/textord/sortflts.cpp +80 -0
- data/vendor/tesseract-2.04/textord/sortflts.h +64 -0
- data/vendor/tesseract-2.04/textord/tessout.h +76 -0
- data/vendor/tesseract-2.04/textord/topitch.cpp +2019 -0
- data/vendor/tesseract-2.04/textord/topitch.h +195 -0
- data/vendor/tesseract-2.04/textord/tordmain.cpp +907 -0
- data/vendor/tesseract-2.04/textord/tordmain.h +132 -0
- data/vendor/tesseract-2.04/textord/tospace.cpp +1939 -0
- data/vendor/tesseract-2.04/textord/tospace.h +193 -0
- data/vendor/tesseract-2.04/textord/tovars.cpp +87 -0
- data/vendor/tesseract-2.04/textord/tovars.h +94 -0
- data/vendor/tesseract-2.04/textord/underlin.cpp +312 -0
- data/vendor/tesseract-2.04/textord/underlin.h +53 -0
- data/vendor/tesseract-2.04/textord/wordseg.cpp +620 -0
- data/vendor/tesseract-2.04/textord/wordseg.h +70 -0
- data/vendor/tesseract-2.04/training/Makefile.am +54 -0
- data/vendor/tesseract-2.04/training/Makefile.in +720 -0
- data/vendor/tesseract-2.04/training/cnTraining.cpp +855 -0
- data/vendor/tesseract-2.04/training/cntraining.dsp +243 -0
- data/vendor/tesseract-2.04/training/cntraining.vcproj +950 -0
- data/vendor/tesseract-2.04/training/mergenf.cpp +451 -0
- data/vendor/tesseract-2.04/training/mergenf.h +106 -0
- data/vendor/tesseract-2.04/training/mfTraining.cpp +1341 -0
- data/vendor/tesseract-2.04/training/mftraining.dsp +285 -0
- data/vendor/tesseract-2.04/training/mftraining.vcproj +1055 -0
- data/vendor/tesseract-2.04/training/name2char.cpp +166 -0
- data/vendor/tesseract-2.04/training/name2char.h +38 -0
- data/vendor/tesseract-2.04/training/training.cpp +190 -0
- data/vendor/tesseract-2.04/training/training.h +130 -0
- data/vendor/tesseract-2.04/training/unicharset_extractor.cpp +140 -0
- data/vendor/tesseract-2.04/training/unicharset_extractor.dsp +335 -0
- data/vendor/tesseract-2.04/training/unicharset_extractor.vcproj +769 -0
- data/vendor/tesseract-2.04/training/wordlist2dawg.cpp +69 -0
- data/vendor/tesseract-2.04/training/wordlist2dawg.dsp +319 -0
- data/vendor/tesseract-2.04/training/wordlist2dawg.vcproj +1113 -0
- data/vendor/tesseract-2.04/viewer/Makefile.am +9 -0
- data/vendor/tesseract-2.04/viewer/Makefile.in +591 -0
- data/vendor/tesseract-2.04/viewer/scrollview.cpp +825 -0
- data/vendor/tesseract-2.04/viewer/scrollview.h +414 -0
- data/vendor/tesseract-2.04/viewer/svmnode.cpp +140 -0
- data/vendor/tesseract-2.04/viewer/svmnode.h +94 -0
- data/vendor/tesseract-2.04/viewer/svpaint.cpp +220 -0
- data/vendor/tesseract-2.04/viewer/svutil.cpp +347 -0
- data/vendor/tesseract-2.04/viewer/svutil.h +138 -0
- data/vendor/tesseract-2.04/wordrec/Makefile.am +23 -0
- data/vendor/tesseract-2.04/wordrec/Makefile.in +641 -0
- data/vendor/tesseract-2.04/wordrec/associate.cpp +62 -0
- data/vendor/tesseract-2.04/wordrec/associate.h +93 -0
- data/vendor/tesseract-2.04/wordrec/badwords.cpp +106 -0
- data/vendor/tesseract-2.04/wordrec/badwords.h +51 -0
- data/vendor/tesseract-2.04/wordrec/bestfirst.cpp +526 -0
- data/vendor/tesseract-2.04/wordrec/bestfirst.h +203 -0
- data/vendor/tesseract-2.04/wordrec/charsample.h +208 -0
- data/vendor/tesseract-2.04/wordrec/chop.cpp +458 -0
- data/vendor/tesseract-2.04/wordrec/chop.h +153 -0
- data/vendor/tesseract-2.04/wordrec/chopper.cpp +750 -0
- data/vendor/tesseract-2.04/wordrec/chopper.h +104 -0
- data/vendor/tesseract-2.04/wordrec/closed.cpp +136 -0
- data/vendor/tesseract-2.04/wordrec/closed.h +65 -0
- data/vendor/tesseract-2.04/wordrec/djmenus.cpp +118 -0
- data/vendor/tesseract-2.04/wordrec/djmenus.h +33 -0
- data/vendor/tesseract-2.04/wordrec/drawfx.cpp +92 -0
- data/vendor/tesseract-2.04/wordrec/drawfx.h +33 -0
- data/vendor/tesseract-2.04/wordrec/findseam.cpp +566 -0
- data/vendor/tesseract-2.04/wordrec/findseam.h +69 -0
- data/vendor/tesseract-2.04/wordrec/gradechop.cpp +226 -0
- data/vendor/tesseract-2.04/wordrec/gradechop.h +91 -0
- data/vendor/tesseract-2.04/wordrec/heuristic.cpp +194 -0
- data/vendor/tesseract-2.04/wordrec/heuristic.h +120 -0
- data/vendor/tesseract-2.04/wordrec/makechop.cpp +281 -0
- data/vendor/tesseract-2.04/wordrec/makechop.h +69 -0
- data/vendor/tesseract-2.04/wordrec/matchtab.cpp +191 -0
- data/vendor/tesseract-2.04/wordrec/matchtab.h +45 -0
- data/vendor/tesseract-2.04/wordrec/matrix.cpp +118 -0
- data/vendor/tesseract-2.04/wordrec/matrix.h +104 -0
- data/vendor/tesseract-2.04/wordrec/measure.h +135 -0
- data/vendor/tesseract-2.04/wordrec/metrics.cpp +363 -0
- data/vendor/tesseract-2.04/wordrec/metrics.h +130 -0
- data/vendor/tesseract-2.04/wordrec/mfvars.cpp +51 -0
- data/vendor/tesseract-2.04/wordrec/mfvars.h +27 -0
- data/vendor/tesseract-2.04/wordrec/msmenus.cpp +110 -0
- data/vendor/tesseract-2.04/wordrec/msmenus.h +45 -0
- data/vendor/tesseract-2.04/wordrec/olutil.cpp +153 -0
- data/vendor/tesseract-2.04/wordrec/olutil.h +128 -0
- data/vendor/tesseract-2.04/wordrec/outlines.cpp +172 -0
- data/vendor/tesseract-2.04/wordrec/outlines.h +148 -0
- data/vendor/tesseract-2.04/wordrec/pieces.cpp +410 -0
- data/vendor/tesseract-2.04/wordrec/pieces.h +154 -0
- data/vendor/tesseract-2.04/wordrec/plotedges.cpp +134 -0
- data/vendor/tesseract-2.04/wordrec/plotedges.h +71 -0
- data/vendor/tesseract-2.04/wordrec/plotseg.cpp +116 -0
- data/vendor/tesseract-2.04/wordrec/plotseg.h +73 -0
- data/vendor/tesseract-2.04/wordrec/render.cpp +152 -0
- data/vendor/tesseract-2.04/wordrec/render.h +58 -0
- data/vendor/tesseract-2.04/wordrec/seam.cpp +482 -0
- data/vendor/tesseract-2.04/wordrec/seam.h +136 -0
- data/vendor/tesseract-2.04/wordrec/split.cpp +182 -0
- data/vendor/tesseract-2.04/wordrec/split.h +115 -0
- data/vendor/tesseract-2.04/wordrec/tally.cpp +68 -0
- data/vendor/tesseract-2.04/wordrec/tally.h +94 -0
- data/vendor/tesseract-2.04/wordrec/tessinit.cpp +108 -0
- data/vendor/tesseract-2.04/wordrec/tessinit.h +46 -0
- data/vendor/tesseract-2.04/wordrec/tface.cpp +272 -0
- data/vendor/tesseract-2.04/wordrec/tface.h +35 -0
- data/vendor/tesseract-2.04/wordrec/wordclass.cpp +284 -0
- data/vendor/tesseract-2.04/wordrec/wordclass.h +64 -0
- metadata +708 -0
|
@@ -0,0 +1,1085 @@
|
|
|
1
|
+
/**********************************************************************
|
|
2
|
+
* File: clst.h (Formerly clist.h)
|
|
3
|
+
* Description: CONS cell list module include file.
|
|
4
|
+
* Author: Phil Cheatle
|
|
5
|
+
* Created: Mon Jan 28 08:33:13 GMT 1991
|
|
6
|
+
*
|
|
7
|
+
* (C) Copyright 1991, Hewlett-Packard Ltd.
|
|
8
|
+
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
+
** you may not use this file except in compliance with the License.
|
|
10
|
+
** You may obtain a copy of the License at
|
|
11
|
+
** http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
** Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
** See the License for the specific language governing permissions and
|
|
16
|
+
** limitations under the License.
|
|
17
|
+
*
|
|
18
|
+
**********************************************************************/
|
|
19
|
+
|
|
20
|
+
#ifndef CLST_H
|
|
21
|
+
#define CLST_H
|
|
22
|
+
|
|
23
|
+
#include <stdio.h>
|
|
24
|
+
#include "host.h"
|
|
25
|
+
#include "serialis.h"
|
|
26
|
+
#include "lsterr.h"
|
|
27
|
+
|
|
28
|
+
class CLIST_ITERATOR;
|
|
29
|
+
|
|
30
|
+
/**********************************************************************
|
|
31
|
+
* CLASS - CLIST_LINK
|
|
32
|
+
*
|
|
33
|
+
* Generic link class for singly linked CONS cell lists
|
|
34
|
+
*
|
|
35
|
+
* Note: No destructor - elements are assumed to be destroyed EITHER after
|
|
36
|
+
* they have been extracted from a list OR by the CLIST destructor which
|
|
37
|
+
* walks the list.
|
|
38
|
+
**********************************************************************/
|
|
39
|
+
|
|
40
|
+
class DLLSYM CLIST_LINK
|
|
41
|
+
{
|
|
42
|
+
friend class CLIST_ITERATOR;
|
|
43
|
+
friend class CLIST;
|
|
44
|
+
|
|
45
|
+
CLIST_LINK *next;
|
|
46
|
+
void *data;
|
|
47
|
+
|
|
48
|
+
public:
|
|
49
|
+
CLIST_LINK() { //constructor
|
|
50
|
+
data = next = NULL;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
CLIST_LINK( //copy constructor
|
|
54
|
+
const CLIST_LINK &) { //dont copy link
|
|
55
|
+
data = next = NULL;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
void operator= ( //dont copy links
|
|
59
|
+
const CLIST_LINK &) {
|
|
60
|
+
data = next = NULL;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
NEWDELETE2 (CLIST_LINK)
|
|
64
|
+
/* NOTE that none of the serialise member functions are required for
|
|
65
|
+
CLIST_LINKS as they are never serialised. */
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
/**********************************************************************
|
|
69
|
+
* CLASS - CLIST
|
|
70
|
+
*
|
|
71
|
+
* Generic list class for singly linked CONS cell lists
|
|
72
|
+
**********************************************************************/
|
|
73
|
+
|
|
74
|
+
class DLLSYM CLIST
|
|
75
|
+
{
|
|
76
|
+
friend class CLIST_ITERATOR;
|
|
77
|
+
|
|
78
|
+
CLIST_LINK *last; //End of list
|
|
79
|
+
//(Points to head)
|
|
80
|
+
CLIST_LINK *First() { // return first
|
|
81
|
+
return last != NULL ? last->next : NULL;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
public:
|
|
85
|
+
CLIST() { //constructor
|
|
86
|
+
last = NULL;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
~CLIST () { //destructor
|
|
90
|
+
shallow_clear();
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
void internal_deep_clear ( //destroy all links
|
|
94
|
+
void (*zapper) (void *)); //ptr to zapper functn
|
|
95
|
+
|
|
96
|
+
void shallow_clear(); //clear list but dont
|
|
97
|
+
//delete data elements
|
|
98
|
+
|
|
99
|
+
BOOL8 empty() { //is list empty?
|
|
100
|
+
return !last;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
BOOL8 singleton() {
|
|
104
|
+
return last != NULL ? (last == last->next) : FALSE;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
void shallow_copy( //dangerous!!
|
|
108
|
+
CLIST *from_list) { //beware destructors!!
|
|
109
|
+
last = from_list->last;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
//ptr to copier functn
|
|
113
|
+
void internal_deep_copy (void *(*copier) (void *),
|
|
114
|
+
const CLIST * list); //list being copied
|
|
115
|
+
|
|
116
|
+
void assign_to_sublist( //to this list
|
|
117
|
+
CLIST_ITERATOR *start_it, //from list start
|
|
118
|
+
CLIST_ITERATOR *end_it); //from list end
|
|
119
|
+
|
|
120
|
+
inT32 length(); //# elements in list
|
|
121
|
+
|
|
122
|
+
void sort ( //sort elements
|
|
123
|
+
int comparator ( //comparison routine
|
|
124
|
+
const void *, const void *));
|
|
125
|
+
|
|
126
|
+
// Assuming list has been sorted already, insert new_data to
|
|
127
|
+
// keep the list sorted according to the same comparison function.
|
|
128
|
+
// Comparision function is the same as used by sort, i.e. uses double
|
|
129
|
+
// indirection. Time is O(1) to add to beginning or end.
|
|
130
|
+
// Time is linear to add pre-sorted items to an empty list.
|
|
131
|
+
// If unique, then don't add duplicate entries.
|
|
132
|
+
void add_sorted(int comparator(const void*, const void*),
|
|
133
|
+
bool unique, void* new_data);
|
|
134
|
+
|
|
135
|
+
void internal_dump ( //serialise each elem
|
|
136
|
+
FILE * f, //to this file
|
|
137
|
+
void element_serialiser ( //using this function
|
|
138
|
+
FILE *, void *));
|
|
139
|
+
|
|
140
|
+
void internal_de_dump ( //de_serial each elem
|
|
141
|
+
FILE * f, //from this file
|
|
142
|
+
void *element_de_serialiser (//using this function
|
|
143
|
+
FILE *));
|
|
144
|
+
|
|
145
|
+
void prep_serialise(); //change last to count
|
|
146
|
+
|
|
147
|
+
/* Note that dump() and de_dump() are not required as calls to dump/de_dump a
|
|
148
|
+
list class should be handled by a class derived from this.
|
|
149
|
+
|
|
150
|
+
make_serialise is not required for a similar reason.
|
|
151
|
+
*/
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
/***********************************************************************
|
|
155
|
+
* CLASS - CLIST_ITERATOR
|
|
156
|
+
*
|
|
157
|
+
* Generic iterator class for singly linked lists with embedded links
|
|
158
|
+
**********************************************************************/
|
|
159
|
+
|
|
160
|
+
class DLLSYM CLIST_ITERATOR
|
|
161
|
+
{
|
|
162
|
+
friend void CLIST::assign_to_sublist(CLIST_ITERATOR *, CLIST_ITERATOR *);
|
|
163
|
+
|
|
164
|
+
CLIST *list; //List being iterated
|
|
165
|
+
CLIST_LINK *prev; //prev element
|
|
166
|
+
CLIST_LINK *current; //current element
|
|
167
|
+
CLIST_LINK *next; //next element
|
|
168
|
+
BOOL8 ex_current_was_last; //current extracted
|
|
169
|
+
//was end of list
|
|
170
|
+
BOOL8 ex_current_was_cycle_pt; //current extracted
|
|
171
|
+
//was cycle point
|
|
172
|
+
CLIST_LINK *cycle_pt; //point we are cycling
|
|
173
|
+
//the list to.
|
|
174
|
+
BOOL8 started_cycling; //Have we moved off
|
|
175
|
+
//the start?
|
|
176
|
+
|
|
177
|
+
CLIST_LINK *extract_sublist( //from this current...
|
|
178
|
+
CLIST_ITERATOR *other_it); //to other current
|
|
179
|
+
|
|
180
|
+
public:
|
|
181
|
+
CLIST_ITERATOR() { //constructor
|
|
182
|
+
list = NULL;
|
|
183
|
+
} //unassigned list
|
|
184
|
+
|
|
185
|
+
CLIST_ITERATOR( //constructor
|
|
186
|
+
CLIST *list_to_iterate);
|
|
187
|
+
|
|
188
|
+
void set_to_list( //change list
|
|
189
|
+
CLIST *list_to_iterate);
|
|
190
|
+
|
|
191
|
+
void add_after_then_move( //add after current &
|
|
192
|
+
void *new_data); //move to new
|
|
193
|
+
|
|
194
|
+
void add_after_stay_put( //add after current &
|
|
195
|
+
void *new_data); //stay at current
|
|
196
|
+
|
|
197
|
+
void add_before_then_move( //add before current &
|
|
198
|
+
void *new_data); //move to new
|
|
199
|
+
|
|
200
|
+
void add_before_stay_put( //add before current &
|
|
201
|
+
void *new_data); //stay at current
|
|
202
|
+
|
|
203
|
+
void add_list_after( //add a list &
|
|
204
|
+
CLIST *list_to_add); //stay at current
|
|
205
|
+
|
|
206
|
+
void add_list_before( //add a list &
|
|
207
|
+
CLIST *list_to_add); //move to it 1st item
|
|
208
|
+
|
|
209
|
+
void *data() { //get current data
|
|
210
|
+
#ifndef NDEBUG
|
|
211
|
+
if (!list)
|
|
212
|
+
NO_LIST.error ("CLIST_ITERATOR::data", ABORT, NULL);
|
|
213
|
+
if (!current)
|
|
214
|
+
NULL_DATA.error ("CLIST_ITERATOR::data", ABORT, NULL);
|
|
215
|
+
#endif
|
|
216
|
+
return current->data;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
void *data_relative( //get data + or - ...
|
|
220
|
+
inT8 offset); //offset from current
|
|
221
|
+
|
|
222
|
+
void *forward(); //move to next element
|
|
223
|
+
|
|
224
|
+
void *extract(); //remove from list
|
|
225
|
+
|
|
226
|
+
void *move_to_first(); //go to start of list
|
|
227
|
+
|
|
228
|
+
void *move_to_last(); //go to end of list
|
|
229
|
+
|
|
230
|
+
void mark_cycle_pt(); //remember current
|
|
231
|
+
|
|
232
|
+
BOOL8 empty() { //is list empty?
|
|
233
|
+
#ifndef NDEBUG
|
|
234
|
+
if (!list)
|
|
235
|
+
NO_LIST.error ("CLIST_ITERATOR::empty", ABORT, NULL);
|
|
236
|
+
#endif
|
|
237
|
+
return list->empty ();
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
BOOL8 current_extracted() { //current extracted?
|
|
241
|
+
return !current;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
BOOL8 at_first(); //Current is first?
|
|
245
|
+
|
|
246
|
+
BOOL8 at_last(); //Current is last?
|
|
247
|
+
|
|
248
|
+
BOOL8 cycled_list(); //Completed a cycle?
|
|
249
|
+
|
|
250
|
+
void add_to_end( //add at end &
|
|
251
|
+
void *new_data); //dont move
|
|
252
|
+
|
|
253
|
+
void exchange( //positions of 2 links
|
|
254
|
+
CLIST_ITERATOR *other_it); //other iterator
|
|
255
|
+
|
|
256
|
+
inT32 length(); //# elements in list
|
|
257
|
+
|
|
258
|
+
void sort ( //sort elements
|
|
259
|
+
int comparator ( //comparison routine
|
|
260
|
+
const void *, const void *));
|
|
261
|
+
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
/***********************************************************************
|
|
265
|
+
* CLIST_ITERATOR::set_to_list
|
|
266
|
+
*
|
|
267
|
+
* (Re-)initialise the iterator to point to the start of the list_to_iterate
|
|
268
|
+
* over.
|
|
269
|
+
**********************************************************************/
|
|
270
|
+
|
|
271
|
+
inline void CLIST_ITERATOR::set_to_list( //change list
|
|
272
|
+
CLIST *list_to_iterate) {
|
|
273
|
+
#ifndef NDEBUG
|
|
274
|
+
if (!this)
|
|
275
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::set_to_list", ABORT, NULL);
|
|
276
|
+
if (!list_to_iterate)
|
|
277
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::set_to_list", ABORT,
|
|
278
|
+
"list_to_iterate is NULL");
|
|
279
|
+
#endif
|
|
280
|
+
|
|
281
|
+
list = list_to_iterate;
|
|
282
|
+
prev = list->last;
|
|
283
|
+
current = list->First ();
|
|
284
|
+
next = current != NULL ? current->next : NULL;
|
|
285
|
+
cycle_pt = NULL; //await explicit set
|
|
286
|
+
started_cycling = FALSE;
|
|
287
|
+
ex_current_was_last = FALSE;
|
|
288
|
+
ex_current_was_cycle_pt = FALSE;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
/***********************************************************************
|
|
293
|
+
* CLIST_ITERATOR::CLIST_ITERATOR
|
|
294
|
+
*
|
|
295
|
+
* CONSTRUCTOR - set iterator to specified list;
|
|
296
|
+
**********************************************************************/
|
|
297
|
+
|
|
298
|
+
inline CLIST_ITERATOR::CLIST_ITERATOR(CLIST *list_to_iterate) {
|
|
299
|
+
set_to_list(list_to_iterate);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
/***********************************************************************
|
|
304
|
+
* CLIST_ITERATOR::add_after_then_move
|
|
305
|
+
*
|
|
306
|
+
* Add a new element to the list after the current element and move the
|
|
307
|
+
* iterator to the new element.
|
|
308
|
+
**********************************************************************/
|
|
309
|
+
|
|
310
|
+
inline void CLIST_ITERATOR::add_after_then_move( // element to add
|
|
311
|
+
void *new_data) {
|
|
312
|
+
CLIST_LINK *new_element;
|
|
313
|
+
|
|
314
|
+
#ifndef NDEBUG
|
|
315
|
+
if (!this)
|
|
316
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_after_then_move", ABORT, NULL);
|
|
317
|
+
if (!list)
|
|
318
|
+
NO_LIST.error ("CLIST_ITERATOR::add_after_then_move", ABORT, NULL);
|
|
319
|
+
if (!new_data)
|
|
320
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_after_then_move", ABORT,
|
|
321
|
+
"new_data is NULL");
|
|
322
|
+
#endif
|
|
323
|
+
|
|
324
|
+
new_element = new CLIST_LINK;
|
|
325
|
+
new_element->data = new_data;
|
|
326
|
+
|
|
327
|
+
if (list->empty ()) {
|
|
328
|
+
new_element->next = new_element;
|
|
329
|
+
list->last = new_element;
|
|
330
|
+
prev = next = new_element;
|
|
331
|
+
}
|
|
332
|
+
else {
|
|
333
|
+
new_element->next = next;
|
|
334
|
+
|
|
335
|
+
if (current) { //not extracted
|
|
336
|
+
current->next = new_element;
|
|
337
|
+
prev = current;
|
|
338
|
+
if (current == list->last)
|
|
339
|
+
list->last = new_element;
|
|
340
|
+
}
|
|
341
|
+
else { //current extracted
|
|
342
|
+
prev->next = new_element;
|
|
343
|
+
if (ex_current_was_last)
|
|
344
|
+
list->last = new_element;
|
|
345
|
+
if (ex_current_was_cycle_pt)
|
|
346
|
+
cycle_pt = new_element;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
current = new_element;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
/***********************************************************************
|
|
354
|
+
* CLIST_ITERATOR::add_after_stay_put
|
|
355
|
+
*
|
|
356
|
+
* Add a new element to the list after the current element but do not move
|
|
357
|
+
* the iterator to the new element.
|
|
358
|
+
**********************************************************************/
|
|
359
|
+
|
|
360
|
+
inline void CLIST_ITERATOR::add_after_stay_put( // element to add
|
|
361
|
+
void *new_data) {
|
|
362
|
+
CLIST_LINK *new_element;
|
|
363
|
+
|
|
364
|
+
#ifndef NDEBUG
|
|
365
|
+
if (!this)
|
|
366
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_after_stay_put", ABORT, NULL);
|
|
367
|
+
if (!list)
|
|
368
|
+
NO_LIST.error ("CLIST_ITERATOR::add_after_stay_put", ABORT, NULL);
|
|
369
|
+
if (!new_data)
|
|
370
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_after_stay_put", ABORT,
|
|
371
|
+
"new_data is NULL");
|
|
372
|
+
#endif
|
|
373
|
+
|
|
374
|
+
new_element = new CLIST_LINK;
|
|
375
|
+
new_element->data = new_data;
|
|
376
|
+
|
|
377
|
+
if (list->empty ()) {
|
|
378
|
+
new_element->next = new_element;
|
|
379
|
+
list->last = new_element;
|
|
380
|
+
prev = next = new_element;
|
|
381
|
+
ex_current_was_last = FALSE;
|
|
382
|
+
current = NULL;
|
|
383
|
+
}
|
|
384
|
+
else {
|
|
385
|
+
new_element->next = next;
|
|
386
|
+
|
|
387
|
+
if (current) { //not extracted
|
|
388
|
+
current->next = new_element;
|
|
389
|
+
if (prev == current)
|
|
390
|
+
prev = new_element;
|
|
391
|
+
if (current == list->last)
|
|
392
|
+
list->last = new_element;
|
|
393
|
+
}
|
|
394
|
+
else { //current extracted
|
|
395
|
+
prev->next = new_element;
|
|
396
|
+
if (ex_current_was_last) {
|
|
397
|
+
list->last = new_element;
|
|
398
|
+
ex_current_was_last = FALSE;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
next = new_element;
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
/***********************************************************************
|
|
407
|
+
* CLIST_ITERATOR::add_before_then_move
|
|
408
|
+
*
|
|
409
|
+
* Add a new element to the list before the current element and move the
|
|
410
|
+
* iterator to the new element.
|
|
411
|
+
**********************************************************************/
|
|
412
|
+
|
|
413
|
+
inline void CLIST_ITERATOR::add_before_then_move( // element to add
|
|
414
|
+
void *new_data) {
|
|
415
|
+
CLIST_LINK *new_element;
|
|
416
|
+
|
|
417
|
+
#ifndef NDEBUG
|
|
418
|
+
if (!this)
|
|
419
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_before_then_move", ABORT, NULL);
|
|
420
|
+
if (!list)
|
|
421
|
+
NO_LIST.error ("CLIST_ITERATOR::add_before_then_move", ABORT, NULL);
|
|
422
|
+
if (!new_data)
|
|
423
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_before_then_move", ABORT,
|
|
424
|
+
"new_data is NULL");
|
|
425
|
+
#endif
|
|
426
|
+
|
|
427
|
+
new_element = new CLIST_LINK;
|
|
428
|
+
new_element->data = new_data;
|
|
429
|
+
|
|
430
|
+
if (list->empty ()) {
|
|
431
|
+
new_element->next = new_element;
|
|
432
|
+
list->last = new_element;
|
|
433
|
+
prev = next = new_element;
|
|
434
|
+
}
|
|
435
|
+
else {
|
|
436
|
+
prev->next = new_element;
|
|
437
|
+
if (current) { //not extracted
|
|
438
|
+
new_element->next = current;
|
|
439
|
+
next = current;
|
|
440
|
+
}
|
|
441
|
+
else { //current extracted
|
|
442
|
+
new_element->next = next;
|
|
443
|
+
if (ex_current_was_last)
|
|
444
|
+
list->last = new_element;
|
|
445
|
+
if (ex_current_was_cycle_pt)
|
|
446
|
+
cycle_pt = new_element;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
current = new_element;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
/***********************************************************************
|
|
454
|
+
* CLIST_ITERATOR::add_before_stay_put
|
|
455
|
+
*
|
|
456
|
+
* Add a new element to the list before the current element but dont move the
|
|
457
|
+
* iterator to the new element.
|
|
458
|
+
**********************************************************************/
|
|
459
|
+
|
|
460
|
+
inline void CLIST_ITERATOR::add_before_stay_put( // element to add
|
|
461
|
+
void *new_data) {
|
|
462
|
+
CLIST_LINK *new_element;
|
|
463
|
+
|
|
464
|
+
#ifndef NDEBUG
|
|
465
|
+
if (!this)
|
|
466
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_before_stay_put", ABORT, NULL);
|
|
467
|
+
if (!list)
|
|
468
|
+
NO_LIST.error ("CLIST_ITERATOR::add_before_stay_put", ABORT, NULL);
|
|
469
|
+
if (!new_data)
|
|
470
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_before_stay_put", ABORT,
|
|
471
|
+
"new_data is NULL");
|
|
472
|
+
#endif
|
|
473
|
+
|
|
474
|
+
new_element = new CLIST_LINK;
|
|
475
|
+
new_element->data = new_data;
|
|
476
|
+
|
|
477
|
+
if (list->empty ()) {
|
|
478
|
+
new_element->next = new_element;
|
|
479
|
+
list->last = new_element;
|
|
480
|
+
prev = next = new_element;
|
|
481
|
+
ex_current_was_last = TRUE;
|
|
482
|
+
current = NULL;
|
|
483
|
+
}
|
|
484
|
+
else {
|
|
485
|
+
prev->next = new_element;
|
|
486
|
+
if (current) { //not extracted
|
|
487
|
+
new_element->next = current;
|
|
488
|
+
if (next == current)
|
|
489
|
+
next = new_element;
|
|
490
|
+
}
|
|
491
|
+
else { //current extracted
|
|
492
|
+
new_element->next = next;
|
|
493
|
+
if (ex_current_was_last)
|
|
494
|
+
list->last = new_element;
|
|
495
|
+
}
|
|
496
|
+
prev = new_element;
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
/***********************************************************************
|
|
502
|
+
* CLIST_ITERATOR::add_list_after
|
|
503
|
+
*
|
|
504
|
+
* Insert another list to this list after the current element but dont move the
|
|
505
|
+
* iterator.
|
|
506
|
+
**********************************************************************/
|
|
507
|
+
|
|
508
|
+
inline void CLIST_ITERATOR::add_list_after(CLIST *list_to_add) {
|
|
509
|
+
#ifndef NDEBUG
|
|
510
|
+
if (!this)
|
|
511
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_list_after", ABORT, NULL);
|
|
512
|
+
if (!list)
|
|
513
|
+
NO_LIST.error ("CLIST_ITERATOR::add_list_after", ABORT, NULL);
|
|
514
|
+
if (!list_to_add)
|
|
515
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_list_after", ABORT,
|
|
516
|
+
"list_to_add is NULL");
|
|
517
|
+
#endif
|
|
518
|
+
|
|
519
|
+
if (!list_to_add->empty ()) {
|
|
520
|
+
if (list->empty ()) {
|
|
521
|
+
list->last = list_to_add->last;
|
|
522
|
+
prev = list->last;
|
|
523
|
+
next = list->First ();
|
|
524
|
+
ex_current_was_last = TRUE;
|
|
525
|
+
current = NULL;
|
|
526
|
+
}
|
|
527
|
+
else {
|
|
528
|
+
if (current) { //not extracted
|
|
529
|
+
current->next = list_to_add->First ();
|
|
530
|
+
if (current == list->last)
|
|
531
|
+
list->last = list_to_add->last;
|
|
532
|
+
list_to_add->last->next = next;
|
|
533
|
+
next = current->next;
|
|
534
|
+
}
|
|
535
|
+
else { //current extracted
|
|
536
|
+
prev->next = list_to_add->First ();
|
|
537
|
+
if (ex_current_was_last) {
|
|
538
|
+
list->last = list_to_add->last;
|
|
539
|
+
ex_current_was_last = FALSE;
|
|
540
|
+
}
|
|
541
|
+
list_to_add->last->next = next;
|
|
542
|
+
next = prev->next;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
list_to_add->last = NULL;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
/***********************************************************************
|
|
551
|
+
* CLIST_ITERATOR::add_list_before
|
|
552
|
+
*
|
|
553
|
+
* Insert another list to this list before the current element. Move the
|
|
554
|
+
* iterator to the start of the inserted elements
|
|
555
|
+
* iterator.
|
|
556
|
+
**********************************************************************/
|
|
557
|
+
|
|
558
|
+
inline void CLIST_ITERATOR::add_list_before(CLIST *list_to_add) {
|
|
559
|
+
#ifndef NDEBUG
|
|
560
|
+
if (!this)
|
|
561
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_list_before", ABORT, NULL);
|
|
562
|
+
if (!list)
|
|
563
|
+
NO_LIST.error ("CLIST_ITERATOR::add_list_before", ABORT, NULL);
|
|
564
|
+
if (!list_to_add)
|
|
565
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_list_before", ABORT,
|
|
566
|
+
"list_to_add is NULL");
|
|
567
|
+
#endif
|
|
568
|
+
|
|
569
|
+
if (!list_to_add->empty ()) {
|
|
570
|
+
if (list->empty ()) {
|
|
571
|
+
list->last = list_to_add->last;
|
|
572
|
+
prev = list->last;
|
|
573
|
+
current = list->First ();
|
|
574
|
+
next = current->next;
|
|
575
|
+
ex_current_was_last = FALSE;
|
|
576
|
+
}
|
|
577
|
+
else {
|
|
578
|
+
prev->next = list_to_add->First ();
|
|
579
|
+
if (current) { //not extracted
|
|
580
|
+
list_to_add->last->next = current;
|
|
581
|
+
}
|
|
582
|
+
else { //current extracted
|
|
583
|
+
list_to_add->last->next = next;
|
|
584
|
+
if (ex_current_was_last)
|
|
585
|
+
list->last = list_to_add->last;
|
|
586
|
+
if (ex_current_was_cycle_pt)
|
|
587
|
+
cycle_pt = prev->next;
|
|
588
|
+
}
|
|
589
|
+
current = prev->next;
|
|
590
|
+
next = current->next;
|
|
591
|
+
}
|
|
592
|
+
list_to_add->last = NULL;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
/***********************************************************************
|
|
598
|
+
* CLIST_ITERATOR::extract
|
|
599
|
+
*
|
|
600
|
+
* Do extraction by removing current from the list, deleting the cons cell
|
|
601
|
+
* and returning the data to the caller, but NOT updating the iterator. (So
|
|
602
|
+
* that any calling loop can do this.) The iterator's current points to
|
|
603
|
+
* NULL. If the data is to be deleted, this is the callers responsibility.
|
|
604
|
+
**********************************************************************/
|
|
605
|
+
|
|
606
|
+
inline void *CLIST_ITERATOR::extract() {
|
|
607
|
+
void *extracted_data;
|
|
608
|
+
|
|
609
|
+
#ifndef NDEBUG
|
|
610
|
+
if (!this)
|
|
611
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::extract", ABORT, NULL);
|
|
612
|
+
if (!list)
|
|
613
|
+
NO_LIST.error ("CLIST_ITERATOR::extract", ABORT, NULL);
|
|
614
|
+
if (!current) //list empty or
|
|
615
|
+
//element extracted
|
|
616
|
+
NULL_CURRENT.error ("CLIST_ITERATOR::extract",
|
|
617
|
+
ABORT, NULL);
|
|
618
|
+
#endif
|
|
619
|
+
|
|
620
|
+
if (list->singleton()) {
|
|
621
|
+
// Special case where we do need to change the iterator.
|
|
622
|
+
prev = next = list->last = NULL;
|
|
623
|
+
} else {
|
|
624
|
+
prev->next = next; //remove from list
|
|
625
|
+
|
|
626
|
+
if (current == list->last) {
|
|
627
|
+
list->last = prev;
|
|
628
|
+
ex_current_was_last = TRUE;
|
|
629
|
+
} else {
|
|
630
|
+
ex_current_was_last = FALSE;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
// Always set ex_current_was_cycle_pt so an add/forward will work in a loop.
|
|
634
|
+
ex_current_was_cycle_pt = (current == cycle_pt) ? TRUE : FALSE;
|
|
635
|
+
extracted_data = current->data;
|
|
636
|
+
delete(current); //destroy CONS cell
|
|
637
|
+
current = NULL;
|
|
638
|
+
return extracted_data;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
/***********************************************************************
|
|
643
|
+
* CLIST_ITERATOR::move_to_first()
|
|
644
|
+
*
|
|
645
|
+
* Move current so that it is set to the start of the list.
|
|
646
|
+
* Return data just in case anyone wants it.
|
|
647
|
+
**********************************************************************/
|
|
648
|
+
|
|
649
|
+
inline void *CLIST_ITERATOR::move_to_first() {
|
|
650
|
+
#ifndef NDEBUG
|
|
651
|
+
if (!this)
|
|
652
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::move_to_first", ABORT, NULL);
|
|
653
|
+
if (!list)
|
|
654
|
+
NO_LIST.error ("CLIST_ITERATOR::move_to_first", ABORT, NULL);
|
|
655
|
+
#endif
|
|
656
|
+
|
|
657
|
+
current = list->First ();
|
|
658
|
+
prev = list->last;
|
|
659
|
+
next = current != NULL ? current->next : NULL;
|
|
660
|
+
return current != NULL ? current->data : NULL;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
/***********************************************************************
|
|
665
|
+
* CLIST_ITERATOR::mark_cycle_pt()
|
|
666
|
+
*
|
|
667
|
+
* Remember the current location so that we can tell whether we've returned
|
|
668
|
+
* to this point later.
|
|
669
|
+
*
|
|
670
|
+
* If the current point is deleted either now, or in the future, the cycle
|
|
671
|
+
* point will be set to the next item which is set to current. This could be
|
|
672
|
+
* by a forward, add_after_then_move or add_after_then_move.
|
|
673
|
+
**********************************************************************/
|
|
674
|
+
|
|
675
|
+
inline void CLIST_ITERATOR::mark_cycle_pt() {
|
|
676
|
+
#ifndef NDEBUG
|
|
677
|
+
if (!this)
|
|
678
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::mark_cycle_pt", ABORT, NULL);
|
|
679
|
+
if (!list)
|
|
680
|
+
NO_LIST.error ("CLIST_ITERATOR::mark_cycle_pt", ABORT, NULL);
|
|
681
|
+
#endif
|
|
682
|
+
|
|
683
|
+
if (current)
|
|
684
|
+
cycle_pt = current;
|
|
685
|
+
else
|
|
686
|
+
ex_current_was_cycle_pt = TRUE;
|
|
687
|
+
started_cycling = FALSE;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
/***********************************************************************
|
|
692
|
+
* CLIST_ITERATOR::at_first()
|
|
693
|
+
*
|
|
694
|
+
* Are we at the start of the list?
|
|
695
|
+
*
|
|
696
|
+
**********************************************************************/
|
|
697
|
+
|
|
698
|
+
inline BOOL8 CLIST_ITERATOR::at_first() {
|
|
699
|
+
#ifndef NDEBUG
|
|
700
|
+
if (!this)
|
|
701
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::at_first", ABORT, NULL);
|
|
702
|
+
if (!list)
|
|
703
|
+
NO_LIST.error ("CLIST_ITERATOR::at_first", ABORT, NULL);
|
|
704
|
+
#endif
|
|
705
|
+
|
|
706
|
+
//we're at a deleted
|
|
707
|
+
return ((list->empty ()) || (current == list->First ()) || ((current == NULL) &&
|
|
708
|
+
(prev == list->last) && //NON-last pt between
|
|
709
|
+
!ex_current_was_last)); //first and last
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
/***********************************************************************
|
|
714
|
+
* CLIST_ITERATOR::at_last()
|
|
715
|
+
*
|
|
716
|
+
* Are we at the end of the list?
|
|
717
|
+
*
|
|
718
|
+
**********************************************************************/
|
|
719
|
+
|
|
720
|
+
inline BOOL8 CLIST_ITERATOR::at_last() {
|
|
721
|
+
#ifndef NDEBUG
|
|
722
|
+
if (!this)
|
|
723
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::at_last", ABORT, NULL);
|
|
724
|
+
if (!list)
|
|
725
|
+
NO_LIST.error ("CLIST_ITERATOR::at_last", ABORT, NULL);
|
|
726
|
+
#endif
|
|
727
|
+
|
|
728
|
+
//we're at a deleted
|
|
729
|
+
return ((list->empty ()) || (current == list->last) || ((current == NULL) &&
|
|
730
|
+
(prev == list->last) && //last point between
|
|
731
|
+
ex_current_was_last)); //first and last
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
/***********************************************************************
|
|
736
|
+
* CLIST_ITERATOR::cycled_list()
|
|
737
|
+
*
|
|
738
|
+
* Have we returned to the cycle_pt since it was set?
|
|
739
|
+
*
|
|
740
|
+
**********************************************************************/
|
|
741
|
+
|
|
742
|
+
inline BOOL8 CLIST_ITERATOR::cycled_list() {
|
|
743
|
+
#ifndef NDEBUG
|
|
744
|
+
if (!this)
|
|
745
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::cycled_list", ABORT, NULL);
|
|
746
|
+
if (!list)
|
|
747
|
+
NO_LIST.error ("CLIST_ITERATOR::cycled_list", ABORT, NULL);
|
|
748
|
+
#endif
|
|
749
|
+
|
|
750
|
+
return ((list->empty ()) || ((current == cycle_pt) && started_cycling));
|
|
751
|
+
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
/***********************************************************************
|
|
756
|
+
* CLIST_ITERATOR::length()
|
|
757
|
+
*
|
|
758
|
+
* Return the length of the list
|
|
759
|
+
*
|
|
760
|
+
**********************************************************************/
|
|
761
|
+
|
|
762
|
+
inline inT32 CLIST_ITERATOR::length() {
|
|
763
|
+
#ifndef NDEBUG
|
|
764
|
+
if (!this)
|
|
765
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::length", ABORT, NULL);
|
|
766
|
+
if (!list)
|
|
767
|
+
NO_LIST.error ("CLIST_ITERATOR::length", ABORT, NULL);
|
|
768
|
+
#endif
|
|
769
|
+
|
|
770
|
+
return list->length ();
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
/***********************************************************************
|
|
775
|
+
* CLIST_ITERATOR::sort()
|
|
776
|
+
*
|
|
777
|
+
* Sort the elements of the list, then reposition at the start.
|
|
778
|
+
*
|
|
779
|
+
**********************************************************************/
|
|
780
|
+
|
|
781
|
+
inline void
|
|
782
|
+
CLIST_ITERATOR::sort ( //sort elements
|
|
783
|
+
int comparator ( //comparison routine
|
|
784
|
+
const void *, const void *)) {
|
|
785
|
+
#ifndef NDEBUG
|
|
786
|
+
if (!this)
|
|
787
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::sort", ABORT, NULL);
|
|
788
|
+
if (!list)
|
|
789
|
+
NO_LIST.error ("CLIST_ITERATOR::sort", ABORT, NULL);
|
|
790
|
+
#endif
|
|
791
|
+
|
|
792
|
+
list->sort (comparator);
|
|
793
|
+
move_to_first();
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
/***********************************************************************
|
|
798
|
+
* CLIST_ITERATOR::add_to_end
|
|
799
|
+
*
|
|
800
|
+
* Add a new element to the end of the list without moving the iterator.
|
|
801
|
+
* This is provided because a single linked list cannot move to the last as
|
|
802
|
+
* the iterator couldn't set its prev pointer. Adding to the end is
|
|
803
|
+
* essential for implementing
|
|
804
|
+
queues.
|
|
805
|
+
**********************************************************************/
|
|
806
|
+
|
|
807
|
+
inline void CLIST_ITERATOR::add_to_end( // element to add
|
|
808
|
+
void *new_data) {
|
|
809
|
+
CLIST_LINK *new_element;
|
|
810
|
+
|
|
811
|
+
#ifndef NDEBUG
|
|
812
|
+
if (!this)
|
|
813
|
+
NULL_OBJECT.error ("CLIST_ITERATOR::add_to_end", ABORT, NULL);
|
|
814
|
+
if (!list)
|
|
815
|
+
NO_LIST.error ("CLIST_ITERATOR::add_to_end", ABORT, NULL);
|
|
816
|
+
if (!new_data)
|
|
817
|
+
BAD_PARAMETER.error ("CLIST_ITERATOR::add_to_end", ABORT,
|
|
818
|
+
"new_data is NULL");
|
|
819
|
+
#endif
|
|
820
|
+
|
|
821
|
+
if (this->at_last ()) {
|
|
822
|
+
this->add_after_stay_put (new_data);
|
|
823
|
+
}
|
|
824
|
+
else {
|
|
825
|
+
if (this->at_first ()) {
|
|
826
|
+
this->add_before_stay_put (new_data);
|
|
827
|
+
list->last = prev;
|
|
828
|
+
}
|
|
829
|
+
else { //Iteratr is elsewhere
|
|
830
|
+
new_element = new CLIST_LINK;
|
|
831
|
+
new_element->data = new_data;
|
|
832
|
+
|
|
833
|
+
new_element->next = list->last->next;
|
|
834
|
+
list->last->next = new_element;
|
|
835
|
+
list->last = new_element;
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
/***********************************************************************
|
|
842
|
+
QUOTE_IT MACRO DEFINITION
|
|
843
|
+
===========================
|
|
844
|
+
Replace <parm> with "<parm>". <parm> may be an arbitrary number of tokens
|
|
845
|
+
***********************************************************************/
|
|
846
|
+
|
|
847
|
+
#define QUOTE_IT( parm ) #parm
|
|
848
|
+
|
|
849
|
+
/***********************************************************************
|
|
850
|
+
CLISTIZE( CLASSNAME ) MACRO DEFINITION
|
|
851
|
+
======================================
|
|
852
|
+
|
|
853
|
+
CLASSNAME is assumed to be the name of a class to be used in a CONS list
|
|
854
|
+
|
|
855
|
+
NOTE: Because we dont use virtual functions in the list code, the list code
|
|
856
|
+
will NOT work correctly for classes derived from this.
|
|
857
|
+
|
|
858
|
+
The macro generates:
|
|
859
|
+
- An element deletion function: CLASSNAME##_c1_zapper
|
|
860
|
+
- An element copier function:
|
|
861
|
+
CLASSNAME##_c1_copier
|
|
862
|
+
- An element serialiser function" CLASSNAME##_c1_serialiser
|
|
863
|
+
- An element de-serialiser function" CLASSNAME##_c1_de_serialiser
|
|
864
|
+
- A CLIST subclass: CLASSNAME##_CLIST
|
|
865
|
+
- A CLIST_ITERATOR subclass:
|
|
866
|
+
CLASSNAME##_C_IT
|
|
867
|
+
|
|
868
|
+
NOTE: Generated names do NOT clash with those generated by ELISTIZE,
|
|
869
|
+
ELIST2ISE and CLIST2IZE
|
|
870
|
+
|
|
871
|
+
Four macros are provided: CLISTIZE, CLISTIZE_S, CLISTIZEH and CLISTIZEH_S
|
|
872
|
+
The ...IZEH macros just define the class names for use in .h files
|
|
873
|
+
The ...IZE macros define the code use in .c files
|
|
874
|
+
The _S versions define lists which can be serialised. They assume that the
|
|
875
|
+
make_serialise() macro is used in the list element class to define
|
|
876
|
+
serialise() and de_serialise() members for the list elements.
|
|
877
|
+
This, in turn, assumes that the list element class has prep_serialise()
|
|
878
|
+
dump() and de_dump() member functions.
|
|
879
|
+
***********************************************************************/
|
|
880
|
+
|
|
881
|
+
/***********************************************************************
|
|
882
|
+
CLISTIZEH( CLASSNAME ) and CLISTIZEH_S( CLASSNAME ) MACROS
|
|
883
|
+
|
|
884
|
+
These macros are constructed from 3 fragments CLISTIZEH_A, CLISTIZEH_B and
|
|
885
|
+
CLISTIZEH_C. CLISTIZEH is simply a concatenation of these parts.
|
|
886
|
+
CLISTIZEH_S has some additional bits thrown in the gaps.
|
|
887
|
+
***********************************************************************/
|
|
888
|
+
|
|
889
|
+
#define CLISTIZEH_A( CLASSNAME ) \
|
|
890
|
+
\
|
|
891
|
+
extern DLLSYM void CLASSNAME##_c1_zapper( /*delete a link*/ \
|
|
892
|
+
void* link); /*link to delete*/ \
|
|
893
|
+
\
|
|
894
|
+
extern DLLSYM void* CLASSNAME##_c1_copier( /*deep copy a link*/ \
|
|
895
|
+
void* old_element); /*source link */
|
|
896
|
+
|
|
897
|
+
#define CLISTIZEH_B( CLASSNAME ) \
|
|
898
|
+
\
|
|
899
|
+
/*********************************************************************** \
|
|
900
|
+
* CLASS - CLASSNAME##_CLIST \
|
|
901
|
+
* \
|
|
902
|
+
* List class for class CLASSNAME \
|
|
903
|
+
* \
|
|
904
|
+
**********************************************************************/ \
|
|
905
|
+
\
|
|
906
|
+
class DLLSYM CLASSNAME##_CLIST : public CLIST \
|
|
907
|
+
{ \
|
|
908
|
+
public: \
|
|
909
|
+
CLASSNAME##_CLIST():CLIST() {} \
|
|
910
|
+
/* constructor */ \
|
|
911
|
+
\
|
|
912
|
+
CLASSNAME##_CLIST( /* dont construct */ \
|
|
913
|
+
const CLASSNAME##_CLIST&) /*by initial assign*/ \
|
|
914
|
+
{ DONT_CONSTRUCT_LIST_BY_COPY.error( QUOTE_IT( CLASSNAME##_CLIST ), \
|
|
915
|
+
ABORT, NULL ); } \
|
|
916
|
+
\
|
|
917
|
+
void deep_clear() /* delete elements */ \
|
|
918
|
+
{ CLIST::internal_deep_clear( &CLASSNAME##_c1_zapper ); } \
|
|
919
|
+
\
|
|
920
|
+
void deep_copy( /* become a deep */ \
|
|
921
|
+
const CLASSNAME##_CLIST*list) /* copy of src list*/ \
|
|
922
|
+
{ CLIST::internal_deep_copy( &CLASSNAME##_c1_copier, list ); } \
|
|
923
|
+
\
|
|
924
|
+
void operator=( /* prevent assign */ \
|
|
925
|
+
const CLASSNAME##_CLIST&) \
|
|
926
|
+
{ DONT_ASSIGN_LISTS.error( QUOTE_IT( CLASSNAME##_CLIST ), \
|
|
927
|
+
ABORT, NULL ); }
|
|
928
|
+
|
|
929
|
+
#define CLISTIZEH_C( CLASSNAME ) \
|
|
930
|
+
\
|
|
931
|
+
}; \
|
|
932
|
+
\
|
|
933
|
+
\
|
|
934
|
+
\
|
|
935
|
+
/*********************************************************************** \
|
|
936
|
+
* CLASS - CLASSNAME##_C_IT \
|
|
937
|
+
* \
|
|
938
|
+
* Iterator class for class CLASSNAME##_CLIST \
|
|
939
|
+
* \
|
|
940
|
+
* Note: We don't need to coerce pointers to member functions input \
|
|
941
|
+
* parameters as these are automatically converted to the type of the base \
|
|
942
|
+
* type. ("A ptr to a class may be converted to a pointer to a public base \
|
|
943
|
+
* class of that class") \
|
|
944
|
+
**********************************************************************/ \
|
|
945
|
+
\
|
|
946
|
+
class DLLSYM CLASSNAME##_C_IT : public CLIST_ITERATOR \
|
|
947
|
+
{ \
|
|
948
|
+
public: \
|
|
949
|
+
CLASSNAME##_C_IT():CLIST_ITERATOR(){} \
|
|
950
|
+
\
|
|
951
|
+
CLASSNAME##_C_IT( \
|
|
952
|
+
CLASSNAME##_CLIST* list):CLIST_ITERATOR(list){} \
|
|
953
|
+
\
|
|
954
|
+
CLASSNAME* data() \
|
|
955
|
+
{ return (CLASSNAME*) CLIST_ITERATOR::data(); } \
|
|
956
|
+
\
|
|
957
|
+
CLASSNAME* data_relative( \
|
|
958
|
+
inT8 offset) \
|
|
959
|
+
{ return (CLASSNAME*) CLIST_ITERATOR::data_relative( offset ); } \
|
|
960
|
+
\
|
|
961
|
+
CLASSNAME* forward() \
|
|
962
|
+
{ return (CLASSNAME*) CLIST_ITERATOR::forward(); } \
|
|
963
|
+
\
|
|
964
|
+
CLASSNAME* extract() \
|
|
965
|
+
{ return (CLASSNAME*) CLIST_ITERATOR::extract(); } \
|
|
966
|
+
\
|
|
967
|
+
CLASSNAME* move_to_first() \
|
|
968
|
+
{ return (CLASSNAME*) CLIST_ITERATOR::move_to_first(); } \
|
|
969
|
+
\
|
|
970
|
+
CLASSNAME* move_to_last() \
|
|
971
|
+
{ return (CLASSNAME*) CLIST_ITERATOR::move_to_last(); } \
|
|
972
|
+
};
|
|
973
|
+
|
|
974
|
+
#define CLISTIZEH( CLASSNAME ) \
|
|
975
|
+
\
|
|
976
|
+
CLISTIZEH_A( CLASSNAME ) \
|
|
977
|
+
\
|
|
978
|
+
CLISTIZEH_B( CLASSNAME ) \
|
|
979
|
+
\
|
|
980
|
+
CLISTIZEH_C( CLASSNAME )
|
|
981
|
+
|
|
982
|
+
#define CLISTIZEH_S( CLASSNAME ) \
|
|
983
|
+
\
|
|
984
|
+
CLISTIZEH_A( CLASSNAME ) \
|
|
985
|
+
\
|
|
986
|
+
extern DLLSYM void CLASSNAME##_c1_serialiser( \
|
|
987
|
+
FILE* f, \
|
|
988
|
+
void* element); \
|
|
989
|
+
\
|
|
990
|
+
extern DLLSYM void* CLASSNAME##_c1_de_serialiser( \
|
|
991
|
+
FILE* f); \
|
|
992
|
+
\
|
|
993
|
+
CLISTIZEH_B( CLASSNAME ) \
|
|
994
|
+
\
|
|
995
|
+
void dump( /* dump to file */ \
|
|
996
|
+
FILE* f) \
|
|
997
|
+
{ CLIST::internal_dump( f, &CLASSNAME##_c1_serialiser );} \
|
|
998
|
+
\
|
|
999
|
+
void de_dump( /* get from file */ \
|
|
1000
|
+
FILE* f) \
|
|
1001
|
+
{ CLIST::internal_de_dump( f, &CLASSNAME##_c1_de_serialiser );} \
|
|
1002
|
+
\
|
|
1003
|
+
make_serialise( CLASSNAME##_CLIST ) \
|
|
1004
|
+
\
|
|
1005
|
+
CLISTIZEH_C( CLASSNAME )
|
|
1006
|
+
|
|
1007
|
+
/***********************************************************************
|
|
1008
|
+
CLISTIZE( CLASSNAME ) and CLISTIZE_S( CLASSNAME ) MACROS
|
|
1009
|
+
CLISTIZE_S is a simple extension to CLISTIZE
|
|
1010
|
+
***********************************************************************/
|
|
1011
|
+
|
|
1012
|
+
#define CLISTIZE( CLASSNAME ) \
|
|
1013
|
+
\
|
|
1014
|
+
/*********************************************************************** \
|
|
1015
|
+
* CLASSNAME##_c1_zapper \
|
|
1016
|
+
* \
|
|
1017
|
+
* A function which can delete a CLASSNAME element. This is passed to the \
|
|
1018
|
+
* generic deep_clear list member function so that when a list is cleared the \
|
|
1019
|
+
* elements on the list are properly destroyed from the base class, even \
|
|
1020
|
+
* though we dont use a virtual destructor function. \
|
|
1021
|
+
**********************************************************************/ \
|
|
1022
|
+
\
|
|
1023
|
+
DLLSYM void CLASSNAME##_c1_zapper( /*delete a link*/ \
|
|
1024
|
+
void* link) /*link to delete*/ \
|
|
1025
|
+
{ \
|
|
1026
|
+
delete (CLASSNAME *) link; \
|
|
1027
|
+
} \
|
|
1028
|
+
\
|
|
1029
|
+
\
|
|
1030
|
+
\
|
|
1031
|
+
/*********************************************************************** \
|
|
1032
|
+
* CLASSNAME##_c1_copier \
|
|
1033
|
+
* \
|
|
1034
|
+
* A function which can generate a new, deep copy of a CLASSNAME element. \
|
|
1035
|
+
* This is passed to the generic deep copy list member function so that when \
|
|
1036
|
+
* a list is copied the elements on the list are properly copied from the \
|
|
1037
|
+
* base class, even though we dont use a virtual function. \
|
|
1038
|
+
* \
|
|
1039
|
+
**********************************************************************/ \
|
|
1040
|
+
\
|
|
1041
|
+
DLLSYM void* CLASSNAME##_c1_copier( /*deep copy a link*/ \
|
|
1042
|
+
void* old_element) /*source link*/ \
|
|
1043
|
+
{ \
|
|
1044
|
+
CLASSNAME* new_element; \
|
|
1045
|
+
\
|
|
1046
|
+
new_element = new CLASSNAME; \
|
|
1047
|
+
*new_element = *((CLASSNAME*) old_element); \
|
|
1048
|
+
return (void*) new_element; \
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
#define CLISTIZE_S( CLASSNAME ) \
|
|
1052
|
+
\
|
|
1053
|
+
CLISTIZE( CLASSNAME ) \
|
|
1054
|
+
\
|
|
1055
|
+
/*********************************************************************** \
|
|
1056
|
+
* CLASSNAME##_c1_serialiser \
|
|
1057
|
+
* \
|
|
1058
|
+
* A function which can serialise an element \
|
|
1059
|
+
* This is passed to the generic dump member function so that when a list is \
|
|
1060
|
+
* serialised the elements on the list are properly serialised. \
|
|
1061
|
+
**********************************************************************/ \
|
|
1062
|
+
\
|
|
1063
|
+
DLLSYM void CLASSNAME##_c1_serialiser( \
|
|
1064
|
+
FILE* f, \
|
|
1065
|
+
void* element) \
|
|
1066
|
+
{ \
|
|
1067
|
+
((CLASSNAME*) element)->serialise( f ); \
|
|
1068
|
+
} \
|
|
1069
|
+
\
|
|
1070
|
+
\
|
|
1071
|
+
\
|
|
1072
|
+
/*********************************************************************** \
|
|
1073
|
+
* CLASSNAME##_c1_de_serialiser \
|
|
1074
|
+
* \
|
|
1075
|
+
* A function which can de-serialise an element \
|
|
1076
|
+
* This is passed to the generic de-dump member function so that when a list \
|
|
1077
|
+
* is de-serialised the elements on the list are properly de-serialised. \
|
|
1078
|
+
**********************************************************************/ \
|
|
1079
|
+
\
|
|
1080
|
+
DLLSYM void* CLASSNAME##_c1_de_serialiser( \
|
|
1081
|
+
FILE* f) \
|
|
1082
|
+
{ \
|
|
1083
|
+
return CLASSNAME::de_serialise( f ); \
|
|
1084
|
+
}
|
|
1085
|
+
#endif
|