aboutsummaryrefslogtreecommitdiff
path: root/vmime-master/src/vmime/parameterizedHeaderField.cpp
blob: 6815fad1bd06c2a7c3c8bba62575ade2de7942fd (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
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
//
// VMime library (http://www.vmime.org)
// Copyright (C) 2002 Vincent Richard <vincent@vmime.org>
//
// 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 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, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Linking this library statically or dynamically with other modules is making
// a combined work based on this library.  Thus, the terms and conditions of
// the GNU General Public License cover the whole combination.
//

#include "vmime/parameterizedHeaderField.hpp"
#include "vmime/text.hpp"
#include "vmime/parserHelpers.hpp"


namespace vmime {


parameterizedHeaderField::parameterizedHeaderField() {

}


parameterizedHeaderField::~parameterizedHeaderField() {

	removeAllParameters();
}


/*
     This class handles field contents of the following form:
     Field: VALUE; PARAM1="VALUE1"; PARAM2="VALUE2"...

     eg. RFC-1521

     content  :=   "Content-Type"  ":"  type  "/"  subtype  *(";" parameter)

     parameter := attribute "=" value

     attribute := token   ; case-insensitive

     value := token / quoted-string

     token  :=  1*<any (ASCII) CHAR except SPACE, CTLs, or tspecials>

     tspecials :=  "(" / ")" / "<" / ">" / "@"
                /  "," / ";" / ":" / "\" / <">
                /  "/" / "[" / "]" / "?" / "="
               ; Must be in quoted-string,
               ; to use within parameter values
*/


#ifndef VMIME_BUILDING_DOC

struct paramInfo {

	bool extended;
	std::vector <parameter::valueChunk> value;
	size_t start;
	size_t end;
};

#endif // VMIME_BUILDING_DOC


void parameterizedHeaderField::parseImpl(
	const parsingContext& ctx,
	const string& buffer,
	const size_t position,
	const size_t end,
	size_t* newPosition
) {

	const char* const pend = buffer.data() + end;
	const char* const pstart = buffer.data() + position;
	const char* p = pstart;

	// Skip non-significant whitespaces
	size_t valueStart = position;

	while (p < pend && parserHelpers::isSpace(*p)) {
		++p;
		++valueStart;
	}

	// Advance up to ';', if any
	size_t valueLength = 0;

	while (p < pend && *p != ';' && (!parserHelpers::isSpace(*p))) {  // FIXME: support ";" inside quoted or RFC-2047-encoded text

		++p;
		++valueLength;
	}

	// Trim whitespaces at the end of the value
	while (valueLength > 0 && parserHelpers::isSpace(buffer[valueStart + valueLength - 1])) {
		--valueLength;
	}

	// Parse value
	getValue()->parse(ctx, buffer, valueStart, valueStart + valueLength);

	// Reset parameters
	removeAllParameters();

	// If there is one or more parameters following...
	if (p < pend) {

		std::map <string, paramInfo> params;

		if (*p != ';') {

			while (p < pend && *p != ';') {  // FIXME: support ";" inside quoted or RFC-2047-encoded text
				++p;
			}
		}

		while (*p == ';') {

			// Skip ';'
			++p;

			while (p < pend && parserHelpers::isSpace(*p)) ++p;

			const size_t attrStart = position + (p - pstart);

			while (p < pend && !(*p == ';' || *p == '=')) {
				++p;
			}

			if (p >= pend || *p == ';') {

				// Hmmmm... we didn't found an '=' sign.
				// This parameter may not be valid so try to advance
				// to the next one, if there is one.
				while (p < pend && *p != ';')
					++p;

			} else {

				// Extract the attribute name
				size_t attrEnd = position + (p - pstart);

				while (attrEnd != attrStart && parserHelpers::isSpace(buffer[attrEnd - 1])) {
					--attrEnd;
				}

				// Skip '='
				++p;

				// Skip white-spaces between '=' and the value
				while (p < pend && parserHelpers::isSpace(*p)) ++p;

				// Extract the value
				string value;

				// -- this is a quoted-string
				if (*p == '"') {

					// Skip '"'
					++p;

					// Extract quoted-string
					bool escape = false;
					bool stop = false;

					std::ostringstream ss;
					size_t start = position + (p - pstart);

					for ( ; p < pend && !stop ; ++p) {

						if (escape) {

							escape = false;
							start = position + (p - pstart);

						} else {

							switch (*p) {

								case '"': {

									ss << string(
										buffer.begin() + start,
										buffer.begin() + position + (p - pstart)
									);

									stop = true;
									break;
								}
								case '\\': {

									ss << string(
										buffer.begin() + start,
										buffer.begin() + position + (p - pstart)
									);

									escape = true;
									break;
								}

							}
						}
					}

					if (!stop) {

						ss << string(
							buffer.begin() + start,
							buffer.begin() + position + (p - pstart)
						);
					}

					value = ss.str();

				// -- the value is a simple token
				} else {

					const size_t valStart = position + (p - pstart);

					while (p < pend && *p != ';') {
						++p;
					}

					size_t valEnd = position + (p - pstart);

					while (valEnd != valStart && parserHelpers::isSpace(buffer[valEnd - 1])) {
						--valEnd;
					}

					value = string(
						buffer.begin() + valStart,
						buffer.begin() + valEnd
					);
				}

				// Don't allow ill-formed parameters
				if (attrStart != attrEnd && value.length()) {

					string name(buffer.begin() + attrStart, buffer.begin() + attrEnd);

					// Check for RFC-2231 extended parameters
					bool extended = false;
					bool encoded = false;

					if (name[name.length() - 1] == '*') {

						name.erase(name.end() - 1, name.end());

						extended = true;
						encoded = true;
					}

					// Check for RFC-2231 multi-section parameters
					const size_t star = name.find_last_of('*');

					if (star != string::npos) {

						bool allDigits = true;

						for (size_t i = star + 1 ; allDigits && (i < name.length()) ; ++i) {
							allDigits = parserHelpers::isDigit(name[i]);
						}

						if (allDigits) {
							name.erase(name.begin() + star, name.end());
							extended = true;
						}

						// NOTE: we ignore section number, and we suppose that
						// the sequence is correct (ie. the sections appear
						// in order: param*0, param*1...)
					}

					// Add/replace/modify the parameter
					const std::map <string, paramInfo>::iterator it = params.find(name);

					if (it != params.end()) {

						paramInfo& info = (*it).second;

						// An extended parameter replaces a normal one
						if (!info.extended) {

							info.extended = extended;
							info.value.clear();
							info.start = attrStart;
						}

						// Append a new section for a multi-section parameter
						parameter::valueChunk chunk;
						chunk.encoded = encoded;
						chunk.data = value;

						info.value.push_back(chunk);
						info.end = position + (p - pstart);

					} else {

						parameter::valueChunk chunk;
						chunk.encoded = encoded;
						chunk.data = value;

						paramInfo info;
						info.extended = extended;
						info.value.push_back(chunk);
						info.start = attrStart;
						info.end = position + (p - pstart);

						// Insert a new parameter
						params.insert(std::map <string, paramInfo>::value_type(name, info));
					}
				}

				// Skip white-spaces after this parameter
				while (p < pend && parserHelpers::isSpace(*p)) ++p;
			}
		}

		for (std::map <string, paramInfo>::const_iterator it = params.begin() ;
		     it != params.end() ; ++it) {

			const paramInfo& info = (*it).second;

			// Append this parameter to the list
			shared_ptr <parameter> param = make_shared <parameter>((*it).first);

			param->parse(ctx, info.value);
			param->setParsedBounds(info.start, info.end);

			appendParameter(param);
		}
	}

	if (newPosition) {
		*newPosition = end;
	}
}


void parameterizedHeaderField::generateImpl(
	const generationContext& ctx,
	utility::outputStream& os,
	const size_t curLinePos,
	size_t* newLinePos
) const {

	size_t pos = curLinePos;

	// Parent header field
	headerField::generateImpl(ctx, os, pos, &pos);

	// Parameters
	for (std::vector <shared_ptr <parameter> >::const_iterator
	     it = m_params.begin() ; it != m_params.end() ; ++it) {

		os << "; ";
		pos += 2;

		(*it)->generate(ctx, os, pos, &pos);
	}

	if (newLinePos) {
		*newLinePos = pos;
	}
}


size_t parameterizedHeaderField::getGeneratedSize(const generationContext& ctx)
{
	size_t size = headerField::getGeneratedSize(ctx);

	for (std::vector <shared_ptr <parameter> >::const_iterator
	     it = m_params.begin() ; it != m_params.end() ; ++it) {

		size += 2;  // "; "
		size += (*it)->getGeneratedSize(ctx);
	}

	return size;
}


void parameterizedHeaderField::copyFrom(const component& other) {

	headerField::copyFrom(other);

	const parameterizedHeaderField& source = dynamic_cast<const parameterizedHeaderField&>(other);

	removeAllParameters();

	for (std::vector <shared_ptr <parameter> >::const_iterator i = source.m_params.begin() ;
	     i != source.m_params.end() ; ++i) {

		appendParameter(vmime::clone(*i));
	}
}


parameterizedHeaderField& parameterizedHeaderField::operator=(const parameterizedHeaderField& other) {

	copyFrom(other);
	return *this;
}


bool parameterizedHeaderField::hasParameter(const string& paramName) const {

	const string name = utility::stringUtils::toLower(paramName);

	std::vector <shared_ptr <parameter> >::const_iterator pos = m_params.begin();
	const std::vector <shared_ptr <parameter> >::const_iterator end = m_params.end();

	for ( ; pos != end && utility::stringUtils::toLower((*pos)->getName()) != name ; ++pos) {}

	return pos != end;
}


shared_ptr <parameter> parameterizedHeaderField::findParameter(const string& paramName) const {

	const string name = utility::stringUtils::toLower(paramName);

	// Find the first parameter that matches the specified name
	std::vector <shared_ptr <parameter> >::const_iterator pos = m_params.begin();
	const std::vector <shared_ptr <parameter> >::const_iterator end = m_params.end();

	for ( ; pos != end && utility::stringUtils::toLower((*pos)->getName()) != name ; ++pos) {}

	// No parameter with this name can be found
	if (pos == end) {
		return null;
	}

	// Else, return a reference to the existing parameter
	return *pos;
}


shared_ptr <parameter> parameterizedHeaderField::getParameter(const string& paramName) {

	const string name = utility::stringUtils::toLower(paramName);

	// Find the first parameter that matches the specified name
	std::vector <shared_ptr <parameter> >::const_iterator pos = m_params.begin();
	const std::vector <shared_ptr <parameter> >::const_iterator end = m_params.end();

	for ( ; pos != end && utility::stringUtils::toLower((*pos)->getName()) != name ; ++pos) {}

	// If no parameter with this name can be found, create a new one
	if (pos == end) {

		shared_ptr <parameter> param = make_shared <parameter>(paramName);

		appendParameter(param);

		// Return a reference to the new parameter
		return param;

	// Else, return a reference to the existing parameter
	} else {

		return *pos;
	}
}


void parameterizedHeaderField::appendParameter(const shared_ptr <parameter>& param) {

	m_params.push_back(param);
}


void parameterizedHeaderField::insertParameterBefore(
	const shared_ptr <parameter>& beforeParam,
	const shared_ptr <parameter>& param
) {

	const std::vector <shared_ptr <parameter> >::iterator it =
		std::find(m_params.begin(), m_params.end(), beforeParam);

	if (it == m_params.end()) {
		throw std::out_of_range("Invalid position");
	}

	m_params.insert(it, param);
}


void parameterizedHeaderField::insertParameterBefore(
	const size_t pos,
	const shared_ptr <parameter>& param
) {

	if (pos >= m_params.size()) {
		throw std::out_of_range("Invalid position");
	}

	m_params.insert(m_params.begin() + pos, param);
}


void parameterizedHeaderField::insertParameterAfter(
	const shared_ptr <parameter>& afterParam,
	const shared_ptr <parameter>& param
) {

	const std::vector <shared_ptr <parameter> >::iterator it =
		std::find(m_params.begin(), m_params.end(), afterParam);

	if (it == m_params.end()) {
		throw std::out_of_range("Invalid position");
	}

	m_params.insert(it + 1, param);
}


void parameterizedHeaderField::insertParameterAfter(
	const size_t pos,
	const shared_ptr <parameter>& param
) {

	if (pos >= m_params.size()) {
		throw std::out_of_range("Invalid position");
	}

	m_params.insert(m_params.begin() + pos + 1, param);
}


void parameterizedHeaderField::removeParameter(const shared_ptr <parameter>& param) {

	const std::vector <shared_ptr <parameter> >::iterator it =
		std::find(m_params.begin(), m_params.end(), param);

	if (it == m_params.end()) {
		throw std::out_of_range("Invalid position");
	}

	m_params.erase(it);
}


void parameterizedHeaderField::removeParameter(const size_t pos) {

	const std::vector <shared_ptr <parameter> >::iterator it = m_params.begin() + pos;

	m_params.erase(it);
}


void parameterizedHeaderField::removeAllParameters() {

	m_params.clear();
}


size_t parameterizedHeaderField::getParameterCount() const {

	return m_params.size();
}


bool parameterizedHeaderField::isEmpty() const {

	return m_params.empty();
}


const shared_ptr <parameter> parameterizedHeaderField::getParameterAt(const size_t pos) {

	return m_params[pos];
}


const shared_ptr <const parameter> parameterizedHeaderField::getParameterAt(const size_t pos) const {

	return m_params[pos];
}


const std::vector <shared_ptr <const parameter> > parameterizedHeaderField::getParameterList() const {

	std::vector <shared_ptr <const parameter> > list;

	list.reserve(m_params.size());

	for (std::vector <shared_ptr <parameter> >::const_iterator it = m_params.begin() ;
	     it != m_params.end() ; ++it) {

		list.push_back(*it);
	}

	return list;
}


const std::vector <shared_ptr <parameter> > parameterizedHeaderField::getParameterList() {

	return m_params;
}


const std::vector <shared_ptr <component> > parameterizedHeaderField::getChildComponents() {

	std::vector <shared_ptr <component> > list = headerField::getChildComponents();

	for (std::vector <shared_ptr <parameter> >::iterator it = m_params.begin() ;
	     it != m_params.end() ; ++it) {

		list.push_back(*it);
	}

	return list;
}


} // vmime