46cb12f9e8f3b534e9e546cfd9269d49b26415c6
[senf.git] / Scheduler / Console / Config.cci
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 Config inline non-template implementation */
25
26 #include "Config.ih"
27
28 // Custom includes
29 #include "../../Utils/membind.hh"
30
31 #define prefix_ inline
32 ///////////////////////////////cci.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::console::detail::RestrictedExecutor
36
37 prefix_ bool senf::console::detail::RestrictedExecutor::complete()
38     const
39 {
40     return parsedNodes_.size() == 1 
41         && ! parsedNodes_[0].expired() 
42         && *parsedNodes_[0].lock() == executor_.chroot();
43 }
44
45 prefix_ void senf::console::detail::RestrictedExecutor::reset()
46 {
47     parsedNodes_.clear();
48 }
49
50 prefix_ senf::console::DirectoryNode & senf::console::detail::RestrictedExecutor::root()
51     const
52 {
53     return executor_.chroot();
54 }
55
56 ///////////////////////////////////////////////////////////////////////////
57 // senf::console::ConfigBundle
58
59 prefix_ senf::console::ConfigBundle::ConfigBundle()
60 {}
61
62 prefix_ senf::console::ConfigBundle::ConfigBundle(DirectoryNode & root)
63     : executor_ (root)
64 {}
65
66 prefix_ bool senf::console::ConfigBundle::complete()
67     const
68 {
69     return executor_.complete();
70 }
71
72 prefix_ bool senf::console::ConfigBundle::parsed(GenericNode & node)
73     const
74 {
75     return executor_.parsed(node);
76 }
77
78 prefix_ void senf::console::ConfigBundle::reset()
79 {
80     executor_.reset();
81 }
82
83 ///////////////////////////////////////////////////////////////////////////
84 // senf::console::detail::ConfigSource
85
86 prefix_ void senf::console::detail::ConfigSource::parse(RestrictedExecutor & executor)
87 {
88     v_parse(executor);
89 }
90
91 ///////////////////////////////////////////////////////////////////////////
92 // senf::console::detail::BundleMixin
93
94 prefix_ senf::console::detail::BundleMixin::BundleMixin()
95 {}
96
97 prefix_ senf::console::detail::BundleMixin::BundleMixin(DirectoryNode & root)
98     : bundle_ (root)
99 {}
100
101 prefix_ void senf::console::detail::BundleMixin::parse()
102 {
103     bundle_.parse();
104 }
105
106 prefix_ void senf::console::detail::BundleMixin::parse(DirectoryNode & restrict)
107 {
108     bundle_.parse(restrict);
109 }
110
111 prefix_ bool senf::console::detail::BundleMixin::complete()
112     const
113 {
114     return bundle_.complete();
115 }
116
117 prefix_ bool senf::console::detail::BundleMixin::parsed(GenericNode & node)
118     const
119 {
120     return bundle_.parsed(node);
121 }
122
123 prefix_ void senf::console::detail::BundleMixin::reset()
124 {
125     bundle_.reset();
126 }
127
128 ///////////////////////////////cci.e///////////////////////////////////////
129 #undef prefix_
130
131 \f
132 // Local Variables:
133 // mode: c++
134 // fill-column: 100
135 // comment-column: 40
136 // c-file-style: "senf"
137 // indent-tabs-mode: nil
138 // ispell-local-dictionary: "american"
139 // compile-command: "scons -u test"
140 // End: