WordContext man page on DragonFly

Man page or keyword search:  
man Server   44335 pages
apropos Keyword Search (all sections)
Output format
DragonFly logo
[printable version]


WordContext(3)							WordContext(3)

NAME
       WordContext -

       read configuration and setup mifluz context.

SYNOPSIS
       #include <mifluz.h>

       WordContext context;

DESCRIPTION
       The  WordContext	 object	 must  be the first object created.  All other
       objects (WordList, WordReference, WordKey and WordRecord) are allocated
       via  the	 corresponding	methods	 of  WordContext  (List, Word, Key and
       Record respectively).

       The WordContext object contains a Configuration object that  holds  the
       configuration  parameters  used	by  the	 instance.  If a configuration
       parameter is changed, the ReInitialize method should be called to  take
       them in account.

CONFIGURATION
       For  more  information  on  the configuration attributes and a complete
       list of attributes, see the mifluz(3) manual page.

       wordlist_monitor {true|false} (default false)
	      If true create a WordMonitor instance to gather  statistics  and
	      build reports.

METHODS
       WordContext()
	      Constructor. Read the configuration parameters from the environ‐
	      ment.  If the environment variable MIFLUZ_CONFIG	is  set	 to  a
	      pathname,	 read  it as a configuration file. If MIFLUZ_CONFIG is
	      not set,	try  to	 read  the  ~/.mifluz  configuration  file  or
	      /usr/etc/mifluz.conf manual page for a complete list of the con‐
	      figuration attributes.

       WordContext(const Configuration &config)
	      Constructor. The config argument must contain all the configura‐
	      tion  parameters, no configuration file is loaded from the envi‐
	      ronment.

       WordContext(const ConfigDefaults *array)
	      Constructor. The array argument holds  configuration  parameters
	      that  will  override  their equivalent in the configuration file
	      read from the environment.

       void Initialize(const Configuration &config)
	      Initialize the WordContext object.  This	method	is  called  by
	      every constructor.

	      When  calling Initialize a second time, one must ensure that all
	      WordList and WordCursor objects have  been  destroyed.  WordList
	      and WordCursor internal state depends on the current WordContext
	      that will be lost by a second call.

	      For those interested by the internals, the  Initialize  function
	      maintains	 a  Berkeley  DB environment (DB_ENV) in the following
	      way:

	      First invocation:
	      Initialize -> new DB_ENV (thru WordDBInfo)

	      Second invocation:
	      Initialize -> delete DB_ENV -> new DB_ENV (thru WordDBInfo)

       int Initialize(const ConfigDefaults* config_defaults = 0)
	      Initialize the WordContext object.  Build a Configuration object
	      from  the file pointed to by the MIFLUZ_CONFIG environment vari‐
	      able or ~/.mifluz or /usr/etc/mifluz.conf.  The  config_defaults
	      argument,	 if  provided,	is  passed to the Configuration object
	      using the Defaults method.  The  Initialize(const	 Configuration
	      &)  method is then called with the Configuration object.	Return
	      OK if success, NOTOK  otherwise.	 Refer	to  the	 Configuration
	      description for more information.

       int ReInitialize()
	      Destroy  internal	 state	except	the  Configuration  object and
	      rebuild it. May be used when the	configuration  is  changed  to
	      take these changes in account.  Return OK if success, NOTOK oth‐
	      erwise.

       const WordType& GetType() const
	      Return the WordType data member  of  the	current	 object	 as  a
	      const.

       WordType& GetType()
	      Return the WordType data member of the current object.

       const WordKeyInfo& GetKeyInfo() const
	      Return  the  WordKeyInfo	data member of the current object as a
	      const.

       WordKeyInfo& GetKeyInfo()
	      Return the WordKeyInfo data member of the current object.

       const WordRecordInfo& GetRecordInfo() const
	      Return the WordRecordInfo data member of the current object as a
	      const.

       WordRecordInfo& GetRecordInfo()
	      Return the WordRecordInfo data member of the current object.

       const WordDBInfo& GetDBInfo() const
	      Return  the  WordDBInfo  data  member of the current object as a
	      const.

       WordDBInfo& GetDBInfo()
	      Return the WordDBInfo data member of the current object.

       const WordMonitor* GetMonitor() const
	      Return the WordMonitor data member of the current	 object	 as  a
	      const.  The pointer may be NULL if the word_monitor attribute is
	      false.

       WordMonitor* GetMonitor()
	      Return the WordMonitor data member of the current	 object.   The
	      pointer may be NULL if the word_monitor attribute is false.

       const Configuration& GetConfiguration() const
	      Return  the Configuration data member of the current object as a
	      const.

       Configuration& GetConfiguration()
	      Return the Configuration data member of the current object.

       WordList* List()
	      Return a new WordList object, using  the	WordList(WordContext*)
	      constructor.  It	is  the responsibility of the caller to delete
	      this object before the WordContext object is deleted.  Refer  to
	      the  wordlist_multi  configuration  parameter  to know the exact
	      type of the object created.

       WordReference* Word()
	      Return a new WordReference object, using the WordReference(Word‐
	      Context*) constructor. It is the responsibility of the caller to
	      delete this object before the WordContext object is deleted.

       WordReference* Word(const String& key0, const String& record0)
	      Return a new WordReference object, using the WordReference(Word‐
	      Context*,	 const	String&, const& String) constructor. It is the
	      responsibility of the caller to delete this  object  before  the
	      WordContext object is deleted.

       WordReference* Word(const String& word)
	      Return a new WordReference object, using the WordReference(Word‐
	      Context*, const String&) constructor. It is  the	responsibility
	      of  the  caller  to  delete  this	 object before the WordContext
	      object is deleted.

       WordRecord* Record()
	      Return a new WordRecord object,  using  the  WordRecord(WordCon‐
	      text*)  constructor.  It	is the responsibility of the caller to
	      delete this object before the WordContext object is deleted.

       WordKey* Key()
	      Return a new WordKey  object,  using  the	 WordKey(WordContext*)
	      constructor.  It	is  the responsibility of the caller to delete
	      this object before the WordContext object is deleted.

       WordKey* Key(const String& word)
	      Return a new WordKey  object,  using  the	 WordKey(WordContext*,
	      const  String&)  constructor.  It	 is  the responsibility of the
	      caller to delete this object before the  WordContext  object  is
	      deleted.

       WordKey* Key(const WordKey& other)
	      Return  a	 new  WordKey  object, using the WordKey(WordContext*,
	      const WordKey&) constructor. It is  the  responsibility  of  the
	      caller  to  delete  this object before the WordContext object is
	      deleted.

       static String ConfigFile()
	      Return the full pathname of the configuration file. The configu‐
	      ration  file  lookup  first searches for the file pointed by the
	      MIFLUZ_CONFIG environment variable then  ~/.mifluz  and  finally
	      /usr/etc/mifluz.conf return the empty string.

ENVIRONMENT
       MIFLUZ_CONFIG  file  name of configuration file read by WordContext(3).
       Defaults to ~/.mifluz.  or /usr/etc/mifluz.conf

AUTHORS
       Loic Dachary loic@gnu.org

       The Ht://Dig group http://dev.htdig.org/

SEE ALSO
       htdb_dump(1), htdb_stat(1), htdb_load(1), mifluzdump(1), mifluzload(1),
       mifluzsearch(1),	  mifluzdict(1),  WordList(3),	WordDict(3),  WordLis‐
       tOne(3), WordKey(3), WordKeyInfo(3), WordType(3),  WordDBInfo(3),  Wor‐
       dRecordInfo(3),	WordRecord(3),	WordReference(3), WordCursor(3), Word‐
       CursorOne(3), WordMonitor(3), Configuration(3), mifluz(3)

				     local			WordContext(3)
[top]

List of man pages available for DragonFly

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net