Dictionary.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:3k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: Dictionary.h,v 1.14.2.2 2004/07/07 12:04:47 mike Exp $
  29.  * 
  30.  */
  31. #if !defined(AFX_DICTIONARY_H__C28A6875_F537_4ED2_9B6B_1B37FDC74AAD__INCLUDED_)
  32. #define AFX_DICTIONARY_H__C28A6875_F537_4ED2_9B6B_1B37FDC74AAD__INCLUDED_
  33. #if _MSC_VER > 1000
  34. #pragma once
  35. #endif // _MSC_VER > 1000
  36. // Dictionary interface
  37. class IDict {
  38. public:
  39.   virtual ~IDict() { }
  40.   virtual int   NumWords() = 0;
  41.   virtual Buffer<wchar_t> GetWordW(int index) = 0;
  42.   virtual bool   Find(const wchar_t *word,int& index,int& found) = 0;
  43.   virtual bool   Valid() = 0;
  44.   virtual int   GetStartPofWord(int index) = 0;
  45.   virtual int   GetWordFromP(int para) = 0;
  46.   virtual int   GetNumP() = 0;
  47.   CString   GetWord(int index);
  48.   static IDict *Create(const CString& filename,CString *errmsg=NULL);
  49.   enum { SIGSIZE=4 };
  50.   class DictInit {
  51.     DictInit       *m_next;
  52.     char       m_sig[SIGSIZE];
  53.     IDict       *(*m_create)(RFile *fp);
  54.     static DictInit   *m_head;
  55.     friend class IDict;
  56.   protected:
  57.     DictInit(const char *sig,IDict *(*create)(RFile *fp));
  58.   };
  59. };
  60. class DictParser: public TextParser {
  61. kilo::auto_ptr<IDict> m_dict;
  62.   DictParser(kilo::auto_ptr<IDict> dict) : TextParser(NULL,NULL,NULL,NULL), m_dict(dict) { }
  63.   Buffer<wchar_t> GetParagraphImp(int para,bool& isfirst);
  64. public:
  65.   // paragraphs
  66.   virtual Paragraph GetParagraph(int docid,int para);
  67.   virtual int GetPLength(int docid,int para);
  68.   virtual int Length(int docid) { return m_dict->GetNumP(); }
  69.   virtual int GetPStart(int docid,int para) { return para; }
  70.   virtual int GetTotalLength(int docid) { return Length(docid); }
  71.   virtual int LookupParagraph(int docid,int charpos) { return charpos; }
  72.   // links
  73.   virtual bool LookupReference(const wchar_t *rname,FilePos& dest);
  74.   // create
  75.   static DictParser *OpenDict(const CString& path,CString *errmsg=NULL);
  76. };
  77. #endif // !defined(AFX_DICTIONARY_H__C28A6875_F537_4ED2_9B6B_1B37FDC74AAD__INCLUDED_)