summaryrefslogtreecommitdiff
path: root/src/format.cpp
blob: 20fa6d7a2e769ca3f867bb56ca05a6453201b71a (plain)
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
/***************************************************************************
 *   Copyright (C) 2008-2014 by Andrzej Rybczak                            *
 *   electricityispower@gmail.com                                          *
 *                                                                         *
 *   This program 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 2 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, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
 ***************************************************************************/

#include <stdexcept>

#include "format.h"
#include "utility/type_conversions.h"

namespace {

template <typename CharT> using string = std::basic_string<CharT>;
template <typename CharT> using iterator = typename std::basic_string<CharT>::const_iterator;
template <typename CharT> using expressions = std::vector<Format::Expression<CharT>>;

std::string invalidCharacter(char c)
{
	return "invalid character '" + boost::lexical_cast<std::string>(c) + "'";
}

template <typename CharT>
void throwError(const string<CharT> &s, iterator<CharT> current, std::string msg)
{
	throw std::runtime_error(
		std::move(msg) + " at position " + boost::lexical_cast<std::string>(current - s.begin())
	);
}

template <typename CharT>
void rangeCheck(const string<CharT> &s, iterator<CharT> current, iterator<CharT> end)
{
	if (current >= end)
		throwError(s, current, "unexpected end");
}

template <typename CharT>
expressions<CharT> parseBracket(const string<CharT> &s,
                                iterator<CharT> it, iterator<CharT> end)
{
	string<CharT> token;
	expressions<CharT> tmp, result;
	auto push_token = [&] {
		result.push_back(std::move(token));
	};
	for (; it != end; ++it)
	{
		if (*it == '{')
		{
			push_token();
			bool done;
			Format::Any<CharT> any;
			do
			{
				auto jt = it;
				done = true;
				// get to the corresponding closing bracket
				unsigned brackets = 1;
				while (brackets > 0)
				{
					if (++jt == end)
						break;
					if (*jt == '{')
						++brackets;
					else if (*jt == '}')
						--brackets;
				}
				// check if we're still in range
				rangeCheck(s, jt, end);
				// skip the opening bracket
				++it;
				// recursively parse the bracket
				tmp = parseBracket(s, it, jt);
				// if the inner bracket contains only one expression,
				// put it as is. otherwise require all of them.
				if (tmp.size() == 1)
					any.base().push_back(std::move(tmp[0]));
				else
					any.base().push_back(Format::All<CharT>(std::move(tmp)));
				it = jt;
				// check for the alternative
				++jt;
				if (jt != end && *jt == '|')
				{
					++jt;
					rangeCheck(s, jt, end);
					if (*jt != '{')
						throwError(s, jt, invalidCharacter(*jt) + ", expected '{'");
					it = jt;
					done = false;
				}
			}
			while (!done);
			assert(!any.base().empty());
			// if there was only one bracket, append empty branch
			// so that it always evaluates to true. otherwise put
			// it as is.
			if (any.base().size() == 1)
				any.base().push_back(string<CharT>());
			result.push_back(std::move(any));
		}
		else if (*it == '%')
		{
			++it;
			rangeCheck(s, it, end);
			// %% is escaped %
			if (*it == '%')
			{
				token += '%';
				continue;
			}
			push_token();
			// check for tag delimiter
			unsigned delimiter = 0;
			if (isdigit(*it))
			{
				std::string sdelimiter;
				do
					sdelimiter += *it++;
				while (it != end && isdigit(*it));
				rangeCheck(s, it, end);
				delimiter = boost::lexical_cast<unsigned>(sdelimiter);
			}
			auto f = charToGetFunction(*it);
			if (f == nullptr)
				throwError(s, it, invalidCharacter(*it));
			result.push_back(Format::SongTag(f, delimiter));
		}
		else if (*it == '$')
		{
			++it;
			rangeCheck(s, it, end);
			// $$ is escaped $
			if (*it == '$')
			{
				token += '$';
				continue;
			}
			push_token();
			if (isdigit(*it))
			{
				auto color = charToColor(*it);
				result.push_back(color);
			}
			else if (*it == 'R')
				result.push_back(Format::AlignRight());
			else if (*it == 'b')
				result.push_back(NC::Format::Bold);
			else if (*it == 'u')
				result.push_back(NC::Format::Underline);
			else if (*it == 'a')
				result.push_back(NC::Format::AltCharset);
			else if (*it == 'r')
				result.push_back(NC::Format::Reverse);
			else if (*it == '/')
			{
				++it;
				rangeCheck(s, it, end);
				if (*it == 'b')
					result.push_back(NC::Format::NoBold);
				else if (*it == 'u')
					result.push_back(NC::Format::NoUnderline);
				else if (*it == 'a')
					result.push_back(NC::Format::NoAltCharset);
				else if (*it == 'r')
					result.push_back(NC::Format::NoReverse);
				else
					throwError(s, it, invalidCharacter(*it));
			}
			else
				throwError(s, it, invalidCharacter(*it));
		}
		else
			token += *it;
	}
	push_token();
	return result;
}

}

namespace Format {

AST<char> parse(const std::string &s)
{
	return AST<char>(parseBracket(s, s.begin(), s.end()));
}

AST<wchar_t> wparse(const std::wstring &s)
{
	return AST<wchar_t>(parseBracket(s, s.begin(), s.end()));
}

}