[//000000001]: # (doctools::idx::import \- Documentation tools) [//000000002]: # (Generated from file 'idx\_import\.man' by tcllib/doctools with format 'markdown') [//000000003]: # (Copyright © 2009\-2019 Andreas Kupries ) [//000000004]: # (doctools::idx::import\(n\) 0\.2\.1 tcllib "Documentation tools")
[ Main Table Of Contents | Table Of Contents | Keyword Index | Categories | Modules | Applications ]
# NAME doctools::idx::import \- Importing keyword indices # Table Of Contents - [Table Of Contents](#toc) - [Synopsis](#synopsis) - [Description](#section1) - [Concepts](#section2) - [API](#section3) - [Package commands](#subsection1) - [Object command](#subsection2) - [Object methods](#subsection3) - [Import plugin API v2 reference](#section4) - [Keyword index serialization format](#section5) - [Bugs, Ideas, Feedback](#section6) - [Keywords](#keywords) - [Category](#category) - [Copyright](#copyright) # SYNOPSIS package require doctools::idx::import ?0\.2\.1? package require Tcl 8\.4 package require struct::map package require doctools::idx::structure package require snit package require pluginmgr [__::doctools::idx::import__ *objectName*](#1) [__objectName__ __method__ ?*arg arg \.\.\.*?](#2) [*objectName* __destroy__](#3) [*objectName* __import text__ *text* ?*format*?](#4) [*objectName* __import file__ *path* ?*format*?](#5) [*objectName* __import object text__ *object* *text* ?*format*?](#6) [*objectName* __import object file__ *object* *path* ?*format*?](#7) [*objectName* __config names__](#8) [*objectName* __config get__](#9) [*objectName* __config set__ *name* ?*value*?](#10) [*objectName* __config unset__ *pattern*\.\.\.](#11) [*objectName* __includes__](#12) [*objectName* __include add__ *path*](#13) [*objectName* __include remove__ *path*](#14) [*objectName* __include clear__](#15) [__IncludeFile__ *currentfile* *path*](#16) [__[import](\.\./\.\./\.\./\.\./index\.md\#import)__ *text* *configuration*](#17) # DESCRIPTION This package provides a class to manage the plugins for the import of keyword indices from other formats, i\.e\. their conversion from, for example *[docidx](\.\./\.\./\.\./\.\./index\.md\#docidx)*, *[json](\.\./\.\./\.\./\.\./index\.md\#json)*, etc\. This is one of the three public pillars the management of keyword indices resides on\. The other two pillars are 1. *[Exporting keyword indices](idx\_export\.md)*, and 1. *[Holding keyword indices](idx\_container\.md)* For information about the [Concepts](#section2) of keyword indices, and their parts, see the same\-named section\. For information about the data structure which is the major output of the manager objects provided by this package see the section [Keyword index serialization format](#section5)\. The plugin system of our class is based on the package __[pluginmgr](\.\./pluginmgr/pluginmgr\.md)__, and configured to look for plugins using 1. the environment variable __DOCTOOLS\_IDX\_IMPORT\_PLUGINS__, 1. the environment variable __DOCTOOLS\_IDX\_PLUGINS__, 1. the environment variable __DOCTOOLS\_PLUGINS__, 1. the path "~/\.doctools/idx/import/plugin" 1. the path "~/\.doctools/idx/plugin" 1. the path "~/\.doctools/plugin" 1. the path "~/\.doctools/idx/import/plugins" 1. the path "~/\.doctools/idx/plugins" 1. the path "~/\.doctools/plugins" 1. the registry entry "HKEY\_CURRENT\_USER\\SOFTWARE\\DOCTOOLS\\IDX\\IMPORT\\PLUGINS" 1. the registry entry "HKEY\_CURRENT\_USER\\SOFTWARE\\DOCTOOLS\\IDX\\PLUGINS" 1. the registry entry "HKEY\_CURRENT\_USER\\SOFTWARE\\DOCTOOLS\\PLUGINS" The last three are used only when the package is run on a machine using Windows\(tm\) operating system\. The whole system is delivered with two predefined import plugins, namely - docidx See *[docidx import plugin](import\_docidx\.md)* for details\. - json See *json import plugin* for details\. Readers wishing to write their own import plugin for some format, i\.e\. *plugin writer*s reading and understanding the section containing the [Import plugin API v2 reference](#section4) is an absolute necessity, as it specifies the interaction between this package and its plugins in detail\. # Concepts 1. A *[keyword index](\.\./\.\./\.\./\.\./index\.md\#keyword\_index)* consists of a \(possibly empty\) set of *[keywords](\.\./\.\./\.\./\.\./index\.md\#keywords)*\. 1. Each keyword in the set is identified by its name\. 1. Each keyword has a \(possibly empty\) set of *references*\. 1. A reference can be associated with more than one keyword\. 1. A reference not associated with at least one keyword is not possible however\. 1. Each reference is identified by its target, specified as either an url or symbolic filename, depending on the type of reference \(__url__, or __manpage__\)\. 1. The type of a reference \(url, or manpage\) depends only on the reference itself, and not the keywords it is associated with\. 1. In addition to a type each reference has a descriptive label as well\. This label depends only on the reference itself, and not the keywords it is associated with\. A few notes 1. Manpage references are intended to be used for references to the documents the index is made for\. Their target is a symbolic file name identifying the document, and export plugins may replace symbolic with actual file names, if specified\. 1. Url references are intended on the othre hand are inteded to be used for links to anything else, like websites\. Their target is an url\. 1. While url and manpage references share a namespace for their identifiers, this should be no problem, given that manpage identifiers are symbolic filenames and as such they should never look like urls, the identifiers for url references\. # API ## Package commands - __::doctools::idx::import__ *objectName* This command creates a new import manager object with an associated Tcl command whose name is *objectName*\. This *[object](\.\./\.\./\.\./\.\./index\.md\#object)* command is explained in full detail in the sections [Object command](#subsection2) and [Object methods](#subsection3)\. The object command will be created under the current namespace if the *objectName* is not fully qualified, and in the specified namespace otherwise\. ## Object command All objects created by the __::doctools::idx::import__ command have the following general form: - __objectName__ __method__ ?*arg arg \.\.\.*? The method __method__ and its *arg*'uments determine the exact behavior of the command\. See section [Object methods](#subsection3) for the detailed specifications\. ## Object methods - *objectName* __destroy__ This method destroys the object it is invoked for\. - *objectName* __import text__ *text* ?*format*? This method takes the *text* and converts it from the specified *format* to the canonical serialization of a keyword index using the import plugin for the format\. An error is thrown if no plugin could be found for the format\. The serialization generated by the conversion process is returned as the result of this method\. If no format is specified the method defaults to __docidx__\. The specification of what a *canonical* serialization is can be found in the section [Keyword index serialization format](#section5)\. The plugin has to conform to the interface specified in section [Import plugin API v2 reference](#section4)\. - *objectName* __import file__ *path* ?*format*? This method is a convenient wrapper around the __import text__ method described by the previous item\. It reads the contents of the specified file into memory, feeds the result into __import text__ and returns the resulting serialization as its own result\. - *objectName* __import object text__ *object* *text* ?*format*? This method is a convenient wrapper around the __import text__ method described by the previous item\. It expects that *object* is an object command supporting a __deserialize__ method expecting the canonical serialization of a keyword index\. It imports the text using __import text__ and then feeds the resulting serialization into the *object* via __deserialize__\. This method returns the empty string as it result\. - *objectName* __import object file__ *object* *path* ?*format*? This method behaves like __import object text__, except that it reads the text to convert from the specified file instead of being given it as argument\. - *objectName* __config names__ This method returns a list containing the names of all configuration variables currently known to the object\. - *objectName* __config get__ This method returns a dictionary containing the names and values of all configuration variables currently known to the object\. - *objectName* __config set__ *name* ?*value*? This method sets the configuration variable *name* to the specified *value* and returns the new value of the variable\. If no value is specified it simply returns the current value, without changing it\. Note that while the user can set the predefined configuration variables __user__ and __format__ doing so will have no effect, these values will be internally overridden when invoking an import plugin\. - *objectName* __config unset__ *pattern*\.\.\. This method unsets all configuration variables matching the specified glob *pattern*s\. If no pattern is specified it will unset all currently defined configuration variables\. - *objectName* __includes__ This method returns a list containing the currently specified paths to use to search for include files when processing input\. The order of paths in the list corresponds to the order in which they are used, from first to last, and also corresponds to the order in which they were added to the object\. - *objectName* __include add__ *path* This methods adds the specified *path* to the list of paths to use to search for include files when processing input\. The path is added to the end of the list, causing it to be searched after all previously added paths\. The result of the command is the empty string\. The method does nothing if the path is already known\. - *objectName* __include remove__ *path* This methods removes the specified *path* from the list of paths to use to search for include files when processing input\. The result of the command is the empty string\. The method does nothing if the path is not known\. - *objectName* __include clear__ This method clears the list of paths to use to search for include files when processing input\. The result of the command is the empty string\. # Import plugin API v2 reference Plugins are what this package uses to manage the support for any input format beyond the [Keyword index serialization format](#section5)\. Here we specify the API the objects created by this package use to interact with their plugins\. A plugin for this package has to follow the rules listed below: 1. A plugin is a package\. 1. The name of a plugin package has the form doctools::idx::import::__FOO__, where __FOO__ is the name of the format the plugin will generate output for\. This name is also the argument to provide to the various __import__ methods of import manager objects to get a string encoding a keyword index in that format\. 1. The plugin can expect that the package __doctools::idx::export::plugin__ is present, as indicator that it was invoked from a genuine plugin manager\. 1. The plugin can expect that a command named __IncludeFile__ is present, with the signature - __IncludeFile__ *currentfile* *path* This command has to be invoked by the plugin when it has to process an included file, if the format has the concept of such\. An example of such a format would be *[docidx](\.\./\.\./\.\./\.\./index\.md\#docidx)*\. The plugin has to supply the following arguments * string *currentfile* The path of the file it is currently processing\. This may be the empty string if no such is known\. * string *path* The path of the include file as specified in the include directive being processed\. The result of the command will be a 5\-element list containing 1) A boolean flag indicating the success \(__True__\) or failure \(__False__\) of the operation\. 1) In case of success the contents of the included file, and the empty string otherwise\. 1) The resolved, i\.e\. absolute path of the included file, if possible, or the unchanged *path* argument\. This is for display in an error message, or as the *currentfile* argument of another call to __IncludeFile__ should this file contain more files\. 1) In case of success an empty string, and for failure a code indicating the reason for it, one of * notfound The specified file could not be found\. * notread The specified file was found, but not be read into memory\. 1) An empty string in case of success of a __notfound__ failure, and an additional error message describing the reason for a __notread__ error in more detail\. 1. A plugin has to provide one command, with the signature shown below\. - __[import](\.\./\.\./\.\./\.\./index\.md\#import)__ *text* *configuration* Whenever an import manager of __[doctools::idx](idx\_container\.md)__ has to parse input for an index it will invoke this command\. * string *text* This argument will contain the text encoding the index per the format the plugin is for\. * dictionary *configuration* This argument will contain the current configuration to apply to the parsing, as a dictionary mapping from variable names to values\. The following configuration variables have a predefined meaning all plugins have to obey, although they can ignore this information at their discretion\. Any other other configuration variables recognized by a plugin will be described in the manpage for that plugin\. + user This variable is expected to contain the name of the user owning the process invoking the plugin\. + format This variable is expected to contain the name of the format whose plugin is invoked\. 1. A single usage cycle of a plugin consists of the invokations of the command __[import](\.\./\.\./\.\./\.\./index\.md\#import)__\. This call has to leave the plugin in a state where another usage cycle can be run without problems\. # Keyword index serialization format Here we specify the format used by the doctools v2 packages to serialize keyword indices as immutable values for transport, comparison, etc\. We distinguish between *regular* and *canonical* serializations\. While a keyword index may have more than one regular serialization only exactly one of them will be *canonical*\. - regular serialization 1. An index serialization is a nested Tcl dictionary\. 1. This dictionary holds a single key, __doctools::idx__, and its value\. This value holds the contents of the index\. 1. The contents of the index are a Tcl dictionary holding the title of the index, a label, and the keywords and references\. The relevant keys and their values are * __title__ The value is a string containing the title of the index\. * __label__ The value is a string containing a label for the index\. * __keywords__ The value is a Tcl dictionary, using the keywords known to the index as keys\. The associated values are lists containing the identifiers of the references associated with that particular keyword\. Any reference identifier used in these lists has to exist as a key in the __references__ dictionary, see the next item for its definition\. * __references__ The value is a Tcl dictionary, using the identifiers for the references known to the index as keys\. The associated values are 2\-element lists containing the type and label of the reference, in this order\. Any key here has to be associated with at least one keyword, i\.e\. occur in at least one of the reference lists which are the values in the __keywords__ dictionary, see previous item for its definition\. 1. The *[type](\.\./\.\./\.\./\.\./index\.md\#type)* of a reference can be one of two values, * __manpage__ The identifier of the reference is interpreted as symbolic file name, referring to one of the documents the index was made for\. * __url__ The identifier of the reference is interpreted as an url, referring to some external location, like a website, etc\. - canonical serialization The canonical serialization of a keyword index has the format as specified in the previous item, and then additionally satisfies the constraints below, which make it unique among all the possible serializations of the keyword index\. 1. The keys found in all the nested Tcl dictionaries are sorted in ascending dictionary order, as generated by Tcl's builtin command __lsort \-increasing \-dict__\. 1. The references listed for each keyword of the index, if any, are listed in ascending dictionary order of their *labels*, as generated by Tcl's builtin command __lsort \-increasing \-dict__\. # Bugs, Ideas, Feedback This document, and the package it describes, will undoubtedly contain bugs and other problems\. Please report such in the category *doctools* of the [Tcllib Trackers](http://core\.tcl\.tk/tcllib/reportlist)\. Please also report any ideas for enhancements you may have for either package and/or documentation\. When proposing code changes, please provide *unified diffs*, i\.e the output of __diff \-u__\. Note further that *attachments* are strongly preferred over inlined patches\. Attachments can be made by going to the __Edit__ form of the ticket immediately after its creation, and then using the left\-most button in the secondary navigation bar\. # KEYWORDS [conversion](\.\./\.\./\.\./\.\./index\.md\#conversion), [docidx](\.\./\.\./\.\./\.\./index\.md\#docidx), [documentation](\.\./\.\./\.\./\.\./index\.md\#documentation), [import](\.\./\.\./\.\./\.\./index\.md\#import), [index](\.\./\.\./\.\./\.\./index\.md\#index), [json](\.\./\.\./\.\./\.\./index\.md\#json), [keyword index](\.\./\.\./\.\./\.\./index\.md\#keyword\_index), [manpage](\.\./\.\./\.\./\.\./index\.md\#manpage), [markup](\.\./\.\./\.\./\.\./index\.md\#markup), [parsing](\.\./\.\./\.\./\.\./index\.md\#parsing), [plugin](\.\./\.\./\.\./\.\./index\.md\#plugin), [reference](\.\./\.\./\.\./\.\./index\.md\#reference), [url](\.\./\.\./\.\./\.\./index\.md\#url) # CATEGORY Documentation tools # COPYRIGHT Copyright © 2009\-2019 Andreas Kupries