Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <precomp.h>
21 : #include <ary/idl/i_module.hxx>
22 : #include <ary/idl/ik_module.hxx>
23 :
24 : // NOT FULLY DECLARED SERVICES
25 : #include <cosv/tpl/processor.hxx>
26 : #include <ary/idl/i_gate.hxx>
27 : #include <ary/idl/i_module.hxx>
28 : #include <ary/idl/i_service.hxx>
29 : #include <ary/idl/i_interface.hxx>
30 : #include <ary/idl/i_struct.hxx>
31 : #include <ary/idl/i_exception.hxx>
32 : #include <ary/idl/i_enum.hxx>
33 : #include <ary/idl/i_typedef.hxx>
34 : #include <ary/idl/i_constgroup.hxx>
35 : #include <ary/idl/i_singleton.hxx>
36 : #include <ary/idl/i_siservice.hxx>
37 : #include <ary/idl/i_sisingleton.hxx>
38 : #include <ary/idl/ip_ce.hxx>
39 : #include <nametreenode.hxx>
40 :
41 :
42 : namespace ary
43 : {
44 : namespace idl
45 : {
46 :
47 1 : Module::Module()
48 1 : : pImpl( new NameTreeNode<Ce_id> )
49 : {
50 1 : }
51 :
52 118 : Module::Module( const String & i_sName,
53 : const Module & i_rParent )
54 : : pImpl( new NameTreeNode<Ce_id>( i_sName,
55 118 : *i_rParent.pImpl,
56 236 : i_rParent.CeId() ) )
57 : {
58 118 : }
59 :
60 238 : Module::~Module()
61 : {
62 238 : }
63 :
64 : void
65 4252 : Module::Add_Name( const String & i_sName,
66 : Ce_id i_nCodeEntity )
67 : {
68 4252 : pImpl->Add_Name(i_sName, i_nCodeEntity);
69 4252 : }
70 :
71 : Ce_id
72 81445 : Module::Search_Name( const String & i_sName ) const
73 : {
74 81445 : return pImpl->Search_Name(i_sName);
75 : }
76 :
77 : void
78 119 : Module::Get_Names( Dyn_StdConstIterator<Ce_id> & o_rResult ) const
79 : {
80 119 : pImpl->Get_Names( o_rResult );
81 119 : }
82 :
83 : void
84 238 : Module::do_Accept( csv::ProcessorIfc & io_processor ) const
85 : {
86 238 : csv::CheckedCall(io_processor, *this);
87 238 : }
88 :
89 : ClassId
90 44987 : Module::get_AryClass() const
91 : {
92 44987 : return class_id;
93 : }
94 :
95 : const String &
96 378912 : Module::inq_LocalName() const
97 : {
98 378912 : return pImpl->Name();
99 : }
100 :
101 : Ce_id
102 815882 : Module::inq_NameRoom() const
103 : {
104 815882 : return pImpl->Parent();
105 : }
106 :
107 : Ce_id
108 30986 : Module::inq_Owner() const
109 : {
110 30986 : return pImpl->Parent();
111 : }
112 :
113 : E_SightLevel
114 5564 : Module::inq_SightLevel() const
115 : {
116 5564 : return sl_Module;
117 : }
118 :
119 :
120 : namespace ifc_module
121 : {
122 :
123 : inline const Module &
124 238 : module_cast( const CodeEntity & i_ce )
125 : {
126 : csv_assert( i_ce.AryClass() == Module::class_id );
127 238 : return static_cast< const Module& >(i_ce);
128 : }
129 :
130 : typedef NameTreeNode<Ce_id>::Map_LocalNames NameMap;
131 :
132 : void
133 119 : attr::Get_AllChildrenSeparated( std::vector< const CodeEntity* > & o_nestedModules,
134 : std::vector< const CodeEntity* > & o_services,
135 : std::vector< const CodeEntity* > & o_interfaces,
136 : std::vector< const CodeEntity* > & o_structs,
137 : std::vector< const CodeEntity* > & o_exceptions,
138 : std::vector< const CodeEntity* > & o_enums,
139 : std::vector< const CodeEntity* > & o_typedefs,
140 : std::vector< const CodeEntity* > & o_constantGroups,
141 : std::vector< const CodeEntity* > & o_singletons,
142 : const CePilot & i_pilot,
143 : const CodeEntity & i_ce )
144 : {
145 : const CodeEntity *
146 119 : pCe = 0;
147 : NameMap::const_iterator
148 119 : itEnd = module_cast(i_ce).pImpl->LocalNames().end();
149 4371 : for ( NameMap::const_iterator
150 119 : it = module_cast(i_ce).pImpl->LocalNames().begin();
151 : it != itEnd;
152 : ++it )
153 : {
154 4252 : pCe = &i_pilot.Find_Ce( (*it).second );
155 4252 : switch (pCe->AryClass())
156 : {
157 : case Module::class_id:
158 118 : o_nestedModules.push_back(pCe);
159 118 : break;
160 : case SglIfcService::class_id:
161 : case Service::class_id:
162 1296 : o_services.push_back(pCe);
163 1296 : break;
164 : case Interface::class_id:
165 1644 : o_interfaces.push_back(pCe);
166 1644 : break;
167 : case Struct::class_id:
168 381 : o_structs.push_back(pCe);
169 381 : break;
170 : case Exception::class_id:
171 243 : o_exceptions.push_back(pCe);
172 243 : break;
173 : case Enum::class_id:
174 190 : o_enums.push_back(pCe);
175 190 : break;
176 : case Typedef::class_id:
177 18 : o_typedefs.push_back(pCe);
178 18 : break;
179 : case ConstantsGroup::class_id:
180 347 : o_constantGroups.push_back(pCe);
181 347 : break;
182 : case SglIfcSingleton::class_id:
183 : case Singleton::class_id:
184 15 : o_singletons.push_back(pCe);
185 15 : break;
186 : }
187 : } // end for
188 119 : }
189 :
190 :
191 : } // namespace ifc_module
192 :
193 :
194 :
195 : } // namespace idl
196 3 : } // namespace ary
197 :
198 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|