Kea
1.9.9-git
|
Provides methods to access CSV file with DHCPv6 leases. More...
#include <csv_lease_file6.h>
Public Member Functions | |
CSVLeaseFile6 (const std::string &filename) | |
Constructor. More... | |
void | append (const Lease6 &lease) |
Appends the lease record to the CSV file. More... | |
bool | next (Lease6Ptr &lease) |
Reads next lease from the CSV file. More... | |
virtual void | open (const bool seek_to_end=false) |
Opens a lease file. More... | |
Public Member Functions inherited from isc::util::VersionedCSVFile | |
VersionedCSVFile (const std::string &filename) | |
Constructor. More... | |
virtual | ~VersionedCSVFile () |
Destructor. More... | |
void | addColumn (const std::string &col_name, const std::string &version, const std::string &default_value="") |
Adds metadata for a single column to the schema. More... | |
size_t | getInputHeaderCount () const |
Returns the number of columns found in the input header. More... | |
enum InputSchemaState | getInputSchemaState () const |
Fetches the state of the input file's schema. More... | |
std::string | getInputSchemaVersion () const |
Returns the schema version of the physical file. More... | |
size_t | getMinimumValidColumns () const |
Returns the minimum number of columns which must be present for the file to be considered valid. More... | |
std::string | getSchemaVersion () const |
text version of current schema supported by the file's metadata More... | |
size_t | getValidColumnCount () const |
Returns the number of valid columns found in the header For newly created files this will always match the number of defined columns (i.e. More... | |
const VersionedColumnPtr & | getVersionedColumn (const size_t index) const |
Fetch the column descriptor for a given index. More... | |
bool | needsConversion () const |
Returns true if the input file schema state is not CURRENT. More... | |
bool | next (CSVRow &row) |
Reads next row from the file file. More... | |
virtual void | recreate () |
Creates a new CSV file. More... | |
void | setMinimumValidColumns (const std::string &column_name) |
Sets the minimum number of valid columns based on a given column. More... | |
Public Member Functions inherited from isc::util::CSVFile | |
CSVFile (const std::string &filename) | |
Constructor. More... | |
virtual | ~CSVFile () |
Destructor. More... | |
void | addColumn (const std::string &col_name) |
Adds new column name. More... | |
void | append (const CSVRow &row) const |
Writes the CSV row into the file. More... | |
void | close () |
Closes the CSV file. More... | |
bool | exists () const |
Checks if the CSV file exists and can be opened for reading. More... | |
void | flush () const |
Flushes a file. More... | |
size_t | getColumnCount () const |
Returns the number of columns in the file. More... | |
size_t | getColumnIndex (const std::string &col_name) const |
Returns the index of the column having specified name. More... | |
std::string | getColumnName (const size_t col_index) const |
Returns the name of the column. More... | |
std::string | getFilename () const |
Returns the path to the CSV file. More... | |
std::string | getReadMsg () const |
Returns the description of the last error returned by the CSVFile::next function. More... | |
bool | next (CSVRow &row, const bool skip_validation=false) |
Reads next row from CSV file. More... | |
void | setReadMsg (const std::string &read_msg) |
Sets error message after row validation. More... | |
Public Member Functions inherited from isc::dhcp::LeaseFileStats | |
LeaseFileStats () | |
Constructor. More... | |
~LeaseFileStats () | |
Destructor. More... | |
void | clearStatistics () |
Clears the statistics. More... | |
uint32_t | getReadErrs () const |
Gets the number of errors when reading leases. More... | |
uint32_t | getReadLeases () const |
Gets the number of leases read. More... | |
uint32_t | getReads () const |
Gets the number of attempts to read a lease. More... | |
uint32_t | getWriteErrs () const |
Gets the number of errors when writing leases. More... | |
uint32_t | getWriteLeases () const |
Gets the number of leases written. More... | |
uint32_t | getWrites () const |
Gets the number of attempts to write a lease. More... | |
Additional Inherited Members | |
Public Types inherited from isc::util::VersionedCSVFile | |
enum | InputSchemaState { CURRENT, NEEDS_UPGRADE, NEEDS_DOWNGRADE } |
Possible input file schema states. More... | |
Static Public Member Functions inherited from isc::util::CSVFile | |
static CSVRow | EMPTY_ROW () |
Represents empty row. More... | |
Protected Member Functions inherited from isc::util::VersionedCSVFile | |
void | columnCountError (const CSVRow &row, const std::string &reason) |
Convenience method for adding an error message. More... | |
virtual bool | validateHeader (const CSVRow &header) |
Validates the header of a VersionedCSVFile. More... | |
Protected Member Functions inherited from isc::util::CSVFile | |
void | addColumnInternal (const std::string &col_name) |
Adds a column regardless if the file is open or not. More... | |
virtual bool | validate (const CSVRow &row) |
Validate the row read from a file. More... | |
Protected Attributes inherited from isc::dhcp::LeaseFileStats | |
uint32_t | read_errs_ |
Number of errors when reading. More... | |
uint32_t | read_leases_ |
Number of leases read. More... | |
uint32_t | reads_ |
Number of attempts to read a lease. More... | |
uint32_t | write_errs_ |
Number of errors when writing. More... | |
uint32_t | write_leases_ |
Number of lease written. More... | |
uint32_t | writes_ |
Number of attempts to write a lease. More... | |
Provides methods to access CSV file with DHCPv6 leases.
This class contains methods customized to read and write DHCPv6 leases from and to the CSV file. It expects that the CSV file being parsed contains a set of columns with well known names (initialized in the class constructor).
Lease6
is a structure that should be itself responsible for this validation (see http://oldkea.isc.org/ticket/2405). However, when #2405 is implemented, the next
function may need to be updated to use the validation capability of Lease6
. Definition at line 33 of file csv_lease_file6.h.
isc::dhcp::CSVLeaseFile6::CSVLeaseFile6 | ( | const std::string & | filename | ) |
Constructor.
Initializes columns of the lease file.
filename | Name of the lease file. |
Definition at line 19 of file csv_lease_file6.cc.
void isc::dhcp::CSVLeaseFile6::append | ( | const Lease6 & | lease | ) |
Appends the lease record to the CSV file.
This function doesn't throw exceptions itself. In theory, exceptions are possible when the index of the indexes of the values being written to the file are invalid. However, this would have been a programming error.
lease | Structure representing a DHCPv6 lease. |
BadValue | if the lease to be written has an empty DUID and is whose state is not STATE_DECLINED. |
Definition at line 34 of file csv_lease_file6.cc.
References isc::dhcp::Lease::addr_, isc::dhcp::Lease::basicStatesToText(), isc::dhcp::Lease::cltt_, isc::dhcp::Lease6::duid_, isc::dhcp::DUID::EMPTY(), isc::dhcp::Lease::fqdn_fwd_, isc::dhcp::Lease::fqdn_rev_, isc::util::CSVFile::getColumnCount(), isc::util::CSVFile::getColumnIndex(), isc::data::UserContext::getContext(), isc::dhcp::Lease::hostname_, isc::dhcp::Lease::hwaddr_, isc::dhcp::Lease6::iaid_, isc_throw, isc::dhcp::Lease6::preferred_lft_, isc::dhcp::Lease6::prefixlen_, isc::dhcp::Lease::state_, isc::dhcp::Lease::STATE_DECLINED, isc::dhcp::Lease::subnet_id_, isc::asiolink::IOAddress::toText(), isc::dhcp::Lease6::type_, isc::dhcp::Lease::valid_lft_, isc::dhcp::LeaseFileStats::write_errs_, isc::dhcp::LeaseFileStats::write_leases_, isc::util::CSVRow::writeAt(), isc::util::CSVRow::writeAtEscaped(), and isc::dhcp::LeaseFileStats::writes_.
bool isc::dhcp::CSVLeaseFile6::next | ( | Lease6Ptr & | lease | ) |
Reads next lease from the CSV file.
If this function hits an error during lease read, it sets the error message using CSVFile::setReadMsg
and returns false. The error string may be read using CSVFile::getReadMsg
.
This function is exception safe.
[out] | lease | Pointer to the lease read from CSV file or NULL pointer if lease hasn't been read. |
Lease6
validation mechanism should be used once ticket http://oldkea.isc.org/ticket/2405 is implemented. Definition at line 81 of file csv_lease_file6.cc.
References isc::dhcp::DUID::EMPTY(), isc_throw, isc::dhcp::LeaseFileStats::read_errs_, isc::dhcp::LeaseFileStats::read_leases_, isc::dhcp::LeaseFileStats::reads_, isc::util::CSVFile::setReadMsg(), and isc::dhcp::Lease::STATE_DECLINED.
|
virtual |
Opens a lease file.
This function calls the base class open to do the work of opening a file. It is used to clear any statistics associated with any previous use of the file While it doesn't throw any exceptions of its own the base class may do so.
Reimplemented from isc::util::VersionedCSVFile.
Definition at line 25 of file csv_lease_file6.cc.
References isc::dhcp::LeaseFileStats::clearStatistics().