7 |
|
#ifndef _SiteMapper_hpp_ |
8 |
|
#define _SiteMapper_hpp_ |
9 |
|
|
10 |
+ |
#ifdef _WIN32 |
11 |
+ |
#pragma warning(disable:4267 4503 4786) |
12 |
+ |
#endif |
13 |
+ |
|
14 |
|
#include <iostream> |
15 |
|
#include <fstream> |
16 |
|
#include <string> |
17 |
|
#include <sstream> |
18 |
|
#include <vector> |
19 |
< |
#include <list> |
16 |
< |
#include <set> |
19 |
> |
#include <map> |
20 |
|
|
21 |
< |
using namespace std; |
21 |
> |
using std::cin; |
22 |
> |
using std::cout; |
23 |
> |
using std::cerr; |
24 |
> |
using std::ostream; |
25 |
> |
using std::ofstream; |
26 |
> |
using std::string; |
27 |
> |
using std::ostringstream; |
28 |
> |
using std::vector; |
29 |
> |
using std::map; |
30 |
> |
using std::multimap; |
31 |
> |
using std::pair; |
32 |
> |
|
33 |
> |
#include <menes-api/console.hpp> |
34 |
> |
#include <menes-xml/document.hpp> |
35 |
> |
#include <menes-xml/nodeset.hpp> |
36 |
> |
#include <menes-xml/parse.hpp> |
37 |
|
|
38 |
|
extern string program; |
39 |
|
extern bool debug; |
40 |
|
|
41 |
|
#include "Page.hpp" |
42 |
|
|
25 |
– |
#include <xalanc/Include/PlatformDefinitions.hpp> |
26 |
– |
#include <xercesc/util/PlatformUtils.hpp> |
27 |
– |
#include <xercesc/framework/LocalFileInputSource.hpp> |
28 |
– |
#include <xalanc/XPath/XObject.hpp> |
29 |
– |
#include <xalanc/XPath/XPathEvaluator.hpp> |
30 |
– |
#include <xalanc/XPath/NodeRefList.hpp> |
31 |
– |
#include <xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp> |
32 |
– |
#include <xalanc/XalanSourceTree/XalanSourceTreeDOMSupport.hpp> |
33 |
– |
#include <xalanc/XalanSourceTree/XalanSourceTreeInit.hpp> |
34 |
– |
#include <xalanc/XalanSourceTree/XalanSourceTreeParserLiaison.hpp> |
35 |
– |
|
36 |
– |
XALAN_USING_XERCES(XMLPlatformUtils) |
37 |
– |
XALAN_USING_XERCES(LocalFileInputSource) |
38 |
– |
XALAN_USING_XALAN(XObjectPtr) |
39 |
– |
XALAN_USING_XALAN(XPath) |
40 |
– |
XALAN_USING_XALAN(XPathEvaluator) |
41 |
– |
XALAN_USING_XALAN(NodeRefList) |
42 |
– |
XALAN_USING_XALAN(XalanDocument) |
43 |
– |
XALAN_USING_XALAN(XalanDocumentPrefixResolver) |
44 |
– |
XALAN_USING_XALAN(XalanDOMString) |
45 |
– |
XALAN_USING_XALAN(XalanNode) |
46 |
– |
XALAN_USING_XALAN(XalanSourceTreeInit) |
47 |
– |
XALAN_USING_XALAN(XalanSourceTreeDOMSupport) |
48 |
– |
XALAN_USING_XALAN(XalanSourceTreeParserLiaison) |
49 |
– |
|
43 |
|
class SiteMapper |
44 |
|
{ |
45 |
|
private: |
46 |
+ |
string comment; |
47 |
|
vector<Page> pages; |
48 |
< |
map<string, map<string, Page> > newPages; |
55 |
< |
XalanSourceTreeInit init; |
56 |
< |
XalanSourceTreeDOMSupport support; |
57 |
< |
XalanSourceTreeParserLiaison liaison; |
58 |
< |
XPathEvaluator evaluator; |
59 |
< |
XPath* item; |
60 |
< |
XPath* address; |
61 |
< |
XPath* link; |
62 |
< |
XPath* list_; |
63 |
< |
XPath* port; |
64 |
< |
XPath* path; |
65 |
< |
XPath* title; |
48 |
> |
map<string, multimap<string, Page> > newPages; |
49 |
|
void oldMap(const string& siteMap); |
50 |
< |
void oldMap(vector<Page>& pages, XalanNode* list); |
50 |
> |
void oldMap(vector<Page>& pages, xml::Node* list); |
51 |
|
void newIndex(const string& siteIndex); |
52 |
|
bool newIndex(vector<Page>& pages, Page& page); |
53 |
|
void newMap(const string& siteMap); |
54 |
+ |
void newMap(vector<Page>& pages, const string& childOf, multimap<string, |
55 |
+ |
Page>& newPages); |
56 |
|
public: |
57 |
|
SiteMapper(const string& siteIndex, const string& siteMap); |
58 |
|
~SiteMapper() {} |