1 // Copyright (C) 2007-2011 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
23 #include "UNV2417_Structure.hxx"
24 #include "UNV_Utilities.hxx"
31 using namespace UNV2417;
33 static string _group_labels[] = {"2417", "2429", "2430", "2432",
34 "2435", "2452", "2467", "2477"};
37 static string _label_dataset = "2467";
39 void UNV2417::Read(std::ifstream& in_stream, TDataSet& theDataSet)
42 EXCEPTION(runtime_error,"ERROR: Input file not good.");
44 std::string olds, news;
47 in_stream >> olds >> news;
49 * a "-1" followed by a number means the beginning of a dataset
50 * stop combing at the end of the file
52 while( ((olds != "-1") || (news == "-1") ) && !in_stream.eof() ){
58 for (int i = 0; i < NBGROUP; i++) {
59 if (news == _group_labels[i]) {
60 ReadGroup(news, in_stream, theDataSet);
68 void UNV2417::ReadGroup(const std::string& myGroupLabel, std::ifstream& in_stream, TDataSet& theDataSet)
71 for(; !in_stream.eof();){
74 // end of dataset is reached
81 in_stream>>aTmp; // miss not necessary values
89 std::getline(in_stream, aRec.GroupName, '\n'); // Finalise previous reading
90 std::getline(in_stream, aRec.GroupName, '\n');
95 for(int j=0; j < n_nodes; j++){
98 if ((myGroupLabel.compare("2435") == 0) ||
99 (myGroupLabel.compare("2452") == 0) ||
100 (myGroupLabel.compare("2467") == 0) ||
101 (myGroupLabel.compare("2477") == 0)) {
107 aNum = aRec.NodeList.size();
108 aRec.NodeList.resize(aNum + 1);
109 aRec.NodeList[aNum] = aElId;
112 aNum = aRec.ElementList.size();
113 aRec.ElementList.resize(aNum + 1);
114 aRec.ElementList[aNum] = aElId;
118 theDataSet.insert(TDataSet::value_type(aId,aRec));
124 void UNV2417::Write(std::ofstream& out_stream, const TDataSet& theDataSet)
126 if(!out_stream.good())
127 EXCEPTION(runtime_error,"ERROR: Output file not good.");
130 * Write beginning of dataset
133 out_stream<<" "<<_label_dataset<<"\n";
135 TDataSet::const_iterator anIter = theDataSet.begin();
136 for(; anIter != theDataSet.end(); anIter++){
137 const TGroupId& aLabel = anIter->first;
138 const TRecord& aRec = anIter->second;
139 int aNbNodes = aRec.NodeList.size();
140 int aNbElements = aRec.ElementList.size();
141 int aNbRecords = aNbNodes + aNbElements;
143 out_stream<<std::setw(10)<<aLabel; /* group ID */
144 out_stream<<std::setw(10)<<0;
145 out_stream<<std::setw(10)<<0;
146 out_stream<<std::setw(10)<<0;
147 out_stream<<std::setw(10)<<0;
148 out_stream<<std::setw(10)<<0;
149 out_stream<<std::setw(10)<<0;
150 out_stream<<std::setw(10)<<aNbRecords<<std::endl;
152 out_stream<<aRec.GroupName<<std::endl;
155 for (i = 0; i < aNbNodes; i++) {
157 out_stream<<std::endl;
160 out_stream<<std::setw(10)<<7;
161 out_stream<<std::setw(10)<<aRec.NodeList[i];
162 out_stream<<std::setw(10)<<0;
163 out_stream<<std::setw(10)<<0;
166 for (i = 0; i < aNbElements; i++) {
168 out_stream<<std::endl;
171 out_stream<<std::setw(10)<<8;
172 out_stream<<std::setw(10)<<aRec.ElementList[i];
173 out_stream<<std::setw(10)<<0;
174 out_stream<<std::setw(10)<<0;
177 out_stream<<std::endl;
181 * Write end of dataset