fdca56fd3751353a62b5c91b0788fce1e0f27917
[senf.git] / senf / Socket / Protocols / INet / INet6Address.ct
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief INet6Address non-inline template implementation  */
25
26 #include "INet6Address.ih"
27
28 // Custom includes
29
30 #define prefix_
31 ///////////////////////////////ct.p////////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::INet6Address
35
36 template <class InputIterator>
37 prefix_ senf::INet6Address senf::INet6Address::from_data(InputIterator i)
38 {
39     INet6Address addr (senf::noinit);
40     iterator j (addr.begin());
41     iterator const j_end (addr.end());
42     for (;j!=j_end;++j,++i)
43         *j = *i;
44     return addr;
45 }
46
47 ///////////////////////////////////////////////////////////////////////////
48 // namespace senf::detail members
49
50 template <class ForwardIterator, class Function>
51 prefix_ void senf::detail::apply_mask(unsigned bits, ForwardIterator b, ForwardIterator e,
52                                       Function fn)
53 {
54     for(; bits>8 && b != e; bits -= 8, ++b)
55         fn(*b, boost::lambda::make_const(0xFFu));
56     if (bits > 0 && b != e)
57         fn( *(b++), boost::lambda::make_const(~ low_bits_mask(8-bits)));
58     for(; b != e; ++b)
59         fn(*b, boost::lambda::make_const(0u));
60 }
61
62 template <class ForwardIterator1, class ForwardIterator2, class Function>
63 prefix_ ForwardIterator1 senf::detail::find_if_mask(unsigned bits, ForwardIterator1 b1,
64                                                     ForwardIterator1 e1, ForwardIterator2 b2,
65                                                     Function fn)
66 {
67     for(; bits>8 && b1 != e1; bits -= 8, ++b1, ++b2)
68         if (fn(*b1, *b2, boost::lambda::make_const(0xFFu)))
69             return b1;
70     if (bits > 0 && b1 != e1)
71         if (fn(*b1, *b2, boost::lambda::make_const(~ low_bits_mask(8-bits))))
72             return b1;
73     for(++b1, ++b2; b1 != e1; ++b1, ++b2)
74         if (fn(*b1, *b2, boost::lambda::make_const(0u)))
75             return b1;
76     return e1;
77 }
78
79 ///////////////////////////////ct.e////////////////////////////////////////
80 #undef prefix_
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // comment-column: 40
87 // c-file-style: "senf"
88 // indent-tabs-mode: nil
89 // ispell-local-dictionary: "american"
90 // compile-command: "scons -u test"
91 // End: