1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #include "UNV2417_Structure.hxx"
23 #include "UNV_Utilities.hxx"
30 using namespace UNV2417;
33 static int MYDEBUG = 0;
35 static int MYDEBUG = 0;
39 static string _group_labels[] = {"2417", "2429", "2430", "2432",
40 "2435", "2452", "2467", "2477"};
43 static string _label_dataset = "2467";
45 void UNV2417::Read(std::ifstream& in_stream, TDataSet& theDataSet)
48 EXCEPTION(runtime_error,"ERROR: Input file not good.");
50 std::string olds, news;
53 in_stream >> olds >> news;
55 * a "-1" followed by a number means the beginning of a dataset
56 * stop combing at the end of the file
58 while( ((olds != "-1") || (news == "-1") ) && !in_stream.eof() ){
64 for (int i = 0; i < NBGROUP; i++) {
65 if (news == _group_labels[i]) {
66 ReadGroup(news, in_stream, theDataSet);
74 void UNV2417::ReadGroup(const std::string& myGroupLabel, std::ifstream& in_stream, TDataSet& theDataSet)
77 for(; !in_stream.eof();){
80 // end of dataset is reached
87 in_stream>>aTmp; // miss not necessary values
95 std::getline(in_stream, aRec.GroupName, '\n'); // Finalise previous reading
96 std::getline(in_stream, aRec.GroupName, '\n');
101 for(int j=0; j < n_nodes; j++){
104 if ((myGroupLabel.compare("2435") == 0) ||
105 (myGroupLabel.compare("2452") == 0) ||
106 (myGroupLabel.compare("2467") == 0) ||
107 (myGroupLabel.compare("2477") == 0)) {
113 aNum = aRec.NodeList.size();
114 aRec.NodeList.resize(aNum + 1);
115 aRec.NodeList[aNum] = aElId;
118 aNum = aRec.ElementList.size();
119 aRec.ElementList.resize(aNum + 1);
120 aRec.ElementList[aNum] = aElId;
124 theDataSet.insert(TDataSet::value_type(aId,aRec));
130 void UNV2417::Write(std::ofstream& out_stream, const TDataSet& theDataSet)
132 if(!out_stream.good())
133 EXCEPTION(runtime_error,"ERROR: Output file not good.");
136 * Write beginning of dataset
139 out_stream<<" "<<_label_dataset<<"\n";
141 TDataSet::const_iterator anIter = theDataSet.begin();
142 for(; anIter != theDataSet.end(); anIter++){
143 const TGroupId& aLabel = anIter->first;
144 const TRecord& aRec = anIter->second;
145 int aNbNodes = aRec.NodeList.size();
146 int aNbElements = aRec.ElementList.size();
147 int aNbRecords = aNbNodes + aNbElements;
149 out_stream<<std::setw(10)<<aLabel; /* group ID */
150 out_stream<<std::setw(10)<<0;
151 out_stream<<std::setw(10)<<0;
152 out_stream<<std::setw(10)<<0;
153 out_stream<<std::setw(10)<<0;
154 out_stream<<std::setw(10)<<0;
155 out_stream<<std::setw(10)<<0;
156 out_stream<<std::setw(10)<<aNbRecords<<std::endl;
158 out_stream<<aRec.GroupName<<std::endl;
161 for (i = 0; i < aNbNodes; i++) {
163 out_stream<<std::endl;
166 out_stream<<std::setw(10)<<7;
167 out_stream<<std::setw(10)<<aRec.NodeList[i];
168 out_stream<<std::setw(10)<<0;
169 out_stream<<std::setw(10)<<0;
172 for (i = 0; i < aNbElements; i++) {
174 out_stream<<std::endl;
177 out_stream<<std::setw(10)<<8;
178 out_stream<<std::setw(10)<<aRec.ElementList[i];
179 out_stream<<std::setw(10)<<0;
180 out_stream<<std::setw(10)<<0;
183 out_stream<<std::endl;
187 * Write end of dataset