4 |
|
// |
5 |
|
// $Id$ |
6 |
|
|
7 |
+ |
#include <cxx/standard.hh> |
8 |
+ |
|
9 |
+ |
#include <api/pcre/regex.hpp> |
10 |
+ |
|
11 |
|
#include "Jargon.hpp" |
12 |
|
|
13 |
< |
Jargon::Jargon(const std::string& path) |
13 |
> |
Jargon::Jargon(const cse::String &path, const cse::String &jargon, bool include, const cse::String &relative) : include(include) |
14 |
|
{ |
15 |
< |
std::vector<std::string> args(1, "FeepingCreaturism"); |
15 |
> |
args.InsertLast(_B("--stringparam")); |
16 |
> |
args.InsertLast(_B("jargon")); |
17 |
> |
args.InsertLast(jargon); |
18 |
> |
args.InsertLast(_B("--param")); |
19 |
> |
args.InsertLast(("include")); |
20 |
> |
args.InsertLast(_S<ios::String>() << include << _B("()")); |
21 |
> |
|
22 |
> |
if (!relative.IsEmpty()) |
23 |
> |
{ |
24 |
> |
args.InsertLast(_B("--stringparam")); |
25 |
> |
args.InsertLast(_B("relative")); |
26 |
> |
args.InsertLast(relative); |
27 |
> |
} |
28 |
|
|
29 |
< |
args.push_back(path); |
30 |
< |
args.push_back("FeepingCreaturism.xsl"); |
15 |
< |
|
16 |
< |
redi::pstreambuf pin("/usr/local/bin/Xalan", args, std::ios_base::in); |
17 |
< |
ios::StreamBufInputAdapter adaptor(pin); |
18 |
< |
ext::Handle<xml::Document> document(xml::Parse(adaptor)); |
19 |
< |
ext::Handle<xml::Node> jargon(*document/"Jargon"); |
20 |
< |
|
21 |
< |
word = *jargon/"Word"; |
22 |
< |
pronunciation = *jargon/"Pronunciation"; |
23 |
< |
grammar = *jargon/"Grammar"; |
24 |
< |
definition = *jargon/"Definition"; |
29 |
> |
args.InsertLast(_B("jargon.xsl")); |
30 |
> |
args.InsertLast(_S<ios::String>() << path << _B("/") << jargon); |
31 |
|
} |
32 |
|
|
33 |
< |
std::ostream& operator<<(std::ostream& sout, const Jargon& jargon) |
33 |
> |
ios::PrintWriter &operator<<(ios::PrintWriter &output, const Jargon &jargon) |
34 |
|
{ |
35 |
< |
ios::StreamBufOutputAdapter adaptor(*sout.rdbuf()); |
30 |
< |
|
31 |
< |
sout << jargon.word << '\n' << jargon.pronunciation << '\n' |
32 |
< |
<< jargon.grammar << '\n' << jargon.definition.GetSize() << '\n'; |
35 |
> |
_S<api::Process> xslt(_B("/usr/local/bin/xsltproc"), jargon.args); |
36 |
|
|
37 |
< |
/* ios::PrintWriter writer(adaptor); |
37 |
> |
if (jargon.include) ios::ReadLine(*xslt.GetReader()); |
38 |
|
|
39 |
< |
writer << jargon.definition << '\n';*/ |
39 |
> |
if (jargon.include) |
40 |
> |
{ |
41 |
> |
ext::Buffer line; |
42 |
> |
api::Pcre::RegEx matcher(_B("^(.*) xmlns=\"http://www.w3.org/1999/xhtml\"(.*)$")); |
43 |
> |
|
44 |
> |
while (ios::ReadLine(*xslt.GetReader(), line)) |
45 |
> |
{ |
46 |
> |
while (api::Pcre::RegEx::Match match = matcher(line)) |
47 |
> |
line = _S<ios::Buffer>() << match[1] << match[2]; |
48 |
> |
|
49 |
> |
output << line << ios::NewLine; |
50 |
> |
} |
51 |
> |
} |
52 |
> |
else |
53 |
> |
ios::ReadToWrite(*xslt.GetReader(), output); |
54 |
|
|
55 |
< |
return sout; |
55 |
> |
return output; |
56 |
|
} |