-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
126 lines (107 loc) · 3.78 KB
/
main.cpp
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
/*
* Copyright (C) 2020 Ágústsson, Kjartan Óli <[email protected]>
* Author: Ágústsson, Kjartan Óli <[email protected]>
*
* This file is a part of Texplate
* Texplate is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <json/value.h>
#include <string>
#include <string_view>
#include <vector>
#include "args.hpp"
#include "file.hpp"
#include "config.hpp"
void help(std::ostream& out = std::cout);
void help(const std::string& unknown);
void version();
// copyright information
static const std::string_view author{"Kjartan Óli Ágústsson"};
static const std::string_view year{"2020"};
// version information
static const short majorVersion{1};
static const short minorVersion{6};
static const short hotfix{0};
int main(int argc, char* argv[])
{
arguments args{};
Json::Value config{};
read_config(config);
parse_args(args, config, argc, argv);
if (args.help)
{
help();
return 0;
}
if (args.version)
{
version();
return 0;
}
if (args.unknownOption != "")
{
help(args.unknownOption);
return 2;
}
// exit with error if either fileName or docClass are not provided
if (args.fileName == "" || args.docClass == "")
{
help(std::cerr);
return 1;
}
write(args, config);
return 0;
}
// print help
void help(std::ostream& out)
{
static const std::string_view indent{" "};
out << "Usage: texplate [OPTIONS] FILENAME DOCUMENTCLASS\n"
<< "Create a basic LaTex document FILENAME with class DOCUMENTCLASS\n"
<< "Example: texplate -a Kjartan test article\n\n"
<< "Options:\n"
<< indent << "-a,\t--author=[AUTHOR]*\tAdd a \\author{AUTHOR} command to the document\n"
<< indent << "-b,\t--bibsource=SOURCE\tAdd a \\addbibresources{SOURCE} to the document\n"
<< indent << "\t\t\t\tand if no biblatex package is used with the\n"
<< indent << "\t\t\t\t-u option add \\usepackage{biblatex} as well\n"
<< indent << "-d,\t--date=[DATE]**\t\tAdd a \\date{DATE} command to the document\n"
<< indent << "-h,\t--help\t\t\tPrint this help and exit\n"
<< indent << "-l,\t--language=LANGUAGE\tLoad the babel package for LANGUAGE\n"
<< indent << "-u,\t--usepackage=PACKAGE\tAdd a \\usepackage{PACKAGE} statement\n"
<< indent << "-t,\t--title=TITLE\t\tAdd a \\title{TITLE} command to the document\n\n"
<< indent << "* Argument is optional as long as it is set in ~/.config/texplate.conf\n"
<< indent << "** Argument can be skipped to leave command empty\n"
<< "\nErrors:\n"
<< indent << "1\tMissing FILENAME or DOCUMENTCLASS\n"
<< indent << "2\tUnknown option\n"
<< "\ntexplate " << majorVersion << '.' << minorVersion << '.' << hotfix
<< " Copyright (C) " << year << ' ' << author
<< "\nThis program comes with ABSOLUTELY NO WARRANTY.\n"
<< "This is free software, and you are welcome to redistribute it\n";
}
// print unknown option message and print help
void help(const std::string& unknown)
{
std::cerr << "Unknown option: " << unknown << '\n';
help(std::cerr);
}
// print version information
void version()
{
std::cout << "texplate " << majorVersion << '.' << minorVersion << '.'
<< hotfix << " Copyright (C) " << year << ' ' << author << '\n'
<< "This program comes with ABSOLUTELY NO WARRANTY.\n"
<< "This is free software, and you are welcome to redistribute it\n";
}