]> Creatis software - creaImageIO.git/blob - src2/creaImageIOGimmick.cpp
Works with Visual Studio 2008
[creaImageIO.git] / src2 / creaImageIOGimmick.cpp
1
2 #include <creaImageIOGimmick.h>
3
4 #include <creaImageIOSystem.h>
5 #include <boost/filesystem.hpp>
6 #include <boost/algorithm/string.hpp>
7 //#include "io.h"
8 #ifndef PATH_MAX // If not defined yet : do it 
9 #  define PATH_MAX 2048
10 #endif
11
12 #ifdef _DEBUG
13 #define new DEBUG_NEW
14 #endif
15
16 namespace creaImageIO
17 {
18   //==============================================================
19   Gimmick::Gimmick()
20     : mImageAdder(0)
21   {    
22   RegisterGimmickMessageTypes();
23         mSettings=0;
24         mSynchronizer=0;
25   }
26   //==============================================================
27
28
29   //==============================================================
30   Gimmick::~Gimmick()
31   {
32          if(mSettings!=0)
33           {
34                 mSettings->writeSettingsFile();
35                 delete mSettings;
36           }
37         if(mSynchronizer!=0)
38           {
39                 delete mSynchronizer;
40           }
41   }
42   //==============================================================
43   
44   //==============================================================
45   void Gimmick::Initialize(const std::string& path)
46   {
47           Initialize();
48   }
49
50   //==============================================================
51   void Gimmick::Initialize()
52   {
53         std::string i_nameDB = "Local database";
54     // Create the UserSettings dir if does not exist
55     CreateUserSettingsDirectory();
56     // Sets the current directory to the home dir
57     mCurrentDirectory =  GetHomeDirectory();
58     mSynchronizer= new Synchronizer(GetUserSettingsDirectory()+"Shared/gimmick/");
59
60     mSettings  = new Settings(mCurrentDirectory);
61         
62     std::string dbpath = GetLocalDatabasePath();
63     // Create or open local database
64     std::string dpath= mCurrentDirectory + "/.gimmick/Shared/gimmick/localdatabase_Descriptor.dscp";
65     boost::algorithm::replace_all( dpath,
66                                    INVALID_FILE_SEPARATOR , 
67                                    VALID_FILE_SEPARATOR);
68     mLocalDatabase = createDB(i_nameDB, dpath, dbpath);
69     // Add it to the TreeHandlerMap
70     mTreeHandlerMap[i_nameDB] = mLocalDatabase;
71     
72     //Add additional DB from user Settings
73     addDBSettings();    
74   }
75
76    ///////////////////////////////////////////////////////////////////////
77    // add DB to TreeHandler Map                                         //
78    // @param i_name : DB name                                           //
79    // @param i_location : DB location                                   //
80    // return : -                                                        //
81   ////////////////////////////////////////////////////////////////////////
82  void Gimmick::addDB(const std::string &i_name, 
83                      const std::string &i_location)
84         {
85                 if(mTreeHandlerMap.find(i_name) == mTreeHandlerMap.end())
86                 {
87                         mTreeHandlerMap[i_name] = new SQLiteTreeHandler(i_location);
88                         mTreeHandlerMap[i_name]->Open(true);
89                         mSettings->addDB(i_location);
90                 }
91         }
92
93   ///////////////////////////////////////////////////////////////////////////
94   // create a DB from a attributes descriptor file for medical images      //
95   // @param i_name : DB name                                                                                       //
96   // @param i_locDesc : location of descriptor file                                                //
97   // @param i_locDB : location of DB                                                                       //
98   // return : the SQLiteTreeHandler object on DB                                                   //
99         /////////////////////////////////////////////////////////////////////////
100         SQLiteTreeHandler* Gimmick::createDB(const std::string &i_name,
101                                              const std::string &i_locDesc,
102                                              const std::string &i_locDB)
103   {
104      SQLiteTreeHandler* sqlTreeH( new SQLiteTreeHandler(i_locDB) );
105     // Create or open local database
106     if (! boost::filesystem::exists(i_locDB) )
107      {
108          std::string mess = "Local database '";
109          mess += i_locDB;
110          mess += "' does not exist : creating it";
111          GimmickMessage(1,mess<<std::endl);
112          
113                  // CREATING DB STRUCTURE
114          sqlTreeH->GetTree().GetDescriptor().createDescriptorfromFile(i_locDesc);
115          if ( ! sqlTreeH->Create(true) )
116          {
117                 GimmickError("ERROR CREATING '"<<i_locDB<<"'");
118          }
119          sqlTreeH->SetAttribute(0,"Name",i_name);
120          }
121          else 
122          {
123                 /// Open and test it
124                 GimmickMessage(1,"Opening local database '" <<i_locDB<< "' " << std::endl);
125                 if ( !sqlTreeH->Open(true) )
126                 {
127                         GimmickError("ERROR OPENING '"<<i_locDB<<"'");
128                 }
129         }
130         return sqlTreeH;
131   }
132
133   //==============================================================
134   void Gimmick::Finalize()
135   {
136          
137           // delete SQLiteTreeHandler Object
138            for( TreeHandlerMapType::const_iterator it = mTreeHandlerMap.begin();
139                                                    it!= mTreeHandlerMap.end(); 
140                                                    ++it)
141            {
142                    delete it->second;
143            }
144   }
145   //==============================================================
146
147   //================================================================
148   // file separator
149 #if defined(_WIN32)
150 #define VALID_FILE_SEPARATOR "\\"
151 #define INVALID_FILE_SEPARATOR "/"
152 #else
153 #define INVALID_FILE_SEPARATOR "\\"
154 #define VALID_FILE_SEPARATOR "/"
155 #endif
156   //================================================================
157
158   //================================================================
159   const std::string& Gimmick::GetHomeDirectory()
160   {
161     if (mHomeDirectory.size()==0) 
162       {
163 #if defined(__GNUC__)
164         mHomeDirectory = getenv("HOME");
165 #elif defined(_WIN32)
166         mHomeDirectory = getenv("USERPROFILE");
167 #endif
168       }
169     return mHomeDirectory;
170   }
171   //================================================================
172   const std::string& Gimmick::GetUserSettingsDirectory()
173   {
174     if (mUserSettingsDirectory.size()==0) 
175       {
176         mUserSettingsDirectory = GetHomeDirectory();
177         mUserSettingsDirectory += "/.gimmick/";
178         boost::algorithm::replace_all( mUserSettingsDirectory, 
179                                        INVALID_FILE_SEPARATOR , 
180                                        VALID_FILE_SEPARATOR);
181       }
182     return mUserSettingsDirectory;
183   }
184   //================================================================
185
186
187   //================================================================
188   const std::string& Gimmick::GetLocalDatabasePath()
189   {
190     if (mLocalDatabasePath.size()==0) 
191       {
192         mLocalDatabasePath = GetUserSettingsDirectory();
193         mLocalDatabasePath += "Shared/gimmick/local_database.sqlite3";
194         boost::algorithm::replace_all( mLocalDatabasePath,
195                                        INVALID_FILE_SEPARATOR , 
196                                        VALID_FILE_SEPARATOR);
197       }
198     return mLocalDatabasePath;    
199   }
200
201   //========================================================================
202
203   //========================================================================
204   void Gimmick::CreateUserSettingsDirectory()
205   {
206           //JCP settings dir 02/10/2009
207           const std::string settingsdirectory = GetUserSettingsDirectory();
208           bool isdir = boost::filesystem::is_directory( settingsdirectory );
209     if (! isdir )
210       {
211         GimmickMessage(1,"Directory '"<<GetUserSettingsDirectory()<<"' "
212                        << "does not exist : creating it"<<std::endl);
213         
214         if ( ! boost::filesystem::create_directory( GetUserSettingsDirectory() ) )
215           {
216             GimmickError("ERROR CREATING '"<<GetUserSettingsDirectory()<<"'");
217           }
218       }
219
220         std::string setDir=GetUserSettingsDirectory();
221         boost::algorithm::replace_all( setDir,
222                                        INVALID_FILE_SEPARATOR , 
223                                        VALID_FILE_SEPARATOR);
224         setDir+="Shared/";
225         boost::filesystem::create_directory( setDir );
226         setDir+="gimmick/";
227         boost::filesystem::create_directory( setDir );
228         setDir+="localdatabase_Descriptor.dscp";
229
230         if(!boost::filesystem::is_regular(setDir))
231         {
232                 char name[PATH_MAX];
233 //EED           int err = GetBinaryDirectory(name, PATH_MAX);
234                 crea::System::GetAppPath(name,PATH_MAX);
235                 std::cout<<name<<std::endl;
236                 
237                 std::string path=name;
238                 path=path.substr(0,path.size()-1);
239                 path=path.substr(0,path.find_last_of("/"));
240                 //Creating directories
241
242 // The following stuff works on Linux, NOT CHECKED on Windows // JPR
243                 
244 #if defined(_WIN32)             
245                 path+="/bin/Shared/gimmick/localdatabase_Descriptor.dscp";
246 #else           
247                 path+="/Shared/gimmick/localdatabase_Descriptor.dscp";
248 #endif          
249                 std::cout <<"From: " << path   <<std::endl;
250                 std::cout <<"To: "   << setDir <<std::endl;
251                 boost::algorithm::replace_all(  path,
252                                                 INVALID_FILE_SEPARATOR , 
253                                                 VALID_FILE_SEPARATOR);
254                 boost::filesystem::copy_file(path,setDir);
255         }
256   }
257   //========================================================================
258
259
260   //========================================================================
261   /// Sets message level
262   void Gimmick::SetMessageLevel(int l)
263   {
264     SetGimmickMessageLevel(l);
265   }
266   //========================================================================
267
268   //========================================================================
269   /// Sets message level
270   void Gimmick::SetDebugMessageLevel(int l)
271   {
272     SetGimmickDebugMessageLevel(l);
273   }
274   //========================================================================
275
276   //========================================================================
277   /// Returns the tree handler with the given name
278   TreeHandler* Gimmick::GetTreeHandler(const std::string& name) const 
279   {  
280     TreeHandlerMapType::const_iterator i;
281     i = GetTreeHandlerMap().find(name);
282     if ( i == GetTreeHandlerMap().end() )
283       {
284         GimmickError("TreeHandler '"<<name<<"' does not exist");
285       }
286     return i->second;
287   }
288
289   //========================================================================
290   /// Add the files to the tree handler
291   void Gimmick::AddFiles(const std::string& d, 
292                         const std::vector<std::string>& filenames)
293   {
294     GimmickMessage(2,"Adding files to '"<<d<<"'"<<std::endl);
295  
296         mImageAdder.SetCurrentDatabase(d);
297         mImageAdder.SetTreeHandler(GetTreeHandler(d));
298         mImageAdder.SetSynchronizer(mSynchronizer);
299         mImageAdder.AddFiles(filenames);        
300   }
301   //========================================================================
302
303   //========================================================================
304   /// Add a dir to the local database
305   void Gimmick::AddDir(const std::string& d, const std::string& f, 
306                        bool recurse)
307   {
308         GimmickMessage(2,"Adding dir '"<<f<<"' to '"<<d<<"' recurse:"
309                          <<recurse<<std::endl);
310
311         TreeHandler * handler=GetTreeHandler(d);
312         mImageAdder.SetCurrentDatabase(d);
313         mImageAdder.SetTreeHandler(handler);
314         mImageAdder.SetSynchronizer(mSynchronizer);
315         mImageAdder.AddDirectory(f,recurse);  
316   }
317
318   //========================================================================
319
320   //========================================================================
321   void Gimmick::RemoveFile(const std::string& d, 
322                            tree::Node* node)
323   {
324           mImageAdder.SetCurrentDatabase(d);
325           mImageAdder.SetSynchronizer(mSynchronizer);
326           mImageAdder.RemoveFile(node);
327   }
328   //========================================================================
329
330   //========================================================================
331  
332   void Gimmick::CopyFiles(const std::vector<std::string>& filenames, const std::string& d )
333   {
334           TreeHandler * handler=GetTreeHandler(d);
335           mImageAdder.SetCurrentDatabase(d);
336           mImageAdder.SetTreeHandler(handler);
337           mImageAdder.SetSynchronizer(mSynchronizer);
338           mImageAdder.CopyFiles(filenames, mSettings->getValue(SETTINGS_COPY_PATH));
339   }
340
341   //========================================================================
342  
343   std::string Gimmick::Synchronize(const std::string& d, bool repair, bool checkAttributes)
344   {
345           TreeHandler * handler=GetTreeHandler(d);
346           mImageAdder.SetCurrentDatabase(d);
347           mImageAdder.SetTreeHandler(handler);
348           mImageAdder.SetSynchronizer(mSynchronizer);
349           return mImageAdder.Synchronize(repair, checkAttributes);
350   }
351
352   //========================================================================
353   /// 
354   void Gimmick::Print(const std::string& d)
355   {
356     GetTreeHandler(d)->GetTree().Print();
357   }
358   //========================================================================
359
360   void Gimmick::GetSetting(const std::string& name, std::string& value)
361   {
362     value = mSettings->getValue(name);
363   }
364   //========================================================================
365
366   //========================================================================
367
368   void Gimmick::GetAttributes(const std::string& d, 
369                         const std::string& filename, 
370                         const std::vector<std::string>& params, 
371                         std::vector<std::string>& results)
372   {
373           TreeHandler * handler=GetTreeHandler(d);
374           mImageAdder.SetCurrentDatabase(d);
375           mImageAdder.SetTreeHandler(handler);
376           mImageAdder.SetSynchronizer(mSynchronizer);
377           mImageAdder.GetAttributes(params, filename, results);
378   }
379   //========================================================================
380
381   //========================================================================
382
383   void Gimmick::UpdateSetting(const std::string& name, const std::string& value)
384   {
385           mSettings->updateSetting(name,value);
386           mSettings->writeSettingsFile();
387   }
388   //========================================================================
389
390   void Gimmick::DeleteDrive(const std::string& drive)
391   {
392         for( TreeHandlerMapType::const_iterator it = mTreeHandlerMap.begin();
393                                                it!= mTreeHandlerMap.end(); 
394                                                ++it)
395            {
396                    mImageAdder.SetTreeHandler(it->second);
397                    mImageAdder.DeleteDriveFromMainDB(drive);
398            }
399         mImageAdder.SetSynchronizer(mSynchronizer);
400         mImageAdder.DeleteDriveFromOtherDB(drive);
401   }
402
403   //========================================================================
404   void Gimmick::EditField(tree::Node* node, const std::string& d, const std::string& name, const std::string& key, const std::string& val)
405   {
406         TreeHandler * handler=GetTreeHandler(d);
407         mImageAdder.SetCurrentDatabase(d);
408         mImageAdder.SetTreeHandler(handler);
409         mImageAdder.EditField(node,name,key,val);
410   }
411   //========================================================================
412
413   ////////////////////////////////////////////////////////////////////////
414   // add DB from Settings file                                          //
415   // @param : -                                                         //
416   // return : -                                                         //
417   ////////////////////////////////////////////////////////////////////////
418   void Gimmick::addDBSettings()
419   {
420
421          std::string pathSettings = mSettings->getValue(SETTINGS_DBPATH);
422          
423          // split to find all paths
424          std::vector<std::string> paths;
425          std::string separator = ";";
426          std::string::size_type last_pos = pathSettings.find_first_not_of(separator);
427          //find first separator
428          std::string::size_type pos = pathSettings.find_first_of(separator, last_pos);
429          while(std::string::npos != pos || std::string::npos != last_pos)
430          {
431                 paths.push_back(pathSettings.substr(last_pos, pos - last_pos));
432                 last_pos = pathSettings.find_first_not_of(separator, pos);
433                 pos = pathSettings.find_first_of(separator, last_pos);
434          }
435
436          std::vector<std::string>::iterator it_path = paths.begin();
437          for(; it_path != paths.end(); ++it_path)
438          {
439                  pos = it_path->find_last_of("\\");
440                  last_pos = it_path->find_last_of(".");
441                  std::string name = it_path->substr(pos +1, last_pos -pos-1 );
442                  addDB(name, it_path->c_str());
443          }
444   }     
445 }