Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_TMPFile_i.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  SALOME SALOMEDS : data structure of SALOME and sources of Salome data server 
21 //  File   : SALOMEDSImpl_SObject.cxx
22 //  Author : Sergey RUIN
23 //  Module : SALOME
24
25
26 #include "SALOMEDS_TMPFile_i.hxx"
27
28 #include <Handle_Standard_Type.hxx>
29 #include <Standard_Transient.hxx>
30
31 #include <stdexcept>
32
33
34 IMPLEMENT_STANDARD_HANDLE( SALOMEDS_TMPFile_i, SALOMEDSImpl_TMPFile )
35 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDS_TMPFile_i, SALOMEDSImpl_TMPFile )
36
37 SALOMEDS_TMPFile_i
38 ::SALOMEDS_TMPFile_i(SALOMEDS::TMPFile* theStream):
39   myStream(theStream)
40 {}
41
42 size_t
43 SALOMEDS_TMPFile_i
44 ::Size()
45 {
46   if(!&myStream.in())
47     return 0;
48
49   return myStream->length();
50 }
51
52 SALOMEDSImpl_TMPFile::TOctet&
53 SALOMEDS_TMPFile_i
54 ::Get(size_t theIndex)
55 {
56   if(!&myStream.in())
57     throw std::out_of_range("SALOMEDS_TMPFile_i::Get(size_t) const - !&myStream.in()");
58
59   if(theIndex < 0 || theIndex >= myStream->length())
60     throw std::out_of_range("SALOMEDS_TMPFile_i::Get(size_t) const - theIndex < 0 || theIndex >= myStream->length()");
61
62   return myStream[theIndex];
63 }
64
65
66 //-----------------------------------------------------------------------------
67 IMPLEMENT_STANDARD_HANDLE( Engines_TMPFile_i, SALOMEDSImpl_TMPFile )
68 IMPLEMENT_STANDARD_RTTIEXT( Engines_TMPFile_i, SALOMEDSImpl_TMPFile )
69
70 Engines_TMPFile_i
71 ::Engines_TMPFile_i(Engines::TMPFile* theStream):
72   myStream(theStream)
73 {}
74
75 size_t
76 Engines_TMPFile_i
77 ::Size()
78 {
79   if(!&myStream.in())
80     return 0;
81
82   return myStream->length();
83 }
84
85 SALOMEDSImpl_TMPFile::TOctet&
86 Engines_TMPFile_i
87 ::Get(size_t theIndex)
88 {
89   if(!&myStream.in())
90     throw std::out_of_range("Engines_TMPFile_i::Get(size_t) const - !&myStream.in()");
91
92   if(theIndex < 0 || theIndex >= myStream->length())
93     throw std::out_of_range("Engines_TMPFile_i::Get(size_t) const - theIndex < 0 || theIndex >= myStream->length()");
94
95   return myStream[theIndex];
96 }