Salome HOME
Merge branch 'agr/start_procedure'
[modules/kernel.git] / src / Launcher / Launcher_XML_Persistence.hxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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   typedef unsigned char xmlChar;
36
37   class LAUNCHER_EXPORT XML_Persistence
38   {
39   public:
40     virtual ~XML_Persistence() {}
41
42     /*! Load the jobs from the XML file "jobs_file".
43      *  Return a list with the jobs that were successfully loaded.
44      *  The ownership of the created jobs is transferred to the caller.
45      */
46     static std::list<Job *> loadJobs(const char* jobs_file);
47
48     //! Save the jobs in the list "jobs_list" to the XML file "jobs_file".
49     static void saveJobs(const char* jobs_file, const std::list<const Job *> & jobs_list);
50
51   private:
52     // This class is static only, not instanciable
53     XML_Persistence() {}
54
55     static void addJobToXmlDocument(xmlNodePtr root_node, const Job & job);
56     static Job * createJobFromXmlNode(xmlNodePtr job_node);
57     static void parseUserNode(Job * new_job, xmlNodePtr user_node);
58     static void parseRunNode(Job * new_job, xmlNodePtr run_node);
59     static void parseResourceNode(Job * new_job, xmlNodePtr res_node);
60
61
62     // Useful wrappers around libxml2 functions
63
64     // Return the value of the attribute, or an empty string if it is not defined
65     static std::string getAttrValue(xmlNodePtr node, const std::string & attrName);
66     static inline std::string xmlStrToString(const xmlChar * xmlStr);
67     static std::string getNodeContent(xmlNodePtr node);
68     template<typename T> static T getNumericalNodeContent(xmlNodePtr node);
69     static xmlNodePtr addNode(xmlNodePtr father, const std::string & name,
70                               const std::string & content);
71     template<typename T> static xmlNodePtr addNumericalNode(xmlNodePtr father,
72                                                             const std::string & name,
73                                                             T content);
74     static void addAttr(xmlNodePtr node, const std::string & name, const std::string & value);
75   };
76
77 }
78
79 #endif