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_exception.hxx>
22 : #include <ary/idl/ik_exception.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 :
32 : namespace ary
33 : {
34 : namespace idl
35 : {
36 :
37 243 : Exception::Exception( const String & i_sName,
38 : Ce_id i_nOwner,
39 : Type_id i_nBase )
40 : : sName(i_sName),
41 : nOwner(i_nOwner),
42 : nBase(i_nBase),
43 243 : aElements()
44 : {
45 243 : }
46 :
47 486 : Exception::~Exception()
48 : {
49 486 : }
50 :
51 : void
52 486 : Exception::do_Accept( csv::ProcessorIfc & io_processor ) const
53 : {
54 486 : csv::CheckedCall(io_processor, *this);
55 486 : }
56 :
57 : ClassId
58 4932 : Exception::get_AryClass() const
59 : {
60 4932 : return class_id;
61 : }
62 :
63 : const String &
64 21822 : Exception::inq_LocalName() const
65 : {
66 21822 : return sName;
67 : }
68 :
69 : Ce_id
70 4912 : Exception::inq_NameRoom() const
71 : {
72 4912 : return nOwner;
73 : }
74 :
75 : Ce_id
76 638 : Exception::inq_Owner() const
77 : {
78 638 : return nOwner;
79 : }
80 :
81 : E_SightLevel
82 5001 : Exception::inq_SightLevel() const
83 : {
84 5001 : return sl_File;
85 : }
86 :
87 :
88 : namespace ifc_exception
89 : {
90 :
91 : inline const Exception &
92 902 : exception_cast( const CodeEntity & i_ce )
93 : {
94 : csv_assert( i_ce.AryClass() == Exception::class_id );
95 902 : return static_cast< const Exception& >(i_ce);
96 : }
97 :
98 : Type_id
99 659 : attr::Base( const CodeEntity & i_ce )
100 : {
101 659 : return exception_cast(i_ce).nBase;
102 : }
103 :
104 : void
105 243 : attr::Get_Elements( Dyn_CeIterator & o_result,
106 : const CodeEntity & i_ce )
107 : {
108 243 : o_result = new SCI_Vector<Ce_id>( exception_cast(i_ce).aElements );
109 243 : }
110 :
111 :
112 : void
113 659 : xref::Get_Derivations( Dyn_CeIterator & o_result,
114 : const CodeEntity & i_ce )
115 : {
116 659 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(exception_2s_Derivations));
117 659 : }
118 :
119 : void
120 243 : xref::Get_RaisingFunctions( Dyn_CeIterator & o_result,
121 : const CodeEntity & i_ce )
122 : {
123 243 : o_result = new SCI_Vector<Ce_id>(i_ce.Secondaries().List(exception_2s_RaisingFunctions));
124 243 : }
125 :
126 :
127 : } // namespace ifc_exception
128 :
129 :
130 : } // namespace idl
131 3 : } // namespace ary
132 :
133 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|