Salome HOME
Copyright update 2020
[modules/kernel.git] / src / DF / testDF.cxx
1 // Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //File:    testDF.cxx
21 //Author:  Sergey RUIN
22 //
23 #include <stdio.h>
24 #include <iostream> 
25 #include <vector>
26 #include <string>
27 #include <string.h>
28
29 #include "DF_definitions.hxx"
30 #include "DF_Application.hxx"
31 #include "DF_Document.hxx"
32 #include "DF_Attribute.hxx"
33 #include "DF_Label.hxx"
34 #include "DF_Container.hxx"
35 #include "DF_ChildIterator.hxx"
36
37 #include "Basics_Utils.hxx"
38 #include "Basics_DirUtils.hxx"
39
40 #ifndef WIN32
41 #include <unistd.h>
42 #include <sys/time.h>
43 #include <sys/stat.h>
44 #include <sys/types.h>
45 #include <pwd.h>
46 #else
47 #include <time.h>
48 #include <windows.h>
49 #include <lmcons.h>
50 #endif
51
52
53 void printStr(const std::string& theValue)
54 {
55   std::cout << "printStr: " << theValue   << std::endl;
56 }
57
58 void GetSystemDate(int& year, int& month, int& day, int& hours, int& minutes, int& seconds)
59 {
60 #ifdef WIN32
61   SYSTEMTIME    st;
62
63   GetLocalTime ( &st );
64
65   month = st.wMonth;
66   day = st.wDay;
67   year = st.wYear;
68   hours = st.wHour;
69   minutes = st.wMinute;
70   seconds = st.wSecond;
71 #else
72   struct tm transfert;
73   struct timeval tval;
74   struct timezone tzone;
75   int status;
76
77   status = gettimeofday( &tval, &tzone );
78   memcpy(&transfert, localtime((time_t *)&tval.tv_sec), sizeof(tm));
79   
80   month    = transfert.tm_mon + 1;
81   day      = transfert.tm_mday;
82   year     = transfert.tm_year + 1900;
83   hours    = transfert.tm_hour;
84   minutes  = transfert.tm_min ;
85   seconds  = transfert.tm_sec ;
86 #endif
87 }
88
89 std::string GetUserName()
90 {
91 #ifdef WIN32
92 #ifdef UNICODE
93         wchar_t*  pBuff = new wchar_t[UNLEN + 1];
94 #else
95         char*  pBuff = new char[UNLEN + 1];
96 #endif
97   DWORD  dwSize = UNLEN + 1;
98   std::string retVal;
99   GetUserName ( pBuff, &dwSize );
100 #ifdef UNICODE
101   std::wstring theTmpUserName(pBuff, (int)dwSize - 1);
102   retVal = Kernel_Utils::utf8_encode_s(theTmpUserName);
103 #else
104   std::string theTmpUserName(pBuff, (int)dwSize - 1);
105   retVal = theTmpUserName;
106 #endif
107   delete [] pBuff;
108   return retVal;
109 #else
110  struct passwd *infos;
111  infos = getpwuid(getuid()); 
112  return std::string(infos->pw_name);
113 #endif
114 }
115
116 std::string GetNameFromPath(const std::string& thePath) {
117   if (thePath.empty()) return "";
118   int pos1 = thePath.rfind('/');
119   int pos2 = thePath.rfind('\\');
120   if(pos1 > 0) return thePath.substr(pos1+1, thePath.size()); 
121   if(pos2 > 0) return thePath.substr(pos2+1, thePath.size()); 
122   return thePath;
123 }
124
125 std::string GetDirFromPath(const std::string& thePath) {
126   if (thePath.empty()) return "";
127
128   int pos = thePath.rfind('/');
129   std::string path;
130   if(pos > 0) {
131     path = thePath.substr(0, pos+1);
132   }
133   if(path.empty()) {
134     pos = thePath.rfind('\\');
135     if(pos > 0) path = thePath.substr(0, pos+1); 
136   }
137   if(path.empty()) {
138     pos = thePath.rfind('|');
139     if(pos > 0) path = thePath.substr(0, pos+1); 
140   }
141   if(path.empty()) {
142     path = thePath+"/";
143   }
144   
145 #ifdef WIN32  //Check if the only disk letter is given as path
146   if(path.size() == 2 && path[1] == ':') path +='\\';
147 #endif
148
149   for(int i = 0, len = path.size(); i<len; i++) 
150     if(path[i] == '|') path[i] = '/';
151   return path;
152 }
153
154
155 bool Exists(const std::string thePath) 
156 {
157         return Kernel_Utils::IsExists( thePath );
158 }
159
160
161 std::string divideString(const std::string& theValue, int nbChars)
162 {
163   return theValue.substr(nbChars, theValue.size());
164 }
165
166 std::vector<std::string> splitString(const std::string& theValue, char separator)
167 {
168   std::vector<std::string> vs;
169   if(theValue[0] == separator && theValue.size() == 1) return vs;
170   int pos = theValue.find(separator);
171   if(pos < 0) {
172     vs.push_back(theValue);
173     return vs;
174   }
175  
176   std::string s = theValue;
177   if(s[0] == separator) s = s.substr(1, s.size());
178   while((pos = s.find(separator)) >= 0) {
179     vs.push_back(s.substr(0, pos));
180     s = s.substr(pos+1, s.size());
181   }
182                
183   if(!s.empty() && s[0] != separator) vs.push_back(s);
184   return vs;
185 }
186
187
188 int main (int argc, char * argv[])
189 {
190   std::cout << "Test started " << std::endl;
191   
192   DF_Application* appli = new DF_Application;
193   /*  
194   DF_Document* doc1 = appli->NewDocument("doc_1");
195   
196   DF_Label root1 = doc1->Main();
197   DF_Label child = root1.FindChild(3, true); //0:1:3
198   
199   DF_Container* attr1 = DF_Container::Set(child);
200   attr1->SetInt("eighteen", 18);
201
202
203   DF_Attribute* attr = NULL;
204   if(!(attr = child.FindAttribute(DF_Container::GetID()))) {
205     std::cout << "Attribute wasn't found" << std::endl;
206   }
207   else {
208     attr1 = dynamic_cast<DF_Container*>(attr);
209     std::cout << "Attribute was found " << " HasID " << attr1->HasIntID("eighteen") << " value = " << attr1->GetInt("eighteen")<< std::endl;
210   }
211   
212   DF_Container *attr2 = (DF_Container*)child.FindAttribute(DF_Container::GetID());    
213
214   if(!attr2) cout << "Can't find the attribute" << endl;
215
216   std::cout << "Change find : " << attr2->GetInt("eighteen") << std::endl;
217
218
219   std::cout << "Forgetting " << child.ForgetAttribute(DF_Container::GetID()) << std::endl;
220    if(!child.FindAttribute(DF_Container::GetID())) {
221     std::cout << "Attribute wasn't found" << std::endl;
222   }
223
224
225   child = root1.NewChild(); //0:1:4
226   
227   child.NewChild();//0:1:4:1
228     
229   child.NewChild();//0:1:4:2
230
231   std::cout << "Is equal " << (child == child)   << std::endl;
232   std::cout << "Is equal " << (child == root1)   << std::endl;
233
234   child = root1.NewChild(); //0:1:5
235
236   child.NewChild();//0:1:5:1
237   root1.NewChild();//0:1:6
238   
239
240   DF_ChildIterator CI(root1.Father(), true);
241   //root1.dump();
242   for(; CI.More(); CI.Next()) {
243     std::cout << CI.Value().Entry() << std::endl;
244     //CI.Value().dump();
245   }
246
247   DF_Label L = DF_Label::Label(child, "0:1:4:1");
248   std::cout << "Found Label " <<  L.Entry()   << std::endl;
249
250   std::string s("012-56");
251   
252   int pos = s.find('-');
253   std::cout << "First part : " << s.substr(0, pos) << std::endl;
254   std::cout << "Last part : " << s.substr(pos+1, s.size()) << std::endl;
255
256   std::vector<std::string> vs = splitString("/dn20/salome/srn/salome2/", '/');
257   for(int i = 0; i<vs.size(); i++)
258     std::cout << vs[i] << std::endl;
259
260   std::cout << "Diveded str = " << divideString("abcdefg",3) << std::endl;
261   
262   //mkdir("/dn20/salome/srn/salome2", 0x1ff);
263
264   //cout << "Exists " <<  Exists("/dn20/salome/srn/salome2") << endl;
265
266   //cout << GetDirFromPath("/dn20/salome/srn/salome2/test.hdf") << endl;
267   //cout << GetDirFromPath("D:\\salome\\srn\\salome2\\test.hdf") << endl;
268   //cout << GetDirFromPath("D:") << endl;
269   //cout << GetDirFromPath("/dn20") << endl; 
270   //cout << GetDirFromPath("..") << endl;
271   //cout << GetDirFromPath("D:\\") << endl;
272   //cout << GetDirFromPath("D:\\test.hdf") << endl;
273
274   cout << "User : " << GetUserName() << endl;
275   
276   int month=0,day=0,year=0,hh=0,mn=0,ss=0;
277   GetSystemDate(year, month, day, hh, mn, ss);
278   std::cout << "Date: " << year << " " << month << " " << day << " " << hh << " " << mn << " " << ss << std::endl;
279
280   std::string t("absd");
281   t.insert(t.begin(), 'b');
282   cout << "Result = " << t   << endl;
283   char* cstr = (char*)t.c_str();
284   printStr(cstr+1);
285  
286   */
287
288   DF_Document* doc2 = appli->NewDocument("doc_2");
289
290   DF_Label root2 = doc2->Main();
291   DF_Label sco = root2.NewChild();              //0:1:1
292   DF_Label so1 = sco.FindChild(3, true);        //0:1:1:3
293   DF_Label so5 = so1.FindChild(5, true);        //0:1:1:5
294   DF_Label so51 = so5.NewChild();               //0:1:1:5:1
295   DF_Label so511 = so51.NewChild();             //0:1:1:5:1:1
296   DF_Label so513 = so51.FindChild(3, true);     //0:1:1:5:1:3
297   DF_Label so5131 = so513.NewChild();           //0:1:1:5:1:3:1
298   
299
300   so51.FindChild(2, true);
301
302
303   DF_ChildIterator CI2(so5, true);
304   so5.dump();
305   for(; CI2.More(); CI2.Next()) {
306     std::cout << " ###### Found child with entry = " << CI2.Value().Entry() << std::endl;
307     //CI2.Value().dump();
308   }
309
310   delete appli;    
311
312   std::cout << "Test finished " << std::endl;    
313   return 0;
314 }
315