blob: 33d216ed5e62c8254732436b43ed906c07e05cd5 (
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
|
/**
* @file address.cc
* @brief Implementation of the Address class
* @author Andreas Aardal Hanssen
* @date 2005
*/
#include "address.h"
#include "convert.h"
#include <string>
using namespace Binc;
using std::string;
Address::Address(const string &name, const string &addr)
{
auto pos = addr.find('@');
this->name = name;
if (pos != string::npos) {
this->local = addr.substr(0, pos);
this->host = addr.substr(pos + 1);
} else {
this->local = addr;
}
}
Address::Address(const string &wholeaddress)
{
auto start = wholeaddress.find('<');
string addr;
if (start != string::npos)
addr = wholeaddress.substr(start + 1);
else
addr = wholeaddress;
trim(addr, "<>");
if (start != string::npos)
name = wholeaddress.substr(0, start);
else
name = "";
trim(name);
trim(name, "\"");
start = addr.find('@');
local = addr.substr(0, start);
host = addr.substr(start + 1);
trim(local);
trim(host);
trim(name);
}
string Address::toParenList(void) const
{
string tmp = "(";
tmp += name == "" ? "NIL" : toImapString(name);
tmp += " NIL ";
tmp += local == "" ? "\"\"" : toImapString(local);
tmp += " ";
tmp += host == "" ? "\"\"" : toImapString(host);
tmp += ")";
return tmp;
}
|