ficdown/Ficdown.Console/Program.cs

200 lines
6.8 KiB
C#
Raw Normal View History

2015-02-08 19:30:12 -06:00
namespace Ficdown.Console
{
using System;
using System.Linq;
2015-02-08 19:30:12 -06:00
using System.IO;
using Microsoft.SqlServer.Server;
using Parser;
using Parser.Render;
2015-07-24 00:56:53 -05:00
using Parser.Model.Parser;
2015-02-08 19:30:12 -06:00
internal class Program
{
private static int Main(string[] args)
2015-02-08 19:30:12 -06:00
{
2015-07-24 00:56:53 -05:00
AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
{
if(e.ExceptionObject is FicdownException)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.Error.WriteLine(e.ExceptionObject.ToString());
Environment.Exit(3);
}
};
2015-02-08 19:30:12 -06:00
string infile = null;
string output = null;
string tempdir = null;
string format = null;
string author = null;
2017-04-13 11:50:07 -05:00
string bookid = null;
string language = "en";
2015-04-01 17:17:36 -05:00
string images = null;
2015-02-08 19:30:12 -06:00
var debug = false;
if (args.Length == 1)
{
if (args[0] == "/?" || args[0] == "/help" || args[0] == "-help" || args[0] == "--help")
{
ShowHelp();
return 0;
2015-02-08 19:30:12 -06:00
}
}
else if (args.Length > 1)
{
for (var i = 0; i < args.Length; i += 2)
{
switch (args[i])
{
case "--format":
format = args[i + 1];
break;
case "--in":
infile = args[i + 1];
break;
case "--out":
output = args[i + 1];
break;
case "--template":
tempdir = args[i + 1];
break;
case "--author":
author = args[i + 1];
break;
2017-04-13 11:50:07 -05:00
case "--bookid":
bookid = args[i + 1];
break;
case "--language":
language = args[i + 1];
break;
2015-04-01 17:17:36 -05:00
case "--images":
images = args[i + 1];
break;
2015-02-08 19:30:12 -06:00
case "--debug":
i--;
debug = true;
break;
default:
Console.WriteLine(@"Unknown option: {0}", args[i]);
return 1;
2015-02-08 19:30:12 -06:00
}
}
}
else
{
ShowHelp();
return 0;
2015-02-08 19:30:12 -06:00
}
if (string.IsNullOrWhiteSpace(format) || string.IsNullOrWhiteSpace(infile))
2015-02-08 19:30:12 -06:00
{
ShowHelp();
return 1;
2015-02-08 19:30:12 -06:00
}
if (!File.Exists(infile))
2015-02-08 19:30:12 -06:00
{
Console.WriteLine(@"Source file {0} not found.", infile);
return 2;
2015-02-08 19:30:12 -06:00
}
if (string.IsNullOrWhiteSpace(output))
if (format == "html")
output = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"html");
else if (format == "epub")
output = "output.epub";
if (!string.IsNullOrWhiteSpace(output) && (Directory.Exists(output) || File.Exists(output)))
{
Console.WriteLine(@"Specified output {0} already exists.", output);
return 2;
2015-02-08 19:30:12 -06:00
}
if (!string.IsNullOrWhiteSpace(tempdir))
{
if (!Directory.Exists(tempdir))
{
Console.WriteLine(@"Template directory {0} does not exist.", tempdir);
return 2;
2015-02-08 19:30:12 -06:00
}
if (!File.Exists(Path.Combine(tempdir, "index.html")) ||
!File.Exists(Path.Combine(tempdir, "scene.html")) ||
!File.Exists(Path.Combine(tempdir, "styles.css")))
{
Console.WriteLine(
@"Template directory must contain ""index.html"", ""scene.html"", and ""style.css"" files.");
}
}
2015-04-01 17:17:36 -05:00
if (!string.IsNullOrWhiteSpace(images) && !Directory.Exists(images))
{
Console.WriteLine(@"Images directory {0} does not exist.", images);
return 2;
2015-04-01 17:17:36 -05:00
}
2015-02-08 19:30:12 -06:00
var parser = new FicdownParser();
var storyText = File.ReadAllText(infile);
Console.WriteLine(@"Parsing story...");
var story = parser.ParseStory(storyText);
story.Orphans.ToList().ForEach(o =>
{
2015-07-24 00:56:53 -05:00
var currentColor = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Error.WriteLine("Warning (line {0}): {1} {2} is unreachable", o.LineNumber, o.Type, o.Name);
2015-07-24 00:56:53 -05:00
Console.ForegroundColor = currentColor;
});
2015-02-08 19:30:12 -06:00
IRenderer rend;
switch (format)
{
case "html":
Directory.CreateDirectory(output);
2017-04-13 11:50:07 -05:00
rend = new HtmlRenderer(language);
2015-02-08 19:30:12 -06:00
break;
case "epub":
if (string.IsNullOrWhiteSpace(author))
{
Console.WriteLine(@"Epub format requires the --author argument.");
return 1;
2015-02-08 19:30:12 -06:00
}
2017-04-13 11:50:07 -05:00
rend = new EpubRenderer(author, bookid, language);
2015-02-08 19:30:12 -06:00
break;
default:
ShowHelp();
return 1;
2015-02-08 19:30:12 -06:00
}
2015-04-01 17:17:36 -05:00
if (!string.IsNullOrWhiteSpace(tempdir))
{
rend.IndexTemplate = File.ReadAllText(Path.Combine(tempdir, "index.html"));
rend.SceneTemplate = File.ReadAllText(Path.Combine(tempdir, "scene.html"));
rend.StylesTemplate = File.ReadAllText(Path.Combine(tempdir, "styles.css"));
};
if (!string.IsNullOrWhiteSpace(images)) rend.ImageDir = images;
2015-02-08 19:30:12 -06:00
Console.WriteLine(@"Rendering story...");
rend.Render(story, output, debug);
Console.WriteLine(@"Done.");
return 0;
2015-02-08 19:30:12 -06:00
}
2015-04-01 17:17:36 -05:00
2015-02-08 19:30:12 -06:00
private static void ShowHelp()
{
Console.WriteLine(
@"Usage: ficdown.exe
--format (html|epub)
--in ""/path/to/source.md""
[--out ""/path/to/output""]
[--template ""/path/to/template/dir""]
2015-04-01 17:17:36 -05:00
[--images ""/path/to/images/dir""]
[--author ""Author Name""]
2017-04-13 11:50:07 -05:00
[--bookid ""ePub Book ID""]
[--language ""language""]
2015-02-08 19:30:12 -06:00
[--debug]");
}
}
}