The SWORD Project  1.9.0.svnversion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OSISReferenceLinks Class Reference

#include <osisreferencelinks.h>

+ Inheritance diagram for OSISReferenceLinks:
+ Collaboration diagram for OSISReferenceLinks:

Public Member Functions

virtual const char * getHeader () const
 
virtual const char * getOptionName ()
 
virtual const char * getOptionTip ()
 
virtual const char * getOptionValue ()
 
virtual StringList getOptionValues ()
 
bool isBoolean ()
 
 OSISReferenceLinks (const char *optionName, const char *optionTip, const char *type, const char *subType=0, const char *defaultValue="On")
 
virtual char processText (SWBuf &text, const SWKey *key=0, const SWModule *module=0)
 
virtual void setOptionValue (const char *ival)
 
virtual ~OSISReferenceLinks ()
 

Protected Attributes

bool isBooleanVal
 
bool option
 
SWBuf optionValue
 
const char * optName
 
const char * optTip
 
const StringListoptValues
 

Private Attributes

SWBuf optionName
 
SWBuf optionTip
 
SWBuf subType
 
SWBuf type
 

Detailed Description

This Filter hides reference links with a particular type/subtype in an OSIS text

Definition at line 35 of file osisreferencelinks.h.

Constructor & Destructor Documentation

OSISReferenceLinks::OSISReferenceLinks ( const char *  optionName,
const char *  optionTip,
const char *  type,
const char *  subType = 0,
const char *  defaultValue = "On" 
)
Parameters
optionName- name of this option
optionTip- user help tip for this option
type- which reference types to hide
subType- which reference subTypes to hide (optional)
defaultValue- default value of option "On" or "Off" (optional)

Definition at line 43 of file osisreferencelinks.cpp.

44  : SWOptionFilter(),
47  type(type),
48  subType(subType) {
49 
50  optName = this->optionName.c_str();
51  optTip = this->optionTip.c_str();
52  optValues = oValues();
53  setOptionValue(defaultValue);
54 }
static const StringList * oValues()
const char * c_str() const
Definition: swbuf.h:158
const char * optName
Definition: swoptfilter.h:51
virtual void setOptionValue(const char *ival)
Definition: swoptfilter.cpp:52
const char * optTip
Definition: swoptfilter.h:52
const StringList * optValues
Definition: swoptfilter.h:53
OSISReferenceLinks::~OSISReferenceLinks ( )
virtual

Definition at line 57 of file osisreferencelinks.cpp.

57  {
58 }

Member Function Documentation

virtual const char* SWFilter::getHeader ( ) const
inlinevirtualinherited

This method can supply a header associated with the processing done with this filter. A typical example is a suggested CSS style block for classed containers.

Reimplemented in OSISLaTeX, OSISXHTML, ThMLLaTeX, ThMLXHTML, TEIXHTML, GBFLaTeX, and GBFXHTML.

Definition at line 62 of file swfilter.h.

62 { return ""; }
virtual const char* SWOptionFilter::getOptionName ( )
inlinevirtualinherited

gets the name of the option of this filter

Returns
option name

Reimplemented in UTF8Transliterator.

Definition at line 72 of file swoptfilter.h.

72 { return optName; }
const char * optName
Definition: swoptfilter.h:51
virtual const char* SWOptionFilter::getOptionTip ( )
inlinevirtualinherited

gets a short explanation of the option of this filter; it could be presented to the user in frontend programs

Returns
option tip/explanation

Reimplemented in UTF8Transliterator.

Definition at line 78 of file swoptfilter.h.

78 { return optTip; }
const char * optTip
Definition: swoptfilter.h:52
const char * SWOptionFilter::getOptionValue ( )
virtualinherited
Returns
The value of the current option.

Reimplemented in UTF8Transliterator.

Definition at line 62 of file swoptfilter.cpp.

62  {
63  return optionValue;
64 }
SWBuf optionValue
Definition: swoptfilter.h:50
virtual StringList SWOptionFilter::getOptionValues ( )
inlinevirtualinherited

returns a list of the possible option values

Returns
list of option values

Reimplemented in UTF8Transliterator.

Definition at line 84 of file swoptfilter.h.

84 { return *optValues; }
const StringList * optValues
Definition: swoptfilter.h:53
bool SWOptionFilter::isBoolean ( )
inlineinherited

many options are simple Off/On boolean type, and frontends may wish to show these with checkmarks or the like to the end user. This is a convenience method to allow a frontend to check if this filter has only Off/On values

Definition at line 67 of file swoptfilter.h.

67 { return isBooleanVal; }
char OSISReferenceLinks::processText ( SWBuf text,
const SWKey key = 0,
const SWModule module = 0 
)
virtual

This method processes and appropriately modifies the text given it for a particular filter task

Parameters
textThe text to be filtered/converted
keyCurrent key That was used.
moduleCurrent module.
Returns
0

Implements SWFilter.

Definition at line 61 of file osisreferencelinks.cpp.

61  {
62  if (option) return 0;
63 
64  SWBuf token;
65  bool intoken = false;
66  bool stripThisToken = false;
67 
68  SWBuf orig = text;
69  const char *from = orig.c_str();
70 
71  for (text = ""; *from; ++from) {
72  if (*from == '<') {
73  intoken = true;
74  token = "";
75  continue;
76  }
77  else if (*from == '>') { // process tokens
78  intoken = false;
79  if (strncmp(token, "reference", 9) && strncmp(token.c_str(), "/reference", 10)) {
80  text.append('<');
81  text.append(token);
82  text.append('>');
83  }
84  else {
85  XMLTag tag;
86  tag = token;
87  if (!tag.isEndTag() && type == tag.getAttribute("type") && (!subType.size() || subType == tag.getAttribute("subType"))) {
88  stripThisToken = true;
89  continue;
90  }
91  else if (tag.isEndTag() && stripThisToken) {
92  stripThisToken = false;
93  continue;
94  }
95  text.append('<');
96  text.append(token);
97  text.append('>');
98  }
99  continue;
100  }
101 
102  if (intoken) { //copy token
103  token.append(*from);
104  }
105  else { //copy text which is not inside a token
106  text.append(*from);
107  }
108  }
109  return 0;
110 }
Definition: swbuf.h:47
Definition: utilxml.h:38
const char * c_str() const
Definition: swbuf.h:158
SWBuf & append(const char *str, long max=-1)
Definition: swbuf.h:274
unsigned long size() const
Definition: swbuf.h:185
const char * getAttribute(const char *attribName, int partNum=-1, char partSplit= '|') const
Definition: utilxml.cpp:230
bool isEndTag(const char *eID=0) const
Definition: utilxml.cpp:323
void SWOptionFilter::setOptionValue ( const char *  ival)
virtualinherited

sets the value of the option of this filter, e.g maybe a strong's filter might be set to "On" / "Off" - that would mean to show or not to show the strongs in the text, see also getOptionValues()

Parameters
ivalthe new option value

Reimplemented in UTF8Transliterator.

Definition at line 52 of file swoptfilter.cpp.

52  {
53  for (StringList::const_iterator loop = optValues->begin(); loop != optValues->end(); loop++) {
54  if (!stricmp(loop->c_str(), ival)) {
55  optionValue = *loop;
56  option = (!strnicmp(ival, "On", 2)); // convenience for boolean filters
57  break;
58  }
59  }
60 }
int stricmp(const char *s1, const char *s2)
Definition: utilstr.cpp:194
SWBuf optionValue
Definition: swoptfilter.h:50
int strnicmp(const char *s1, const char *s2, int len)
Definition: utilstr.cpp:180
const StringList * optValues
Definition: swoptfilter.h:53

Member Data Documentation

bool SWOptionFilter::isBooleanVal
protectedinherited

Definition at line 55 of file swoptfilter.h.

bool SWOptionFilter::option
protectedinherited

Definition at line 54 of file swoptfilter.h.

SWBuf OSISReferenceLinks::optionName
private

Definition at line 36 of file osisreferencelinks.h.

SWBuf OSISReferenceLinks::optionTip
private

Definition at line 37 of file osisreferencelinks.h.

SWBuf SWOptionFilter::optionValue
protectedinherited

Definition at line 50 of file swoptfilter.h.

const char* SWOptionFilter::optName
protectedinherited

Definition at line 51 of file swoptfilter.h.

const char* SWOptionFilter::optTip
protectedinherited

Definition at line 52 of file swoptfilter.h.

const StringList* SWOptionFilter::optValues
protectedinherited

Definition at line 53 of file swoptfilter.h.

SWBuf OSISReferenceLinks::subType
private

Definition at line 39 of file osisreferencelinks.h.

SWBuf OSISReferenceLinks::type
private

Definition at line 38 of file osisreferencelinks.h.


The documentation for this class was generated from the following files: