Salome HOME
5148426c5cc4d55dd65ed24f570def3711832672
[modules/gui.git] / src / LightApp / LightApp_Driver.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #ifndef LIGHTAPP_DRIVER_H
23 #define LIGHTAPP_DRIVER_H
24
25 #include "LightApp.h"
26
27 #include "string"
28 #include "vector"
29 #include "map"
30
31 #ifdef WIN32
32 #pragma warning( disable:4251 )
33 #endif
34
35 /*!Description : Driver can save to file and read from file list of files for light modules*/
36
37 class LIGHTAPP_EXPORT LightApp_Driver
38 {
39 public:
40   LightApp_Driver();
41   virtual ~LightApp_Driver();
42
43
44   typedef std::vector<std::string> ListOfFiles;
45
46   virtual bool        SaveDatasInFile   (const char* theFileName, bool isMultiFile);
47   virtual bool        ReadDatasFromFile (const char* theFileName, bool isMultiFile);
48   virtual std::string GetTmpDir      (const char* theURL, const bool isMultiFile);
49
50   ListOfFiles         GetListOfFiles (const char* theModuleName);
51   virtual void        SetListOfFiles (const char* theModuleName, const ListOfFiles theListOfFiles);
52   virtual void        RemoveTemporaryFiles(const char* theModuleName, const bool IsDirDeleted);
53   void                RemoveFiles( const ListOfFiles& theFiles, const bool IsDirDeleted);
54
55   virtual void        ClearDriverContents();
56
57 protected:
58   void                PutFilesToStream(const std::string& theModuleName, unsigned char*& theBuffer,
59                                        long& theBufferSize, bool theNamesOnly = false);
60   ListOfFiles         PutStreamToFiles(const unsigned char* theBuffer,
61                                        const long theBufferSize, bool theNamesOnly = false);
62
63   std::string GetTmpDir();
64   std::string GetDirFromPath(const std::string& thePath);
65
66   void                SetIsTemporary( bool theFlag ) { myIsTemp = theFlag; }
67   bool                IsTemporary() const { return myIsTemp; }
68
69 protected:
70   typedef std::map<std::string, ListOfFiles> MapOfListOfFiles;
71   MapOfListOfFiles                           myMap;
72   std::string                                myTmpDir;
73
74 private:
75   bool                                       myIsTemp;
76 };
77
78 #endif