CL-CHMLIB

Summary

CL-CHMLIB is a small Common Lisp bindings set for the chmlib C library, using CFFI. It provides access to all the public API provided by this library. It is released with a LGPL license.

It was developped and tested under SBCL 0.9.12 with Linux kernel 2.6. It also works with CMUCL 19c. It doesn't works under CLISP, LispWorks nor Allegro CL (because CFFI doesn't appear to support 64 bits integers on these implementations.)

From the chmlib homepage:

chmlib was created by Jed Wing.

Changelogs

Installation

You can find the latest release here: cl-chmlib-latest.tar.gz.

CL-CHMLIB use ASDF, so please refer to it for installation procedure.

Basically, you just have to uncompress the source then create a symbolic link in your project pointing at the chmlib.asd file (and optionnaly chmlib-examples.asd), then use:

(asdf:oos 'asdf:load-op 'chmlib)

or alternatively, if your Common Lisp implementation allows it:

(require 'chmlib)

Summary

To work with a CHM:

(with-chm (<var> <filename>) <body>)

To get information about an objet:

(chm-object-info <chm> <path>)

To retrieve an object:

(chm-retrieve-object <chm> <path>)

Two functions allows to enumerate objects:

(chm-enumerate <chm> <what> <callback>)
(chm-enumerate-directory <chm> <prefix> <what> <callback>)

where <callback> is a function which take one parameter, and must return NIL to stop enumeration.

Examples

CL-USER> (require 'chmlib-examples)
CL-USER> (use-package 'chmlib-examples)
CL-USER> (use-package 'chmlib)
CL-USER> (chm-enumdir "sapi.chm")
/:
 spc     start    length type           name
 ===     =====    ====== ====           ====
   1   8560149      4096 special files  /#IDXHDR
   0         0         0 special files  /#ITBITS
   1   8644838     34113 special files  /#STRINGS
[..]
   1   1674334      3459 normal files   /XML_GrmFmt_topnode.htm
   1   1818569     12988 normal files   /XML_GrmFmt_Using_Grammars.htm
   1   2498825     28582 normal files   /XML_Japanese_Context_Tag.htm
   1   2434560      9699 normal files   /XML_Synthesis_Markup.htm
   1   2431695      2865 normal files   /XML_Synthesis_topnode.htm
NIL
CL-USER> (with-chm (chm "sapi.chm")
           (print (sb-ext:octets-to-string
                    (chm-retrieve-object chm "/Welcome.htm"
                                         :offset 140 :length 51)))
           (values))
"<TITLE>Welcome to the Microsoft Speech SDK </TITLE>" 
; No value
CL-USER> 
Note that this example now use sb-ext:octets-to-string (specific to the SBCL implementation) to print the object because chm-retrieve-object returns an array of (unsigned-byte 8) since version 0.1.2, unlike previous versions that returned a string instead. But since the encoding is unspecified, it is now the responsability of the user to translate the octets to a string accordingly to the encoding of the CHM.

Author

Frederic Jolliton made the initial release.

Last update: May 27, 2006