123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- // Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include <config.h>
- #include <string>
- #include <boost/lexical_cast.hpp>
- #include <exceptions/exceptions.h>
- #include <dns/name.h>
- #include <dns/messagerenderer.h>
- #include <dns/rdata.h>
- #include <dns/rdataclass.h>
- #include <dns/character_string.h>
- #include <util/strutil.h>
- using namespace std;
- using namespace boost;
- using namespace isc::util;
- using namespace isc::dns;
- using namespace isc::dns::characterstr;
- // BEGIN_ISC_NAMESPACE
- // BEGIN_RDATA_NAMESPACE
- HINFO::HINFO(const std::string& hinfo_str) {
- string::const_iterator input_iterator = hinfo_str.begin();
- cpu_ = getNextCharacterString(hinfo_str, input_iterator);
- skipLeftSpaces(hinfo_str, input_iterator);
- os_ = getNextCharacterString(hinfo_str, input_iterator);
- }
- HINFO::HINFO(InputBuffer& buffer, size_t rdata_len) {
- cpu_ = getNextCharacterString(buffer, rdata_len);
- os_ = getNextCharacterString(buffer, rdata_len);
- }
- HINFO::HINFO(const HINFO& source):
- Rdata(), cpu_(source.cpu_), os_(source.os_)
- {
- }
- std::string
- HINFO::toText() const {
- string result;
- result += "\"";
- result += cpu_;
- result += "\" \"";
- result += 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);
- if (cpu_ < other_hinfo.cpu_) {
- return (-1);
- } else if (cpu_ > other_hinfo.cpu_) {
- return (1);
- }
- if (os_ < other_hinfo.os_) {
- return (-1);
- } else if (os_ > other_hinfo.os_) {
- return (1);
- }
- return (0);
- }
- const std::string&
- HINFO::getCPU() const {
- return (cpu_);
- }
- const std::string&
- HINFO::getOS() const {
- return (os_);
- }
- void
- HINFO::skipLeftSpaces(const std::string& input_str,
- std::string::const_iterator& input_iterator)
- {
- if (input_iterator >= input_str.end()) {
- isc_throw(InvalidRdataText,
- "Invalid HINFO text format, field is missing.");
- }
- if (!isspace(*input_iterator)) {
- isc_throw(InvalidRdataText,
- "Invalid HINFO text format, fields are not separated by space.");
- }
- // Skip white spaces
- while (input_iterator < input_str.end() && isspace(*input_iterator)) {
- ++input_iterator;
- }
- }
- // END_RDATA_NAMESPACE
- // END_ISC_NAMESPACE
|