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
|
// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <exceptions/exceptions.h>
#include <dns/exceptions.h>
#include <dns/rdata.h>
#include <dns/rdataclass.h>
#include <dns/rdata/generic/detail/char_string.h>
#include <util/buffer.h>
using namespace std;
using namespace isc::util;
using namespace isc::dns;
// BEGIN_ISC_NAMESPACE
// BEGIN_RDATA_NAMESPACE
class HINFOImpl {
public:
HINFOImpl(const std::string& hinfo_str) {
std::istringstream ss(hinfo_str);
MasterLexer lexer;
lexer.pushSource(ss);
try {
parseHINFOData(lexer);
// Should be at end of data now
if (lexer.getNextToken(MasterToken::QSTRING, true).getType() !=
MasterToken::END_OF_FILE) {
isc_throw(InvalidRdataText,
"Invalid HINFO text format: too many fields.");
}
} catch (const MasterLexer::LexerError& ex) {
isc_throw(InvalidRdataText, "Failed to construct HINFO RDATA from "
<< hinfo_str << "': " << ex.what());
}
}
HINFOImpl(InputBuffer& buffer, size_t rdata_len) {
rdata_len -= detail::bufferToCharString(buffer, rdata_len, cpu);
rdata_len -= detail::bufferToCharString(buffer, rdata_len, os);
if (rdata_len != 0) {
isc_throw(isc::dns::DNSMessageFORMERR, "Error in parsing " <<
"HINFO RDATA: bytes left at end: " <<
static_cast<int>(rdata_len));
}
}
HINFOImpl(MasterLexer& lexer)
{
parseHINFOData(lexer);
}
private:
void
parseHINFOData(MasterLexer& lexer) {
MasterToken token = lexer.getNextToken(MasterToken::QSTRING);
stringToCharString(token.getStringRegion(), cpu);
token = lexer.getNextToken(MasterToken::QSTRING);
stringToCharString(token.getStringRegion(), os);
}
public:
detail::CharString cpu;
detail::CharString os;
};
HINFO::HINFO(const std::string& hinfo_str) : impl_(new HINFOImpl(hinfo_str))
{}
HINFO::HINFO(InputBuffer& buffer, size_t rdata_len) :
impl_(new HINFOImpl(buffer, rdata_len))
{}
HINFO::HINFO(const HINFO& source):
Rdata(), impl_(new HINFOImpl(*source.impl_))
{
}
HINFO::HINFO(MasterLexer& lexer, const Name*,
MasterLoader::Options, MasterLoaderCallbacks&) :
impl_(new HINFOImpl(lexer))
{}
HINFO&
HINFO::operator=(const HINFO& source)
{
impl_.reset(new HINFOImpl(*source.impl_));
return (*this);
}
HINFO::~HINFO() {
}
std::string
HINFO::toText() const {
string result;
result += "\"";
result += detail::charStringToString(impl_->cpu);
result += "\" \"";
result += detail::charStringToString(impl_->os);
result += "\"";
return (result);
}
void
HINFO::toWire(OutputBuffer& buffer) const {
toWireHelper(buffer);
}
void
HINFO::toWire(AbstractMessageRenderer& renderer) const {
toWireHelper(renderer);
}
int
HINFO::compare(const Rdata& other) const {
const HINFO& other_hinfo = dynamic_cast<const HINFO&>(other);
const int cmp = compareCharStrings(impl_->cpu, other_hinfo.impl_->cpu);
if (cmp != 0) {
return (cmp);
}
return (compareCharStrings(impl_->os, other_hinfo.impl_->os));
}
const std::string
HINFO::getCPU() const {
return (detail::charStringToString(impl_->cpu));
}
const std::string
HINFO::getOS() const {
return (detail::charStringToString(impl_->os));
}
template <typename T>
void
HINFO::toWireHelper(T& outputer) const {
outputer.writeData(&impl_->cpu[0], impl_->cpu.size());
outputer.writeData(&impl_->os[0], impl_->os.size());
}
// END_RDATA_NAMESPACE
// END_ISC_NAMESPACE
|