// Copyright (C) 2014 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 using namespace isc::asiolink; using namespace isc::util; namespace isc { namespace dhcp { CSVLeaseFile6::CSVLeaseFile6(const std::string& filename) : CSVFile(filename) { initColumns(); } void CSVLeaseFile6::append(const Lease6& lease) const { CSVRow row(getColumnCount()); row.writeAt(getColumnIndex("address"), lease.addr_.toText()); row.writeAt(getColumnIndex("duid"), lease.duid_->toText()); row.writeAt(getColumnIndex("valid_lifetime"), lease.valid_lft_); row.writeAt(getColumnIndex("expire"), lease.cltt_ + lease.valid_lft_); row.writeAt(getColumnIndex("subnet_id"), lease.subnet_id_); row.writeAt(getColumnIndex("pref_lifetime"), lease.preferred_lft_); row.writeAt(getColumnIndex("lease_type"), lease.type_); row.writeAt(getColumnIndex("iaid"), lease.iaid_); row.writeAt(getColumnIndex("prefix_len"), static_cast(lease.prefixlen_)); row.writeAt(getColumnIndex("fqdn_fwd"), lease.fqdn_fwd_); row.writeAt(getColumnIndex("fqdn_rev"), lease.fqdn_rev_); row.writeAt(getColumnIndex("hostname"), lease.hostname_); CSVFile::append(row); } bool CSVLeaseFile6::next(Lease6Ptr& lease) { // Read the CSV row and try to create a lease from the values read. // This may easily result in exception. We don't want this function // to throw exceptions, so we catch them all and rather return the // false value. try { // Get the row of CSV values. CSVRow row; CSVFile::next(row); // The empty row signals EOF. if (row == CSVFile::EMPTY_ROW()) { lease.reset(); return (true); } lease.reset(new Lease6(readType(row), readAddress(row), readDUID(row), readIAID(row), readPreferred(row), readValid(row), 0, 0, // t1, t2 = 0 readSubnetID(row), readPrefixLen(row))); lease->cltt_ = readCltt(row); lease->fqdn_fwd_ = readFqdnFwd(row); lease->fqdn_rev_ = readFqdnRev(row); lease->hostname_ = readHostname(row); } catch (std::exception& ex) { // The lease might have been created, so let's set it back to NULL to // signal that lease hasn't been parsed. lease.reset(); setReadMsg(ex.what()); return (false); } return (true); } void CSVLeaseFile6::initColumns() { addColumn("address"); addColumn("duid"); addColumn("valid_lifetime"); addColumn("expire"); addColumn("subnet_id"); addColumn("pref_lifetime"); addColumn("lease_type"); addColumn("iaid"); addColumn("prefix_len"); addColumn("fqdn_fwd"); addColumn("fqdn_rev"); addColumn("hostname"); } Lease::Type CSVLeaseFile6::readType(const CSVRow& row) { return (static_cast (row.readAndConvertAt(getColumnIndex("lease_type")))); } IOAddress CSVLeaseFile6::readAddress(const CSVRow& row) { IOAddress address(row.readAt(getColumnIndex("address"))); return (address); } DuidPtr CSVLeaseFile6::readDUID(const util::CSVRow& row) { DuidPtr duid(new DUID(DUID::fromText(row.readAt(getColumnIndex("duid"))))); return (duid); } uint32_t CSVLeaseFile6::readIAID(const CSVRow& row) { uint32_t iaid = row.readAndConvertAt(getColumnIndex("iaid")); return (iaid); } uint32_t CSVLeaseFile6::readPreferred(const CSVRow& row) { uint32_t pref = row.readAndConvertAt(getColumnIndex("pref_lifetime")); return (pref); } uint32_t CSVLeaseFile6::readValid(const CSVRow& row) { uint32_t valid = row.readAndConvertAt(getColumnIndex("valid_lifetime")); return (valid); } uint32_t CSVLeaseFile6::readCltt(const CSVRow& row) { uint32_t cltt = row.readAndConvertAt(getColumnIndex("expire")) - readValid(row); return (cltt); } SubnetID CSVLeaseFile6::readSubnetID(const CSVRow& row) { SubnetID subnet_id = row.readAndConvertAt(getColumnIndex("subnet_id")); return (subnet_id); } uint8_t CSVLeaseFile6::readPrefixLen(const CSVRow& row) { int prefixlen = row.readAndConvertAt(getColumnIndex("prefix_len")); return (static_cast(prefixlen)); } bool CSVLeaseFile6::readFqdnFwd(const CSVRow& row) { bool fqdn_fwd = row.readAndConvertAt(getColumnIndex("fqdn_fwd")); return (fqdn_fwd); } bool CSVLeaseFile6::readFqdnRev(const CSVRow& row) { bool fqdn_rev = row.readAndConvertAt(getColumnIndex("fqdn_rev")); return (fqdn_rev); } std::string CSVLeaseFile6::readHostname(const CSVRow& row) { std::string hostname = row.readAt(getColumnIndex("hostname")); return (hostname); } } // end of namespace isc::dhcp } // end of namespace isc