Salome HOME
e788c858d20831e94e4aabc30439a9e15c951ace
[modules/kernel.git] / src / Launcher / Launcher_XML_Persistence.hxx
1 // Copyright (C) 2007-2013  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
23 #ifndef __LAUNCHER_XML_PERSISTENCE_HXX__
24 #define __LAUNCHER_XML_PERSISTENCE_HXX__
25
26 #include <list>
27
28 #include "Launcher_Utils.hxx"
29 #include "Launcher_Job.hxx"
30
31 namespace Launcher
32 {
33   typedef struct _xmlNode xmlNode;
34   typedef xmlNode *xmlNodePtr;
35
36   class LAUNCHER_EXPORT XML_Persistence
37   {
38   public:
39     virtual ~XML_Persistence() {}
40
41     /*! Load the jobs from the XML file "jobs_file".
42      *  Return a list with the jobs that were successfully loaded.
43      *  The ownership of the created jobs is transferred to the caller.
44      */
45     static std::list<Job *> loadJobs(const char* jobs_file);
46
47     //! Save the jobs in the list "jobs_list" to the XML file "jobs_file".
48     static void saveJobs(const char* jobs_file, const std::list<const Job *> & jobs_list);
49
50   private:
51     // This class is static only, not instanciable
52     XML_Persistence() {}
53
54     static void addJobToXmlDocument(xmlNodePtr root_node, const Job & job);
55
56   };
57
58 }
59
60 #endif