63 |
|
|
64 |
|
void SiteMapper::oldMap(const string& siteMap) |
65 |
|
{ |
66 |
– |
XalanSourceTreeInit init; |
67 |
– |
XalanSourceTreeDOMSupport support; |
68 |
– |
XalanSourceTreeParserLiaison liaison(support); |
69 |
– |
|
66 |
|
support.setParserLiaison(&liaison); |
67 |
|
|
68 |
|
XalanDOMString file(siteMap.c_str()); |
72 |
|
|
73 |
|
if (document == 0) return; |
74 |
|
|
79 |
– |
XPathEvaluator evaluator; |
75 |
|
XalanNode* list = evaluator.selectSingleNode(support, document, |
76 |
|
XalanDOMString("/page/section/list").c_str()); |
77 |
|
|
78 |
|
if (list == 0) return; |
79 |
|
|
80 |
< |
oldMap(pages, evaluator, support, list); |
80 |
> |
item = evaluator.createXPath(XalanDOMString("item").c_str()); |
81 |
> |
address = evaluator.createXPath(XalanDOMString("link/@address").c_str()); |
82 |
> |
link = evaluator.createXPath(XalanDOMString("link").c_str()); |
83 |
> |
list_ = evaluator.createXPath(XalanDOMString("list").c_str()); |
84 |
> |
|
85 |
> |
oldMap(pages, list); |
86 |
> |
|
87 |
> |
evaluator.destroyXPath(item); |
88 |
> |
evaluator.destroyXPath(address); |
89 |
> |
evaluator.destroyXPath(link); |
90 |
> |
evaluator.destroyXPath(list_); |
91 |
|
} |
92 |
|
|
93 |
< |
void SiteMapper::oldMap(vector<Page>& pages, XPathEvaluator& evaluator, |
89 |
< |
XalanSourceTreeDOMSupport& support, XalanNode* list) |
93 |
> |
void SiteMapper::oldMap(list<Page>& pages, XalanNode* list) |
94 |
|
{ |
95 |
< |
NodeRefList nodes = evaluator.selectNodeList(support, list, |
92 |
< |
XalanDOMString("item").c_str()); |
93 |
< |
|
95 |
> |
NodeRefList nodes = evaluator.selectNodeList(support, list, *item); |
96 |
|
|
97 |
|
for (int index = 0; index < nodes.getLength(); index++) |
98 |
|
{ |
99 |
|
XalanNode* node = nodes.item(index); |
100 |
+ |
ostringstream url, title; |
101 |
+ |
|
102 |
+ |
url << evaluator.evaluate(support, node, *address)->str(); |
103 |
+ |
title << evaluator.evaluate(support, node, *link)->str(); |
104 |
|
|
105 |
< |
cerr << "node=" << node << '\n'; |
105 |
> |
Page page(url.str(), title.str()); |
106 |
> |
XalanNode* list = evaluator.selectSingleNode(support, node, *list_); |
107 |
|
|
108 |
< |
ostringstream url, title; |
108 |
> |
if (list != 0) oldMap(page.getChildren(), list); |
109 |
|
|
110 |
< |
{ |
111 |
< |
XObjectPtr address = evaluator.evaluate(support, node, |
112 |
< |
XalanDOMString("link/@address").c_str()); |
110 |
> |
pages.push_back(page); |
111 |
> |
} |
112 |
> |
} |
113 |
|
|
114 |
< |
if (!address.null()) |
115 |
< |
{ |
116 |
< |
url << address->str(); |
117 |
< |
cerr << "url=" << url.str() << '\n'; |
111 |
< |
} |
112 |
< |
} |
114 |
> |
void SiteMapper::index(const string& siteIndex) |
115 |
> |
{ |
116 |
> |
XalanDOMString file(siteIndex.c_str()); |
117 |
> |
LocalFileInputSource source(file.c_str()); |
118 |
|
|
119 |
< |
{ |
120 |
< |
XObjectPtr link = evaluator.evaluate(support, node, |
121 |
< |
XalanDOMString("link").c_str()); |
119 |
> |
XalanDocument* document = liaison.parseXMLStream(source); |
120 |
> |
|
121 |
> |
if (document == 0) return; |
122 |
|
|
123 |
< |
if (!link.null()) |
124 |
< |
{ |
125 |
< |
title << link->str(); |
126 |
< |
cerr << "title=" << title.str() << '\n'; |
127 |
< |
} |
123 |
> |
address = evaluator.createXPath(XalanDOMString("address").c_str()); |
124 |
> |
port = evaluator.createXPath(XalanDOMString("port").c_str()); |
125 |
> |
path = evaluator.createXPath(XalanDOMString("path").c_str()); |
126 |
> |
title = evaluator.createXPath(XalanDOMString("title").c_str()); |
127 |
> |
|
128 |
> |
NodeRefList nodes = evaluator.selectNodeList(support, document, |
129 |
> |
XalanDOMString("/index/page").c_str()); |
130 |
> |
|
131 |
> |
for (int index = 0; index < nodes.getLength(); index++) |
132 |
> |
{ |
133 |
> |
XalanNode* node = nodes.item(index); |
134 |
> |
ostringstream address; |
135 |
> |
|
136 |
> |
address << evaluator.evaluate(support, node, *(this->address))->str(); |
137 |
> |
|
138 |
> |
double port = evaluator.evaluate(support, node, *(this->port))->num(); |
139 |
> |
|
140 |
> |
if (port >= 0 && port <= 65535) |
141 |
> |
{ |
142 |
> |
address << ':' << int(port); |
143 |
|
} |
144 |
|
|
145 |
< |
Page page(url.str(), title.str()); |
126 |
< |
if (title.str() == "Contact") cerr << node << '\n'; |
127 |
< |
XalanNode* list = evaluator.selectSingleNode(support, node, |
128 |
< |
XalanDOMString("list").c_str()); |
145 |
> |
ostringstream path, title; |
146 |
|
|
147 |
< |
cerr << "list=" << list << '\n'; |
147 |
> |
path << evaluator.evaluate(support, node, *(this->path))->str(); |
148 |
> |
title << evaluator.evaluate(support, node, *(this->title))->str(); |
149 |
|
|
150 |
< |
if (list != 0) oldMap(page.getChildren(), evaluator, support, list); |
150 |
> |
Page page(address.str(), path.str(), title.str()); |
151 |
> |
Matcher matcher("^Douglas Thrift's.+Website \\| (.+)$"); |
152 |
|
|
153 |
< |
pages.push_back(page); |
153 |
> |
if (page == matcher) |
154 |
> |
{ |
155 |
> |
page.setTitle(matcher[1]); |
156 |
> |
|
157 |
> |
newPages.insert(page); |
158 |
> |
} |
159 |
|
} |
136 |
– |
} |
160 |
|
|
161 |
< |
void SiteMapper::index(const string& siteIndex) |
162 |
< |
{ |
163 |
< |
// |
161 |
> |
evaluator.destroyXPath(address); |
162 |
> |
evaluator.destroyXPath(port); |
163 |
> |
evaluator.destroyXPath(path); |
164 |
> |
evaluator.destroyXPath(title); |
165 |
|
} |
166 |
|
|
167 |
|
void SiteMapper::newMap(const string& siteMap) |
168 |
|
{ |
169 |
|
// |
170 |
|
|
171 |
< |
for (int index = 0; index < pages.size(); index++) |
171 |
> |
for (list<Page>::iterator itor = pages.begin(); itor != pages.end(); |
172 |
> |
itor++) |
173 |
|
{ |
174 |
< |
cout << pages[index] << '\n'; |
174 |
> |
cout << *itor << '\n'; |
175 |
|
} |
176 |
|
} |