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
|
// desc_parse.cc
//
// Copyright 2004-2008 Daniel Burrows
//
// 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; see the file COPYING. If not, write to
// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
//
// Parses a description into a cw::fragment.
#include "desc_parse.h"
#include "aptitude.h"
#include "apt.h" // For aptcfg.
#include "config_signal.h" // For aptcfg.
using namespace std;
namespace cw = cwidget;
// Notes on bulletting:
//
// A line beginning with two or more spaces, followed by a bullet
// character and a space, is considered to be an element of a bulleted
// list. Every succeeding line that begins with N+1 or more spaces,
// where N is the number of spaces preceding the bullet, is considered
// to be part of the same bulleted list, and is processed as if N+1
// spaces had been stripped from its left margin, with two exceptions:
//
// * if the N+2nd character is not a space, the line is formatted as
// if a leading space were present. (see below)
// * lines containing a space followed by a full stop terminate a
// paragraph but do NOT break the list.
// * Full stops at the beginning of a line of the list are ignored
// (even though shifting them left would put them at the front
// of a line).
//
// Bullet characters are (maybe) "-", "+", and "*"; the
// frontend may render them literally or modify their appearence as it
// deems appropriate.
/** Scans for text at a single indent level and returns a fragment
* corresponding to it.
*
* \param desc the string from which the description should be built.
* \param level how many list indent levels have been entered; used
* to choose bullet cw::style.
*
* \param indent the number of spaces to strip from the left-hand
* side of each line. If a line with less than this many spaces is
* encountered, start is placed at the beginning of the line and we
* return.
*
* \param start the current location in the string; will be updated
* to reflect how many characters were consumed. This should be
* placed after the "nspaces" indentation -- but it will be updated
* to be placed at the beginning of a line (0 indentation).
*
* \return the new cw::fragment.
*/
static void make_level_fragment(const wstring &desc,
wstring::size_type indent,
wstring::size_type &start,
bool recognize_bullets,
std::vector<aptitude::description_element_ref> &output)
{
bool first=true;
while(start<desc.size())
{
wstring::size_type loc=start;
unsigned int nspaces;
if(!first)
{
nspaces=0;
while(loc<desc.size() && desc[loc]==L' ' && nspaces<indent)
{
++loc;
++nspaces;
}
// This handles the case of " .\n" breaking list paragraphs.
// I arbitrarily put the paragraph break inside the indented
// text even when it actually terminates the list.
if(nspaces == 1 && loc < desc.size() && desc[loc] == L'.')
; // Handled uniformly below for both this case and the
// case of a leading blank line.
else if(nspaces < indent) // Anything but a " .\n" that has
// the wrong indent will break the
// list.
break;
}
else
{
nspaces=indent;
first=false;
}
// Only insert blank lines for full stops that have exactly one
// space; other full stops are treated as part of a paragraph.
if(nspaces == 1 && desc[loc] == '.')
{
output.push_back(aptitude::description_element::make_blank_line());
while(loc < desc.size() && desc[loc] != L'\n')
++loc;
if(loc < desc.size())
++loc;
start=loc;
continue; // Skip the switch statement below.
}
switch(desc[loc])
{
case L' ':
{
// Stores the number of spaces up to a bullet, if any.
unsigned int nspaces2=nspaces+1;
++loc;
// Provisionally check if it's a bulletted line --
// *ignoring leading spaces*.
wstring::size_type loc2=loc;
while(loc2<desc.size() && desc[loc2] == L' ')
{
++loc2;
++nspaces2;
}
if(recognize_bullets &&
loc2 + 1 < desc.size() &&
(desc[loc2] == L'+' ||
desc[loc2] == L'-' ||
desc[loc2] == L'*') &&
desc[loc2 + 1] == L' ')
{
// Start a list item (i.e., an indented region).
start = loc2 + 2;
std::vector<aptitude::description_element_ref> item_contents;
make_level_fragment(desc,
nspaces2 + 2,
start,
recognize_bullets,
item_contents);
output.push_back(aptitude::description_element::make_bullet_list(item_contents));
}
else
{
int amt=0;
while(loc+amt<desc.size() && desc[loc+amt]!=L'\n')
++amt;
output.push_back(aptitude::description_element::make_literal(wstring(desc, loc, amt)));
loc+=amt;
if(loc<desc.size())
++loc;
start=loc;
}
}
break;
default:
// It's a paragraph.
{
bool cont=true;
wstring::size_type amt=0;
wstring par=L"";
do {
amt=0;
while(loc+amt<desc.size() && desc[loc+amt]!=L'\n')
++amt;
par=par+wstring(desc, loc, amt);
loc+=amt;
// If we hit a newline and didn't just output a whitespace
// character, insert one.
if(loc<desc.size() && par.size()>0 && par[par.size()-1]!=' ')
par+=L" ";
// Skip the newline
if(loc<desc.size())
++loc;
// Update start.
start=loc;
// Find how much indentation this line has.
nspaces=0;
while(loc<desc.size() && desc[loc]==L' ')
{
++loc;
++nspaces;
}
// Check if we should continue (if not, we back up and
// start parsing again from "start"). Note that *any*
// change in the indentation requires us to restart --
// more indentation is a literal line, while less means
// we should exit this indent level.
if(nspaces != indent)
cont=false;
else if(loc>=desc.size())
cont=false;
else if(nspaces == 1 && desc[loc] == '.')
cont=false;
} while(cont);
output.push_back(aptitude::description_element::make_paragraph(par));
}
}
}
}
namespace aptitude
{
void parse_desc(const std::wstring &desc,
std::vector<description_element_ref> &output)
{
wstring::size_type loc = 0;
// Skip the short description
while(loc < desc.size() && desc[loc]!=L'\n')
++loc;
if(loc < desc.size()) // Skip the '\n'
++loc;
// Skip leading whitespace on the first line if there is any.
if(loc<desc.size() && desc[loc] == L' ')
++loc;
// The initial indentation level is 1 because in a Packages file,
// all Description lines get at least one character of indentation
// and we want to strip that off.
make_level_fragment(desc, 1, loc,
aptcfg->FindB(PACKAGE "::Parse-Description-Bullets",
true),
output);
}
}
|