The SWORD Project  1.9.0.svnversion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
zcom4.h
Go to the documentation of this file.
1 /******************************************************************************
2  *
3  * zcom4.h - class zCom4: a module driver for compressed commentaries
4  * with long entries. Allows a 4 byte size entry
5  *
6  * $Id: zcom4.h 3786 2020-08-30 11:35:14Z scribe $
7  *
8  * Copyright 1996-2014 CrossWire Bible Society (http://www.crosswire.org)
9  * CrossWire Bible Society
10  * P. O. Box 2528
11  * Tempe, AZ 85280-2528
12  *
13  * This program is free software; you can redistribute it and/or modify it
14  * under the terms of the GNU General Public License as published by the
15  * Free Software Foundation version 2.
16  *
17  * This program is distributed in the hope that it will be useful, but
18  * WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  * General Public License for more details.
21  *
22  */
23 
24 #ifndef ZCOM4_H
25 #define ZCOM4_H
26 
27 #include <swcom.h>
28 
29 #include <defs.h>
30 
32 
33 class SWDLLEXPORT zCom4 : public zVerse4, public SWCom {
34 
35 private:
37  bool sameBlock(VerseKey * lastWriteKey, VerseKey * key);
38  int blockType;
39 
40 
41 public:
42  zCom4(const char *ipath, const char *iname = 0, const char *idesc = 0,
43  int blockType = CHAPTERBLOCKS, SWCompress *icomp = 0,
44  SWDisplay *idisp = 0, SWTextEncoding encoding = ENC_UNKNOWN,
46  SWTextMarkup markup = FMT_UNKNOWN, const char *ilang = 0,
47  const char *versification = "KJV");
48  virtual ~zCom4();
49  virtual SWBuf &getRawEntryBuf() const;
50  virtual void increment(int steps = 1);
51  virtual void decrement(int steps = 1) { increment(-steps); }
52 
53  // write interface ----------------------------
54  virtual bool isWritable() const;
55  static char createModule(const char *path, int blockBound, const char *v11n = "KJV") {
56  return zVerse4::createModule(path, blockBound, v11n);
57  }
58  virtual void setEntry(const char *inbuf, long len = -1); // Modify current module entry
59  virtual void linkEntry(const SWKey * linkKey); // Link current module entry to other module entry
60  virtual void deleteEntry(); // Delete current module entry
61  // end write interface ------------------------
62 
63  virtual void rawZFilter(SWBuf &buf, char direction = 0) const { rawFilter(buf, (SWKey *)(long)direction); }// hack, use key as direction for enciphering
64 
65  // swcacher interface ----------------------
66  virtual void flush() { flushCache(); }
67  // end swcacher interface ----------------------
68 
69  virtual bool isLinked(const SWKey *k1, const SWKey *k2) const;
70  virtual bool hasEntry(const SWKey *k) const;
71 
73 
74 };
75 
77 
78 #endif
#define SWTextEncoding
Definition: swmodule.h:78
virtual void rawZFilter(SWBuf &buf, char direction=0) const
Definition: zcom4.h:63
Definition: zcom4.h:33
#define SWORD_NAMESPACE_START
Definition: defs.h:39
Definition: swbuf.h:47
int blockType
Definition: zcom4.h:38
#define SWDLLEXPORT
Definition: defs.h:171
virtual void rawFilter(SWBuf &buf, const SWKey *key) const
Definition: swmodule.h:716
virtual void deleteEntry()
Definition: swmodule.h:525
virtual void decrement(int steps=1)
Definition: zcom4.h:51
static char createModule(const char *path, int blockBound, const char *v11n="KJV")
Definition: zcom4.h:55
virtual void setEntry(const char *inbuf, long len=-1)
Definition: swmodule.cpp:1680
SWBuf v11n
Definition: osis2mod.cpp:107
static char createModule(const char *path, int blockBound, const char *v11n="KJV")
Definition: zverse4.cpp:420
#define CHAPTERBLOCKS
Definition: zverse.h:59
virtual bool isLinked(const SWKey *, const SWKey *) const
Definition: swmodule.h:808
virtual void linkEntry(const SWKey *sourceKey)
Definition: swmodule.cpp:1683
virtual bool isWritable() const
Definition: swmodule.h:506
virtual bool hasEntry(const SWKey *) const
Definition: swmodule.h:809
virtual void increment(int steps=1)
Definition: swmodule.cpp:355
Definition: swcom.h:49
virtual SWBuf & getRawEntryBuf() const =0
#define SWMODULE_OPERATORS
Definition: swmodule.h:54
void flushCache() const
Definition: zverse4.cpp:337
virtual void flush()
Definition: zcom4.h:66
#define SWTextDirection
Definition: swmodule.h:77
#define SWORD_NAMESPACE_END
Definition: defs.h:40
VerseKey * lastWriteKey
Definition: zcom4.h:36
Definition: swkey.h:77
#define SWTextMarkup
Definition: swmodule.h:79