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_struct.hxx>
22 : #include <ary/idl/ik_struct.hxx>
23 :
24 :
25 : // NOT FULLY DECLARED SERVICES
26 : #include <cosv/tpl/processor.hxx>
27 : #include <sci_impl.hxx>
28 : #include "i2s_calculator.hxx"
29 :
30 :
31 : namespace ary
32 : {
33 : namespace idl
34 : {
35 :
36 381 : Struct::Struct( const String & i_sName,
37 : Ce_id i_nOwner,
38 : Type_id i_nBase,
39 : const String & i_sTemplateParameter,
40 : Type_id i_nTemplateParameterType )
41 : : sName(i_sName),
42 : nOwner(i_nOwner),
43 : nBase(i_nBase),
44 : sTemplateParameter(i_sTemplateParameter),
45 : nTemplateParameterType(i_nTemplateParameterType),
46 381 : aElements()
47 : {
48 381 : }
49 :
50 762 : Struct::~Struct()
51 : {
52 762 : }
53 :
54 : void
55 762 : Struct::do_Accept( csv::ProcessorIfc & io_processor ) const
56 : {
57 762 : csv::CheckedCall(io_processor, *this);
58 762 : }
59 :
60 : ClassId
61 5662 : Struct::get_AryClass() const
62 : {
63 5662 : return class_id;
64 : }
65 :
66 : const String &
67 29386 : Struct::inq_LocalName() const
68 : {
69 29386 : return sName;
70 : }
71 :
72 : Ce_id
73 7466 : Struct::inq_NameRoom() const
74 : {
75 7466 : return nOwner;
76 : }
77 :
78 : Ce_id
79 2093 : Struct::inq_Owner() const
80 : {
81 2093 : return nOwner;
82 : }
83 :
84 : E_SightLevel
85 5194 : Struct::inq_SightLevel() const
86 : {
87 5194 : return sl_File;
88 : }
89 :
90 :
91 : namespace ifc_struct
92 : {
93 :
94 : inline const Struct &
95 872 : struct_cast( const CodeEntity & i_ce )
96 : {
97 : csv_assert( i_ce.AryClass() == Struct::class_id );
98 872 : return static_cast< const Struct& >(i_ce);
99 : }
100 :
101 : Type_id
102 491 : attr::Base( const CodeEntity & i_ce )
103 : {
104 491 : return struct_cast(i_ce).nBase;
105 : }
106 :
107 : void
108 381 : attr::Get_Elements( Dyn_CeIterator & o_result,
109 : const CodeEntity & i_ce )
110 : {
111 381 : o_result = new SCI_Vector<Ce_id>( struct_cast(i_ce).aElements );
112 381 : }
113 :
114 :
115 : void
116 491 : xref::Get_Derivations( Dyn_CeIterator & o_result,
117 : const CodeEntity & i_ce )
118 : {
119 491 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(struct_2s_Derivations));
120 491 : }
121 :
122 : void
123 381 : xref::Get_SynonymTypedefs( Dyn_CeIterator & o_result,
124 : const CodeEntity & i_ce )
125 : {
126 381 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(struct_2s_SynonymTypedefs));
127 381 : }
128 :
129 : void
130 381 : xref::Get_AsReturns( Dyn_CeIterator & o_result,
131 : const CodeEntity & i_ce )
132 : {
133 381 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(struct_2s_AsReturns));
134 381 : }
135 :
136 : void
137 381 : xref::Get_AsParameters( Dyn_CeIterator & o_result,
138 : const CodeEntity & i_ce )
139 : {
140 381 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(struct_2s_AsParameters));
141 381 : }
142 :
143 : void
144 381 : xref::Get_AsDataTypes( Dyn_CeIterator & o_result,
145 : const CodeEntity & i_ce )
146 : {
147 381 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(struct_2s_AsDataTypes));
148 381 : }
149 :
150 : } // namespace ifc_struct
151 :
152 :
153 :
154 : } // namespace idl
155 3 : } // namespace ary
156 :
157 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|