1 |
Douglas Thrift |
126 |
// Site Mapper |
2 |
|
|
// |
3 |
|
|
// Douglas Thrift |
4 |
|
|
// |
5 |
|
|
// $Id$ |
6 |
|
|
|
7 |
|
|
#ifndef _SiteMapper_hpp_ |
8 |
|
|
#define _SiteMapper_hpp_ |
9 |
|
|
|
10 |
douglas |
312 |
#include <menes/platform.hpp> |
11 |
|
|
|
12 |
douglas |
299 |
#ifdef MENES_PRAGMA_ONCE |
13 |
|
|
#pragma once |
14 |
|
|
#endif |
15 |
|
|
|
16 |
douglas |
286 |
#ifdef _WIN32 |
17 |
|
|
#pragma warning(disable:4267) |
18 |
|
|
#endif |
19 |
Douglas Thrift |
155 |
|
20 |
Douglas Thrift |
186 |
#include <menes-api/console.hpp> |
21 |
douglas |
285 |
#include <menes-api/files.hpp> |
22 |
|
|
#include <menes-ios/string.hpp> |
23 |
Douglas Thrift |
154 |
#include <menes-xml/document.hpp> |
24 |
|
|
#include <menes-xml/nodeset.hpp> |
25 |
|
|
#include <menes-xml/parse.hpp> |
26 |
douglas |
285 |
#include <menes-xml/textwriter.hpp> |
27 |
Douglas Thrift |
154 |
|
28 |
douglas |
299 |
#include <string> |
29 |
|
|
#include <map> |
30 |
|
|
|
31 |
douglas |
285 |
extern ext::String program; |
32 |
Douglas Thrift |
128 |
extern bool debug; |
33 |
|
|
|
34 |
|
|
#include "Page.hpp" |
35 |
|
|
|
36 |
Douglas Thrift |
126 |
class SiteMapper |
37 |
|
|
{ |
38 |
|
|
private: |
39 |
douglas |
285 |
ext::String comment; |
40 |
|
|
ext::Vector<Page> pages; |
41 |
|
|
std::map<std::string, std::multimap<std::string, Page> > newPages; |
42 |
|
|
void oldMap(const ext::String& siteMap); |
43 |
|
|
void oldMap(ext::Vector<Page>& pages, xml::Node* list); |
44 |
|
|
void newIndex(const ext::String& siteIndex); |
45 |
|
|
bool newIndex(ext::Vector<Page>& pages, Page& page); |
46 |
|
|
void newMap(const ext::String& siteMap); |
47 |
|
|
void newMap(ext::Vector<Page>& pages, const ext::String& childOf, std::multimap<std::string, Page>& newPages); |
48 |
Douglas Thrift |
126 |
public: |
49 |
douglas |
285 |
SiteMapper(const ext::String& siteIndex, const ext::String& siteMap); |
50 |
Douglas Thrift |
126 |
~SiteMapper() {} |
51 |
|
|
}; |
52 |
|
|
|
53 |
|
|
#endif // _SiteMapper_hpp_ |