source: branches/New_Config_Format-branch/gsdl/src/mgpp/text/TextGet.h@ 1279

Last change on this file since 1279 was 1279, checked in by sjboddie, 24 years ago

merged changes to trunk into New_Config_Format branch

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/**************************************************************************
2 *
3 * TextGet.h -- Decompressing the text
4 * Copyright (C) 1999 Rodger McNab
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * $Id: TextGet.h 1279 2000-07-12 22:21:53Z sjboddie $
21 *
22 **************************************************************************/
23
24#ifndef TEXTGET_H
25#define TEXTGET_H
26
27#include "text.h"
28#include "FText.h"
29
30
31class TextData {
32public:
33 compression_dict cd;
34 FILE *textFile;
35 FILE *textIdxFile;
36 compressed_text_header cth;
37 FTextLevel levels;
38
39 TextData ();
40 void Clear ();
41
42 // loads compression dictionary, the compressed text header,
43 // and all level informaiton
44 bool LoadData (char *basepath, char *textname);
45 bool UnloadData ();
46};
47
48
49// note: document numbers start at 1
50
51// get information about where a document starts and finishes
52bool GetDocIdx (TextData &td, const UCArray &docLevel,
53 unsigned long docNum, TextIdx &docIdx);
54
55
56// decompress a document's text
57bool GetDocText (TextData &td, const UCArray &docLevel,
58 unsigned long docNum, UCArray &docText);
59
60#endif
Note: See TracBrowser for help on using the repository browser.