xml-copy-editor-code/src/housestyle.h

62 lines
1.6 KiB
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef HOUSESTYLE_H
#define HOUSESTYLE_H
#include <string>
#include <vector>
#include <set>
#include <map>
#include <utility>
#include <boost/shared_ptr.hpp>
#include "stringset.h"
#include "contexthandler.h"
#include "xmlrulereader.h"
#include "housestylereader.h"
#include "xmlfilterreader.h"
#include "spellcheck.h"
#include "casehandler.h"
class HouseStyle
{
2007-09-08 00:25:30 +02:00
public:
HouseStyle (
const std::string& bufferParameter,
const std::string& ruleDirectoryParameter,
const std::string& ruleFileParameter,
const std::string& filterDirectoryParameter,
const std::string& filterFileParameter,
const std::string& pathSeparatorParameter,
int contextRangeParameter );
2007-09-07 23:17:30 +02:00
~HouseStyle();
bool createReport();
std::string getLastError();
std::vector<ContextMatch> getMatchVector();
2007-09-08 00:25:30 +02:00
private:
2007-09-07 23:17:30 +02:00
std::string
2007-09-08 00:25:30 +02:00
buffer,
ruleDirectory,
ruleFile,
filterDirectory,
filterFile,
pathSeparator,
error;
2007-09-07 23:17:30 +02:00
int contextRange;
boost::shared_ptr<std::vector<boost::shared_ptr<Rule> > > ruleVector;
std::map<std::string, std::map<std::string, std::set<std::string> > >
2007-09-08 00:25:30 +02:00
filterMap;
2007-09-07 23:17:30 +02:00
std::vector<ContextMatch> matchVector;
boost::shared_ptr<StringSet<char> > dictionary, passiveDictionary;
2007-09-08 00:25:30 +02:00
void collectFilter (
std::string& fileName,
std::set<std::string>& excludeSet,
int *filterCount );
void collectRules (
string& fileName,
boost::shared_ptr<std::vector<boost::shared_ptr<Rule> > > ruleVector,
std::set<string>& excludeSet,
int *ruleCount );
2007-09-07 23:17:30 +02:00
int updateFilter();
int updateRules();
};
#endif