Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Adam Osuchowski
Kea
Commits
7a2d5ea8
Commit
7a2d5ea8
authored
Dec 10, 2012
by
JINMEI Tatuya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2470] added RRCollator class with some simpler cases of def and tests
parent
50ca8b1b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
242 additions
and
0 deletions
+242
-0
src/lib/dns/Makefile.am
src/lib/dns/Makefile.am
+1
-0
src/lib/dns/rrcollator.cc
src/lib/dns/rrcollator.cc
+77
-0
src/lib/dns/rrcollator.h
src/lib/dns/rrcollator.h
+46
-0
src/lib/dns/tests/Makefile.am
src/lib/dns/tests/Makefile.am
+1
-0
src/lib/dns/tests/rrcollator_unittest.cc
src/lib/dns/tests/rrcollator_unittest.cc
+117
-0
No files found.
src/lib/dns/Makefile.am
View file @
7a2d5ea8
...
...
@@ -117,6 +117,7 @@ libb10_dns___la_SOURCES += rrparamregistry.h
libb10_dns___la_SOURCES
+=
rrset.h rrset.cc
libb10_dns___la_SOURCES
+=
rrttl.h rrttl.cc
libb10_dns___la_SOURCES
+=
rrtype.cc
libb10_dns___la_SOURCES
+=
rrcollator.h rrcollator.cc
libb10_dns___la_SOURCES
+=
question.h question.cc
libb10_dns___la_SOURCES
+=
serial.h serial.cc
libb10_dns___la_SOURCES
+=
tsig.h tsig.cc
...
...
src/lib/dns/rrcollator.cc
0 → 100644
View file @
7a2d5ea8
// Copyright (C) 2012 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 <dns/name.h>
#include <dns/rrcollator.h>
#include <dns/rrclass.h>
#include <dns/rrtype.h>
#include <dns/rrttl.h>
#include <dns/rdata.h>
#include <dns/rrset.h>
#include <boost/bind.hpp>
namespace
isc
{
namespace
dns
{
class
RRCollator
::
Impl
{
public:
Impl
(
const
AddRRsetCallback
&
callback
)
:
callback_
(
callback
)
{}
void
addRR
(
const
Name
&
name
,
const
RRClass
&
rrclass
,
const
RRType
&
rrtype
,
const
RRTTL
&
rrttl
,
const
rdata
::
RdataPtr
&
rdata
);
RRsetPtr
current_rrset_
;
AddRRsetCallback
callback_
;
};
void
RRCollator
::
Impl
::
addRR
(
const
Name
&
name
,
const
RRClass
&
rrclass
,
const
RRType
&
rrtype
,
const
RRTTL
&
rrttl
,
const
rdata
::
RdataPtr
&
rdata
)
{
if
(
current_rrset_
&&
current_rrset_
->
getType
()
!=
rrtype
)
{
callback_
(
current_rrset_
);
current_rrset_
.
reset
();
}
if
(
!
current_rrset_
)
{
current_rrset_
=
RRsetPtr
(
new
RRset
(
name
,
rrclass
,
rrtype
,
rrttl
));
}
current_rrset_
->
addRdata
(
rdata
);
}
RRCollator
::
RRCollator
(
const
AddRRsetCallback
&
callback
)
:
impl_
(
new
Impl
(
callback
))
{}
RRCollator
::~
RRCollator
()
{
delete
impl_
;
}
AddRRCallback
RRCollator
::
getCallback
()
{
return
(
boost
::
bind
(
&
RRCollator
::
Impl
::
addRR
,
this
->
impl_
,
_1
,
_2
,
_3
,
_4
,
_5
));
}
void
RRCollator
::
finish
()
{
// TODO: case when !current_rrset_
impl_
->
callback_
(
impl_
->
current_rrset_
);
}
}
// end namespace dns
}
// end namespace isc
src/lib/dns/rrcollator.h
0 → 100644
View file @
7a2d5ea8
// Copyright (C) 2012 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.
#ifndef RRCOLLATOR_H
#define RRCOLLATOR_H 1
#include <dns/master_loader_callbacks.h>
#include <dns/rrset.h>
#include <boost/function.hpp>
namespace
isc
{
namespace
dns
{
class
RRCollator
{
public:
typedef
boost
::
function
<
void
(
const
RRsetPtr
&
rrset
)
>
AddRRsetCallback
;
RRCollator
(
const
AddRRsetCallback
&
callback
);
~
RRCollator
();
AddRRCallback
getCallback
();
void
finish
();
private:
class
Impl
;
Impl
*
impl_
;
};
}
// namespace dns
}
// namespace isc
#endif // RRCOLLATOR_H
// Local Variables:
// mode: c++
// End:
src/lib/dns/tests/Makefile.am
View file @
7a2d5ea8
...
...
@@ -33,6 +33,7 @@ run_unittests_SOURCES += name_unittest.cc
run_unittests_SOURCES
+=
nsec3hash_unittest.cc
run_unittests_SOURCES
+=
rrclass_unittest.cc rrtype_unittest.cc
run_unittests_SOURCES
+=
rrttl_unittest.cc
run_unittests_SOURCES
+=
rrcollator_unittest.cc
run_unittests_SOURCES
+=
opcode_unittest.cc
run_unittests_SOURCES
+=
rcode_unittest.cc
run_unittests_SOURCES
+=
rdata_unittest.h rdata_unittest.cc
...
...
src/lib/dns/tests/rrcollator_unittest.cc
0 → 100644
View file @
7a2d5ea8
// Copyright (C) 2012 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 <dns/name.h>
#include <dns/rrclass.h>
#include <dns/rrcollator.h>
#include <dns/rdata.h>
#include <dns/rrset.h>
#include <dns/rrttl.h>
#include <gtest/gtest.h>
#include <boost/bind.hpp>
#include <vector>
using
std
::
vector
;
using
namespace
isc
::
dns
;
using
namespace
isc
::
dns
::
rdata
;
namespace
{
typedef
RRCollator
::
AddRRsetCallback
AddRRsetCallback
;
void
addRRset
(
const
RRsetPtr
&
rrset
,
vector
<
ConstRRsetPtr
>*
to_append
)
{
to_append
->
push_back
(
rrset
);
}
class
RRCollatorTest
:
public
::
testing
::
Test
{
protected:
RRCollatorTest
()
:
origin_
(
"example.com"
),
rrclass_
(
RRClass
::
IN
()),
rrttl_
(
3600
),
collator_
(
boost
::
bind
(
addRRset
,
_1
,
&
rrsets_
)),
rr_callback_
(
collator_
.
getCallback
())
{
RRsetPtr
rrset
(
new
RRset
(
origin_
,
rrclass_
,
RRType
::
A
(),
rrttl_
));
a_rdata1_
=
createRdata
(
RRType
::
A
(),
rrclass_
,
"192.0.2.1"
);
a_rdata2_
=
createRdata
(
RRType
::
A
(),
rrclass_
,
"192.0.2.2"
);
rrset
->
addRdata
(
a_rdata1_
);
rrset
->
addRdata
(
a_rdata2_
);
a_rrset_
=
rrset
;
rrset
=
RRsetPtr
(
new
RRset
(
origin_
,
rrclass_
,
RRType
::
AAAA
(),
rrttl_
));
aaaa_rdata_
=
createRdata
(
RRType
::
AAAA
(),
rrclass_
,
"2001:db8::1"
);
aaaa_rrset_
=
rrset
;
}
void
checkRRset
(
const
Name
&
expected_name
,
const
RRClass
&
expected_class
,
const
RRType
&
expected_type
,
const
RRTTL
&
expected_ttl
,
const
vector
<
ConstRdataPtr
>&
expected_rdatas
)
{
// This test always clears rrsets_ to confirm RRsets are added
// one-by-one
ASSERT_EQ
(
1
,
rrsets_
.
size
());
ConstRRsetPtr
actual
=
rrsets_
[
0
];
EXPECT_EQ
(
expected_name
,
actual
->
getName
());
EXPECT_EQ
(
expected_class
,
actual
->
getClass
());
EXPECT_EQ
(
expected_type
,
actual
->
getType
());
EXPECT_EQ
(
expected_ttl
,
actual
->
getTTL
());
ASSERT_EQ
(
expected_rdatas
.
size
(),
actual
->
getRdataCount
());
vector
<
ConstRdataPtr
>::
const_iterator
it
=
expected_rdatas
.
begin
();
for
(
RdataIteratorPtr
rit
=
actual
->
getRdataIterator
();
!
rit
->
isLast
();
rit
->
next
())
{
EXPECT_EQ
(
0
,
rit
->
getCurrent
().
compare
(
**
it
));
++
it
;
}
rrsets_
.
clear
();
}
const
Name
origin_
;
const
RRClass
rrclass_
;
const
RRTTL
rrttl_
;
vector
<
ConstRRsetPtr
>
rrsets_
;
RdataPtr
a_rdata1_
,
a_rdata2_
,
aaaa_rdata_
;
ConstRRsetPtr
a_rrset_
,
aaaa_rrset_
;
RRCollator
collator_
;
AddRRCallback
rr_callback_
;
};
TEST_F
(
RRCollatorTest
,
add
)
{
vector
<
ConstRdataPtr
>
rdatas
;
// Add two RRs belonging to the same RRset. These will be buffered.
rr_callback_
(
origin_
,
rrclass_
,
RRType
::
A
(),
rrttl_
,
a_rdata1_
);
EXPECT_TRUE
(
rrsets_
.
empty
());
// not yet given as an RRset
rr_callback_
(
origin_
,
rrclass_
,
RRType
::
A
(),
rrttl_
,
a_rdata2_
);
EXPECT_TRUE
(
rrsets_
.
empty
());
// still not given
// Add another type of RR. This completes the construction of the A RRset,
// which will be given via the callback.
rr_callback_
(
origin_
,
rrclass_
,
RRType
::
AAAA
(),
rrttl_
,
aaaa_rdata_
);
rdatas
.
push_back
(
a_rdata1_
);
rdatas
.
push_back
(
a_rdata2_
);
checkRRset
(
origin_
,
rrclass_
,
RRType
::
A
(),
rrttl_
,
rdatas
);
// Let the collator we are done, then we'll see the AAAA RR as an RRset.
collator_
.
finish
();
rdatas
.
clear
();
rdatas
.
push_back
(
aaaa_rdata_
);
checkRRset
(
origin_
,
rrclass_
,
RRType
::
AAAA
(),
rrttl_
,
rdatas
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment