1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
|
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Billerica, MA, USA
//
// All Rights Reserved.
//
// Ice is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 2 as published by
// the Free Software Foundation.
//
// **********************************************************************
#include <IceStorm/WeightedGraph.h>
#include <xercesc/parsers/SAXParser.hpp>
#include <xercesc/sax/HandlerBase.hpp>
#include <map>
#include <list>
#include <iostream>
using namespace std;
using namespace IceStorm;
static string
toString(const XMLCh* ch)
{
char* t = XMLString::transcode(ch);
string s(t);
delete[] t;
return s;
}
namespace IceStorm
{
class SAXErrorHandler : public ErrorHandler
{
public:
void
warning(const SAXParseException& exception)
{
string s = toString(exception.getMessage());
cerr << "warning: " << s << endl;
}
void
error(const SAXParseException& exception)
{
string s = toString(exception.getMessage());
cerr << "error: " << s << endl;
}
void
fatalError(const SAXParseException& exception)
{
string s = toString(exception.getMessage());
cerr << "fatal:" << s << endl;
}
void
resetErrors()
{
}
};
#ifdef _WIN32
# pragma warning(disable:4786)
#endif
class SAXGraphHandler : public DocumentHandler
{
public:
SAXGraphHandler(WeightedGraph& graph) :
_graph(graph)
{
}
~SAXGraphHandler()
{
}
virtual void characters(const XMLCh *const chars, const unsigned int length) { }
virtual void endDocument() { }
virtual void endElement(const XMLCh *const name) { }
virtual void ignorableWhitespace(const XMLCh *const chars, const unsigned int length) { }
virtual void processingInstruction(const XMLCh *const target, const XMLCh *const data) { }
virtual void resetDocument() { }
virtual void setDocumentLocator(const Locator *const locator) { }
virtual void startDocument() { }
virtual void startElement(const XMLCh *const name, AttributeList &attrs);
private:
WeightedGraph& _graph;
};
//
// Exception during parsing.
//
struct WeightedGraphParseException
{
std::string reason;
};
} // End namespace IceStorm
void
SAXGraphHandler::startElement(const XMLCh *const name, AttributeList &attrs)
{
string str = toString(name);
try
{
if(str == "vertex")
{
XMLCh* n = XMLString::transcode("name");
const XMLCh* value = attrs.getValue(n);
delete[] n;
if(value == 0)
{
WeightedGraphParseException ex;
ex.reason = "<vertex> name attribute missing";
throw ex;
}
string vstr = toString(value);
_graph.addVertex(vstr);
}
else if(str == "edge")
{
XMLCh* n = XMLString::transcode("source");
const XMLCh* value = attrs.getValue(n);
delete[] n;
if(value == 0)
{
WeightedGraphParseException ex;
ex.reason = "<edge> source attribute missing";
throw ex;
}
string source = toString(value);
n = XMLString::transcode("target");
value = attrs.getValue(n);
delete[] n;
if(value == 0)
{
WeightedGraphParseException ex;
ex.reason = "<edge> target attribute missing";
throw ex;
}
string target = toString(value);
n = XMLString::transcode("cost");
value = attrs.getValue(n);
delete[] n;
int cost = 0;
if(value != 0)
{
string cstr = toString(value);
cost = atoi(cstr.c_str());
}
try
{
_graph.addEdge(source, target, cost);
}
catch(...)
{
throw;
}
}
}
catch(const WeightedGraphParseException& ex)
{
//
// Xerces eats all exceptions (apparently by design). Not sure
// how the error handling is supposed to work.
//
cerr << ex.reason << endl;
_graph.error();
}
catch(...)
{
_graph.error();
}
}
WeightedGraph::WeightedGraph(bool reflective) :
_reflective(reflective)
{
}
WeightedGraph::~WeightedGraph()
{
}
bool
WeightedGraph::parse(const string& xmlFile)
{
_error = 0;
SAXParser* parser = new SAXParser;
parser->setValidationScheme(SAXParser::Val_Never);
try
{
SAXErrorHandler err;
SAXGraphHandler handler(*this);
parser->setDocumentHandler(&handler);
parser->setErrorHandler(&err);
parser->parse(xmlFile.c_str());
}
catch(const XMLException& e)
{
cerr << e.getMessage() << endl;
}
int rc = parser->getErrorCount();
delete parser;
return _error == 0 && rc == 0;
}
void
WeightedGraph::dump(ostream& os)
{
for(unsigned int i = 0 ; i < _vertices.size(); ++i)
{
for(unsigned int j = 0; j < _vertices.size(); ++j)
{
os << _edges[i*_vertices.size() + j] << " ";
}
os << endl;
}
}
void
WeightedGraph::swap(const std::vector<int>& edges)
{
assert(edges.size() == _edges.size());
_edges = edges;
}
vector<string>
WeightedGraph::getVertices() const
{
return _vertices;
}
vector<pair<string, int> >
WeightedGraph::getEdgesFor(const std::string& vertex) const
{
vector<pair<string, int> > edges;
map<std::string, int>::const_iterator p = _vlookup.find(vertex);
if(p != _vlookup.end())
{
int row = p->second * _vertices.size();
for(unsigned int i = row; i < row + _vertices.size(); ++i)
{
if(_edges[i] != -1)
{
edges.push_back(make_pair(_vertices[i-row], _edges[i]));
}
}
}
return edges;
}
void
WeightedGraph::compute(vector<int>& newEdges, int max)
{
//
// Reinitialize the adjacency matrix.
//
newEdges.clear();
newEdges.resize(_vertices.size()*_vertices.size(), -1);
//
// For each vertex calculate the cost for all reachable vertexes
// within the given max cost.
//
for(unsigned int i = 0; i < _vertices.size(); ++i)
{
//
// List of <vertex-index,cost> pairs.
//
list<pair<unsigned int, int> > visited;
visit(i, 0, visited, max);
//
// Add each vertex-index/cost pair to the new adjacency
// matrix.
//
for(list<pair<unsigned int, int> >::iterator p = visited.begin(); p != visited.end(); ++p)
{
//
// Ignore loops.
//
if((*p).first != i)
{
newEdges[i*_vertices.size() + (*p).first] = (*p).second;
if(_reflective)
{
newEdges[(*p).first*_vertices.size() + i] = (*p).second;
}
}
}
}
}
void
WeightedGraph::visit(unsigned int vertex, int cost, list<pair<unsigned int, int> >& visited, int max)
{
//
// Is the given vertex already in the visited list? If so, then
// check that is the cost is minimal cost and replace if not.
//
for( list<pair<unsigned int, int> >::iterator p = visited.begin(); p != visited.end(); ++p)
{
if(p->first == vertex)
{
if(p->second > cost)
{
p->second = cost;
}
return;
}
}
//
// Add the vertex to the visited set (with the cost to visit).
//
visited.push_back(make_pair(vertex, cost));
//
// Run through each edges for this vertex (that's a row in the
// adjacency matrix).
//
int row = vertex * _vertices.size();
for(unsigned int i = row ; i < row + _vertices.size() ; ++i)
{
if(_edges[i] != -1)
{
if(cost + _edges[i] <= max)
{
visit(i - row, cost + _edges[i], visited, max);
}
}
}
}
void
WeightedGraph::addVertex(const string& name)
{
_vertices.push_back(name);
}
void
WeightedGraph::addEdge(const string& from, const string& to, int cost)
{
//
// Loops are not permitted.
//
if(from == to)
{
WeightedGraphParseException ex;
ex.reason = "loops are not permitted";
throw ex;
}
if(_edges.size() == 0)
{
//
// Prepare the edge map
//
_edges.resize(_vertices.size()*_vertices.size(), -1);
for(unsigned int i = 0; i < _vertices.size(); ++i)
{
_vlookup.insert(make_pair(_vertices[i], i));
}
}
//
// Location of from and to.
//
map<string, int>::iterator p = _vlookup.find(from);
if(p == _vlookup.end())
{
WeightedGraphParseException ex;
ex.reason = "<edge> vertex " + from + " not found";
throw ex;
}
int fidx = p->second;
p = _vlookup.find(to);
if(p == _vlookup.end())
{
WeightedGraphParseException ex;
ex.reason = "<edge> vertex " + to + " not found";
throw ex;
}
int tidx = p->second;
//
// Fill in from, to - to,from
//
_edges[fidx*_vertices.size() + tidx] = cost;
if(_reflective)
{
_edges[tidx*_vertices.size() + fidx] = cost;
}
}
void
WeightedGraph::error()
{
//
// An error occurred during the semantic handling of the document.
//
++_error;
}
|