1 |
Douglas Thrift |
126 |
// Site Mapper |
2 |
|
|
// |
3 |
|
|
// Douglas Thrift |
4 |
|
|
// |
5 |
|
|
// $Id$ |
6 |
|
|
|
7 |
|
|
#ifndef _SiteMapper_hpp_ |
8 |
|
|
#define _SiteMapper_hpp_ |
9 |
|
|
|
10 |
|
|
#include <iostream> |
11 |
|
|
#include <fstream> |
12 |
|
|
#include <string> |
13 |
Douglas Thrift |
135 |
#include <sstream> |
14 |
Douglas Thrift |
141 |
#include <vector> |
15 |
Douglas Thrift |
143 |
#include <map> |
16 |
Douglas Thrift |
126 |
|
17 |
|
|
using namespace std; |
18 |
|
|
|
19 |
Douglas Thrift |
154 |
#include <menes-xml/document.hpp> |
20 |
|
|
#include <menes-xml/nodeset.hpp> |
21 |
|
|
#include <menes-xml/parse.hpp> |
22 |
|
|
|
23 |
Douglas Thrift |
128 |
extern string program; |
24 |
|
|
extern bool debug; |
25 |
|
|
|
26 |
|
|
#include "Page.hpp" |
27 |
|
|
|
28 |
Douglas Thrift |
126 |
class SiteMapper |
29 |
|
|
{ |
30 |
|
|
private: |
31 |
Douglas Thrift |
154 |
string comment; |
32 |
Douglas Thrift |
141 |
vector<Page> pages; |
33 |
Douglas Thrift |
143 |
map<string, multimap<string, Page> > newPages; |
34 |
Douglas Thrift |
133 |
void oldMap(const string& siteMap); |
35 |
Douglas Thrift |
154 |
void oldMap(vector<Page>& pages, xml::Node* list); |
36 |
Douglas Thrift |
142 |
void newIndex(const string& siteIndex); |
37 |
|
|
bool newIndex(vector<Page>& pages, Page& page); |
38 |
Douglas Thrift |
133 |
void newMap(const string& siteMap); |
39 |
Douglas Thrift |
143 |
void newMap(vector<Page>& pages, const string& childOf, multimap<string, |
40 |
|
|
Page>& newPages); |
41 |
Douglas Thrift |
126 |
public: |
42 |
|
|
SiteMapper(const string& siteIndex, const string& siteMap); |
43 |
|
|
~SiteMapper() {} |
44 |
|
|
}; |
45 |
|
|
|
46 |
|
|
#endif // _SiteMapper_hpp_ |