0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / XmlMDataStd / XmlMDataStd_RealListDriver.cxx
1 // Created on: 2007-05-29
2 // Created by: Vlad Romashko
3 // Copyright (c) 2007-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16
17 #include <Message_Messenger.hxx>
18 #include <NCollection_LocalArray.hxx>
19 #include <Standard_Type.hxx>
20 #include <TColStd_ListIteratorOfListOfReal.hxx>
21 #include <TDataStd_RealList.hxx>
22 #include <TDF_Attribute.hxx>
23 #include <XmlMDataStd_RealListDriver.hxx>
24 #include <XmlObjMgt.hxx>
25 #include <XmlObjMgt_Persistent.hxx>
26
27 IMPLEMENT_STANDARD_RTTIEXT(XmlMDataStd_RealListDriver,XmlMDF_ADriver)
28 IMPLEMENT_DOMSTRING (FirstIndexString, "first")
29 IMPLEMENT_DOMSTRING (LastIndexString,  "last")
30 IMPLEMENT_DOMSTRING (AttributeIDString, "reallistattguid")
31 //=======================================================================
32 //function : XmlMDataStd_RealListDriver
33 //purpose  : Constructor
34 //=======================================================================
35 XmlMDataStd_RealListDriver::XmlMDataStd_RealListDriver(const Handle(Message_Messenger)& theMsgDriver)
36      : XmlMDF_ADriver (theMsgDriver, NULL)
37 {
38
39 }
40
41 //=======================================================================
42 //function : NewEmpty
43 //purpose  : 
44 //=======================================================================
45 Handle(TDF_Attribute) XmlMDataStd_RealListDriver::NewEmpty() const
46 {
47   return new TDataStd_RealList();
48 }
49
50 //=======================================================================
51 //function : Paste
52 //purpose  : persistent -> transient (retrieve)
53 //=======================================================================
54 Standard_Boolean XmlMDataStd_RealListDriver::Paste(const XmlObjMgt_Persistent&  theSource,
55                                                    const Handle(TDF_Attribute)& theTarget,
56                                                    XmlObjMgt_RRelocationTable&  ) const
57 {
58   const Handle(TDataStd_RealList) aRealList = Handle(TDataStd_RealList)::DownCast(theTarget);
59   const XmlObjMgt_Element& anElement = theSource;
60
61   // attribute id
62   Standard_GUID aGUID;
63   XmlObjMgt_DOMString aGUIDStr = anElement.getAttribute(::AttributeIDString());
64   if (aGUIDStr.Type() == XmlObjMgt_DOMString::LDOM_NULL)
65     aGUID = TDataStd_RealList::GetID(); //default case
66   else
67     aGUID = Standard_GUID(Standard_CString(aGUIDStr.GetString())); // user defined case
68   aRealList->SetID(aGUID);
69
70   // Read the FirstIndex; if the attribute is absent initialize to 1
71   Standard_Integer aFirstInd, aLastInd, ind;
72   XmlObjMgt_DOMString aFirstIndex= anElement.getAttribute(::FirstIndexString());
73   if (aFirstIndex == NULL)
74     aFirstInd = 1;
75   else if (!aFirstIndex.GetInteger(aFirstInd)) 
76   {
77     TCollection_ExtendedString aMessageString =
78       TCollection_ExtendedString("Cannot retrieve the first index"
79                                  " for RealList attribute as \"")
80         + aFirstIndex + "\"";
81     myMessageDriver->Send (aMessageString, Message_Fail);
82     return Standard_False;
83   }
84
85   // Read the LastIndex; the attribute should be present
86   if (!anElement.getAttribute(::LastIndexString()).GetInteger(aLastInd)) 
87   {
88     TCollection_ExtendedString aMessageString =
89       TCollection_ExtendedString("Cannot retrieve the last index"
90                                  " for RealList attribute as \"")
91         + aFirstIndex + "\"";
92     myMessageDriver->Send (aMessageString, Message_Fail);
93     return Standard_False;
94   }
95
96   // Check the type of LDOMString
97   const XmlObjMgt_DOMString& aString = XmlObjMgt::GetStringValue(anElement);
98   if(aLastInd == 0) aFirstInd = 0;
99   if (aString.Type() == LDOMBasicString::LDOM_Integer) 
100   {
101     if (aFirstInd == aLastInd  && aLastInd > 0) 
102     {
103       Standard_Integer anIntValue;
104       if (aString.GetInteger(anIntValue))
105         aRealList->Append(Standard_Real(anIntValue));
106     } 
107     else 
108     {
109       TCollection_ExtendedString aMessageString =
110         TCollection_ExtendedString("Cannot retrieve array of real members"
111                                    " for RealList attribute from Integer \"")
112         + aString + "\"";
113       myMessageDriver->Send (aMessageString, Message_Fail);
114       return Standard_False;
115     }
116   } 
117   else if(aLastInd >= 1)
118   {
119     Standard_CString aValueStr = Standard_CString(aString.GetString());
120     for (ind = aFirstInd; ind <= aLastInd; ind++)
121     {
122       Standard_Real aValue;
123       if (!XmlObjMgt::GetReal(aValueStr, aValue)) {
124         TCollection_ExtendedString aMessageString =
125           TCollection_ExtendedString("Cannot retrieve real member"
126                                      " for RealList attribute as \"")
127             + aValueStr + "\"";
128         myMessageDriver->Send(aMessageString, Message_Warning);
129         // skip to the next space separator
130         while (*aValueStr != 0 && ! IsSpace (*aValueStr)) ++aValueStr;
131       }
132       aRealList->Append(aValue);
133     }
134   }
135
136   return Standard_True;
137 }
138
139 //=======================================================================
140 //function : Paste
141 //purpose  : transient -> persistent (store)
142 //=======================================================================
143 void XmlMDataStd_RealListDriver::Paste(const Handle(TDF_Attribute)& theSource,
144                                        XmlObjMgt_Persistent&        theTarget,
145                                        XmlObjMgt_SRelocationTable&  ) const
146 {
147   const Handle(TDataStd_RealList) aRealList = Handle(TDataStd_RealList)::DownCast(theSource);
148
149   Standard_Integer anU = aRealList->Extent();
150   theTarget.Element().setAttribute(::LastIndexString(), anU);
151   // Allocation of 25 chars for each double value including the space:
152   // An example: -3.1512678732195273e+020
153   NCollection_LocalArray<Standard_Character> str(25 * anU + 1);
154   if(anU == 0) str[0] = 0;
155   else if (anU >= 1)
156   {   
157     Standard_Integer iChar = 0;
158     TColStd_ListIteratorOfListOfReal itr(aRealList->List());
159     for (; itr.More(); itr.Next())
160     {
161       const Standard_Real& realValue = itr.Value();
162       iChar += Sprintf(&(str[iChar]), "%.17g ", realValue);
163     }
164   }
165   XmlObjMgt::SetStringValue (theTarget, (Standard_Character*)str, Standard_True);
166
167   if(aRealList->ID() != TDataStd_RealList::GetID()) {
168     //convert GUID
169     Standard_Character aGuidStr [Standard_GUID_SIZE_ALLOC];
170     Standard_PCharacter pGuidStr = aGuidStr;
171     aRealList->ID().ToCString (pGuidStr);
172     theTarget.Element().setAttribute (::AttributeIDString(), aGuidStr);
173   }
174 }