summaryrefslogtreecommitdiff
path: root/src/mime.cc
blob: accaee6aa6eac715882507fab064531ea3a3669c (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
/**
 *  @file mime.cc
 *  @brief  Implementation of main mime parser components
 *  @author Andreas Aardal Hanssen
 *  @date 2002-2005
 */

#include "mime.h"

#include "convert.h"

#include <exception>
#include <iostream>
#include <map>
#include <string>
#include <vector>

#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>

using std::string;

Binc::MimeDocument::MimeDocument() : MimePart()
{
  allIsParsed = false;
  headerIsParsed = false;
}

Binc::MimeDocument::~MimeDocument() {}

void Binc::MimeDocument::clear() const
{
  members.clear();
  h.clear();
  headerIsParsed = false;
  allIsParsed = false;
}

void Binc::MimePart::clear() const
{
  members.clear();
  h.clear();
}

Binc::MimePart::MimePart()
{
  size = 0;
  messagerfc822 = false;
  multipart = false;

  nlines = 0;
  nbodylines = 0;
}

Binc::MimePart::~MimePart() {}

Binc::HeaderItem::HeaderItem() {}

Binc::HeaderItem::HeaderItem(const string &key, const string &value)
{
  this->key = key;
  this->value = value;
}

Binc::Header::Header() {}

Binc::Header::~Header() {}

bool Binc::Header::getFirstHeader(const string &key, HeaderItem &dest) const
{
  string k = key;
  lowercase(k);

  for (const auto &i : content) {
    string tmp = i.getKey();
    lowercase(tmp);

    if (tmp == k) {
      dest = i;
      return true;
    }
  }
  return false;
}

bool Binc::Header::getAllHeaders(const string &key, std::vector<HeaderItem> &dest) const
{
  string k = key;
  lowercase(k);

  for (std::vector<HeaderItem>::const_iterator i = content.begin(); i != content.end(); ++i) {
    string tmp = (*i).getKey();
    lowercase(tmp);
    if (tmp == k) dest.push_back(*i);
  }

  return (dest.size() != 0);
}

void Binc::Header::clear() const
{
  content.clear();
}

void Binc::Header::add(const string &key, const string &value)
{
  content.push_back(HeaderItem(key, value));
}