7 |
|
#include "Jargon.hpp" |
8 |
|
#include "Matcher.hpp" |
9 |
|
|
10 |
< |
Jargon::Jargon(const ext::String& path, bool include) |
10 |
> |
Jargon::Jargon(const ext::String& path, const ext::String& jargon, bool include, |
11 |
> |
const ext::String& relative) : include(include) |
12 |
|
{ |
13 |
< |
std::vector<std::string> args(1, FeepingCreaturism::program); |
13 |
> |
args.InsertLast("--stringparam"); |
14 |
> |
args.InsertLast("jargon"); |
15 |
> |
args.InsertLast(jargon); |
16 |
> |
args.InsertLast("--param"); |
17 |
> |
args.InsertLast("include"); |
18 |
> |
args.InsertLast(ios::String() << include << "()"); |
19 |
|
|
20 |
< |
args.push_back("-p"); |
21 |
< |
args.push_back("include"); |
22 |
< |
args.push_back(lexical_cast<ext::String>(include) + "()"); |
23 |
< |
args.push_back(path); |
24 |
< |
args.push_back("jargon.xsl"); |
20 |
> |
if (!relative.IsEmpty()) |
21 |
> |
{ |
22 |
> |
args.InsertLast("--stringparam"); |
23 |
> |
args.InsertLast("relative"); |
24 |
> |
args.InsertLast(relative); |
25 |
> |
} |
26 |
|
|
27 |
< |
redi::ipstream pin("/usr/local/bin/Xalan", args); |
27 |
> |
args.InsertLast("jargon.xsl"); |
28 |
> |
args.InsertLast(ios::String() << path << "/" << jargon); |
29 |
> |
} |
30 |
|
|
31 |
< |
if (include) |
32 |
< |
{ |
33 |
< |
std::string ignore; |
31 |
> |
ios::PrintWriter& operator<<(ios::PrintWriter& pout, const Jargon& jargon) |
32 |
> |
{ |
33 |
> |
_S<api::Process> xslt("/usr/local/bin/xsltproc", jargon.args); |
34 |
|
|
35 |
< |
std::getline(pin, ignore); |
27 |
< |
} |
35 |
> |
if (jargon.include) ios::ReadLine(*xslt.GetReader()); |
36 |
|
|
37 |
< |
do |
37 |
> |
if (jargon.include) |
38 |
|
{ |
39 |
< |
std::string line; |
39 |
> |
ext::String line; |
40 |
> |
Matcher matcher("^(.*) xmlns=\"http://www.w3.org/1999/xhtml\"(.*)$"); |
41 |
|
|
42 |
< |
std::getline(pin, line); |
42 |
> |
while (ios::ReadLine(*xslt.GetReader(), line)) |
43 |
> |
{ |
44 |
> |
while (line == matcher) line = matcher[1] + matcher[2]; |
45 |
|
|
46 |
< |
buffer << line << '\n'; |
46 |
> |
pout << line << ios::NewLine; |
47 |
> |
} |
48 |
|
} |
49 |
< |
while (pin.good()); |
49 |
> |
else ios::ReadToWrite(*xslt.GetReader(), pout); |
50 |
> |
|
51 |
> |
xslt.Join(); |
52 |
> |
|
53 |
> |
return pout; |
54 |
|
} |