1999-03-08 19:00:11 +00:00
|
|
|
/*
|
2000-02-03 23:50:32 +00:00
|
|
|
* Copyright (C) 1999, 2000 Internet Software Consortium.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
1999-03-08 19:00:11 +00:00
|
|
|
* Permission to use, copy, modify, and 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.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2000-07-27 09:55:03 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM 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.
|
1999-03-08 19:00:11 +00:00
|
|
|
*/
|
|
|
|
|
2000-08-01 01:33:37 +00:00
|
|
|
/* $Id: dbiterator.c,v 1.11 2000/08/01 01:22:16 tale Exp $ */
|
2000-06-22 22:00:42 +00:00
|
|
|
|
1999-03-08 19:00:11 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2000-04-28 01:12:23 +00:00
|
|
|
#include <isc/util.h>
|
1999-03-08 19:00:11 +00:00
|
|
|
|
|
|
|
#include <dns/dbiterator.h>
|
|
|
|
#include <dns/name.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
dns_dbiterator_destroy(dns_dbiterator_t **iteratorp) {
|
|
|
|
/*
|
|
|
|
* Destroy '*iteratorp'.
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(iteratorp != NULL);
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(*iteratorp));
|
|
|
|
|
|
|
|
(*iteratorp)->methods->destroy(iteratorp);
|
|
|
|
|
|
|
|
ENSURE(*iteratorp == NULL);
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-03-08 19:00:11 +00:00
|
|
|
dns_dbiterator_first(dns_dbiterator_t *iterator) {
|
|
|
|
/*
|
|
|
|
* Move the node cursor to the first node in the database (if any).
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
|
|
|
|
return (iterator->methods->first(iterator));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-09-02 16:43:45 +00:00
|
|
|
dns_dbiterator_last(dns_dbiterator_t *iterator) {
|
|
|
|
/*
|
|
|
|
* Move the node cursor to the first node in the database (if any).
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
|
|
|
|
return (iterator->methods->last(iterator));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-09-02 16:43:45 +00:00
|
|
|
dns_dbiterator_seek(dns_dbiterator_t *iterator, dns_name_t *name) {
|
|
|
|
/*
|
|
|
|
* Move the node cursor to the node with name 'name'.
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
|
|
|
|
return (iterator->methods->seek(iterator, name));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-09-02 16:43:45 +00:00
|
|
|
dns_dbiterator_prev(dns_dbiterator_t *iterator) {
|
|
|
|
/*
|
|
|
|
* Move the node cursor to the previous node in the database (if any).
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
|
|
|
|
return (iterator->methods->prev(iterator));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-03-08 19:00:11 +00:00
|
|
|
dns_dbiterator_next(dns_dbiterator_t *iterator) {
|
|
|
|
/*
|
1999-03-11 00:43:04 +00:00
|
|
|
* Move the node cursor to the next node in the database (if any).
|
1999-03-08 19:00:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
|
|
|
|
return (iterator->methods->next(iterator));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-03-08 19:00:11 +00:00
|
|
|
dns_dbiterator_current(dns_dbiterator_t *iterator, dns_dbnode_t **nodep,
|
|
|
|
dns_name_t *name)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Return the current node.
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
REQUIRE(nodep != NULL && *nodep == NULL);
|
|
|
|
REQUIRE(name == NULL || dns_name_hasbuffer(name));
|
|
|
|
|
|
|
|
return (iterator->methods->current(iterator, nodep, name));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-03-08 19:00:11 +00:00
|
|
|
dns_dbiterator_pause(dns_dbiterator_t *iterator) {
|
|
|
|
/*
|
|
|
|
* Pause iteration.
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
|
|
|
|
return (iterator->methods->pause(iterator));
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-04-01 04:02:33 +00:00
|
|
|
dns_dbiterator_origin(dns_dbiterator_t *iterator, dns_name_t *name) {
|
|
|
|
|
1999-03-08 19:00:11 +00:00
|
|
|
/*
|
|
|
|
* Return the origin to which returned node names are relative.
|
|
|
|
*/
|
|
|
|
|
|
|
|
REQUIRE(DNS_DBITERATOR_VALID(iterator));
|
|
|
|
REQUIRE(iterator->relative_names);
|
1999-04-01 04:02:33 +00:00
|
|
|
REQUIRE(dns_name_hasbuffer(name));
|
2000-08-01 01:33:37 +00:00
|
|
|
|
1999-04-01 04:02:33 +00:00
|
|
|
return (iterator->methods->origin(iterator, name));
|
1999-03-08 19:00:11 +00:00
|
|
|
}
|