-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
320 lines (256 loc) · 10.7 KB
/
Program.cs
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
using System;
using System.Collections.Generic;
using System.IO;
namespace piaine
{
class Program
{
static void Main(string[] args)
{
string inputString = readTemplateFile("post.html");
List<string> outputStrings = new List<string>();
List<string> inputLines = new List<string>();
bool buildTagIndexes = false;
Scanner scanner = new Scanner(inputString);
if (!Directory.Exists("posts"))
{
Console.WriteLine("Posts directory does not exist. Creating...");
Directory.CreateDirectory("posts");
}
List<string> sourceDirectory = new List<string>(Directory.GetFiles(Directory.GetCurrentDirectory() + "/posts/"));
StreamWriter[] files = new StreamWriter[sourceDirectory.Count];
List<Post> posts = new List<Post>();
List<string> tags = new List<string>();
//For some reason parser needs to be used outside of the foreach scope for the source files. I've no idea why, but this works right now.
Parser parser = new Parser(scanner.scanTokens());
foreach (string argument in args)
{
if (argument == "-tags")
{
buildTagIndexes = true;
}
}
int i = 0;
if (!Directory.Exists("output"))
{
Directory.CreateDirectory("output");
}
if (!Directory.Exists("output/posts"))
{
Directory.CreateDirectory("output/posts");
}
foreach (string s in sourceDirectory)
{
//Strip each one to get just the local path in the posts folder i.e. "test.txt"
//From each of these a html file will be created with the same name in a folder.
//These html files will then be used to build the index
outputStrings.Clear();
Post post = new Post();
post.path = Path.GetRelativePath("output", "output/posts/" + Path.GetFileNameWithoutExtension(s).Replace(' ', '_') + ".html");
post.date = DateTime.Today;
post.tags = new List<string>();
bool skip = false;
inputLines.Clear();
string[] strings = File.ReadAllLines(s);
foreach (string st in strings)
{
inputLines.Add(st);
}
PageConsumer pageConsumer = new PageConsumer(inputLines);
post.name = pageConsumer.getPageTitle();
post.date = pageConsumer.getPageDate();
post.tags = pageConsumer.getPageTags();
string thisPageType = pageConsumer.getPageTemplate();
if (thisPageType != null)
{
if (thisPageType != "post.html")
{
post.typeOfPage = pageType.staticpage;
if (File.Exists(pageConsumer.getPageTemplate()))
{
inputString = readTemplateFile(pageConsumer.getPageTemplate());
scanner.refreshSource(inputString);
parser.refreshTokens(scanner.scanTokens());
}
else
{
Console.WriteLine("Template {0} does not exist. Exiting.", pageConsumer.getPageTemplate());
skip = true;
}
}
}
else
{
inputString = readTemplateFile("post.html");
scanner.refreshSource(inputString);
parser.refreshTokens(scanner.scanTokens());
post.typeOfPage = pageType.post;
}
if (!skip)
{
if (post.tags != null)
{
foreach (string tag in post.tags)
{
if (!tags.Contains(tag))
{
tags.Add(tag);
}
}
}
outputStrings = parser.writeVariablesInSource(inputString, pageConsumer.variablesInPage);
if (post.typeOfPage == pageType.post)
{
var outputFile = File.Create("output/posts/" + Path.GetFileNameWithoutExtension(s).Replace(' ', '_') + ".html");
files[i] = new StreamWriter(outputFile);
}
else
{
var outputFile = File.Create("output/" + Path.GetFileNameWithoutExtension(s).Replace(' ', '_') + ".html");
files[i] = new StreamWriter(outputFile);
}
foreach (string st in outputStrings)
{
files[i].WriteLine(st);
}
files[i].Flush();
Console.WriteLine("{0} written.", Path.GetFileNameWithoutExtension(s).Replace(' ', '_'));
posts.Add(post);
}
i++;
}
if (buildTagIndexes)
{
buildTagFiles(posts, tags);
buildIndexFile(posts, tags);
}
else
{
buildIndexFile(posts);
}
buildAtomFile(posts);
Console.WriteLine("Files generated. Press any key to exit.");
Console.ReadKey();
}
static void buildIndexFile(List<Post> posts, List<string> tagCloud = null)
{
if (File.Exists("index.html"))
{
string inputString = readTemplateFile("index.html");
Scanner scanner = new Scanner(inputString);
Parser parser = new Parser(scanner.scanTokens());
List<string> outputStrings = new List<string>();
var indexFile = File.Create("output/index.html");
posts.Sort((x, y) => x.date.CompareTo(y.date));
posts.Reverse();
List<Post> justPosts = new List<Post>();
foreach (Post p in posts)
{
if (p.typeOfPage == pageType.post)
{
justPosts.Add(p);
}
}
//Make an index here.
if (tagCloud != null)
{
outputStrings = parser.writeVariablesInSource(inputString, justPosts, tagCloud);
}
else
{
outputStrings = parser.writeVariablesInSource(inputString, justPosts);
}
StreamWriter indexWriter = new StreamWriter(indexFile);
foreach (string st in outputStrings)
{
indexWriter.WriteLine(st);
}
indexWriter.Flush();
Console.WriteLine("Index written.");
}
else
{
Console.WriteLine("No index template. Exiting.");
}
}
static string readTemplateFile(string path)
{
string holderString = File.ReadAllText(path);
return holderString;
}
static void buildAtomFile(List<Post> posts)
{
if (File.Exists("atom.xml"))
{
string inputString = readTemplateFile("atom.xml");
Scanner scanner = new Scanner(inputString);
Parser parser = new Parser(scanner.scanTokens());
List<string> outputStrings = new List<string>();
var atomFile = File.Create("output/feed.atom.xml");
posts.Sort((x, y) => x.date.CompareTo(y.date));
posts.Reverse();
//Make an index here.
outputStrings = parser.writeAtomFeed(inputString, posts);
StreamWriter atomWriter = new StreamWriter(atomFile);
foreach (string st in outputStrings)
{
atomWriter.WriteLine(st);
}
atomWriter.Flush();
Console.WriteLine("Atom feed written.");
}
else
{
Console.WriteLine("No atom template. Exiting.");
}
}
static void buildTagFiles(List<Post> posts, List<string> tags)
{
if (File.Exists("tagIndex.html"))
{
string inputString = readTemplateFile("tagIndex.html");
Scanner scanner = new Scanner(inputString);
Parser parser = new Parser(scanner.scanTokens());
List<string> outputStrings = new List<string>();
foreach (string tag in tags)
{
Console.WriteLine("{0} index being built.", tag);
string filePath = "output/tags/" + tag + ".html";
if (!Directory.Exists("output/tags/"))
{
Directory.CreateDirectory("output/tags/");
}
var tagIndex = File.Create(filePath);
List<Post> taggedPosts = new List<Post>();
posts.Sort((x, y) => x.date.CompareTo(y.date));
posts.Reverse();
foreach (Post p in posts)
{
if (p.typeOfPage == pageType.post)
{
if (p.tags != null)
{
if (p.tags.Contains(tag))
{
taggedPosts.Add(p);
}
}
}
}
outputStrings = parser.writeVariablesInSource(inputString, taggedPosts, tag);
StreamWriter tagIndexWriter = new StreamWriter(tagIndex);
foreach (string st in outputStrings)
{
tagIndexWriter.WriteLine(st);
}
tagIndexWriter.Flush();
}
Console.WriteLine("{0} tag indices written.", tags.Count.ToString());
}
else
{
Console.WriteLine("No tag index template. Exiting.");
}
}
}
}