Salome HOME
Merge from V6_main 01/04/2013
[modules/yacs.git] / src / yacsloader / codeParsers.hxx
1 // Copyright (C) 2006-2013  CEA/DEN, EDF R&D
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.
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 #ifndef _CODEPARSERS_HXX_
21 #define _CODEPARSERS_HXX_
22
23 #include "parserBase.hxx"
24 #include "dataParsers.hxx"
25
26 #include "factory.hxx"
27
28 namespace YACS
29 {
30
31 /*! \brief Class for code parser in inline nodes.
32  *
33  */
34 struct codetypeParser: parser
35 {
36   static codetypeParser codeParser;
37   virtual void onStart(const XML_Char* el, const XML_Char** attr)
38     {
39       std::string element(el);
40       parser* pp=&parser::main_parser;
41       if(element == "code")pp=&stringtypeParser::stringParser;
42       this->SetUserDataAndPush(pp);
43       pp->init();
44       pp->pre();
45       pp->buildAttr(attr);
46     }
47   virtual void onEnd(const char *el,parser* child)
48     {
49       std::string element(el);
50       if(element == "code")code(((stringtypeParser*)child)->post());
51     }
52   virtual void pre (){_code="";}
53   virtual void code (const std::string& s)
54     {
55       if(_code == "")
56         _code=s;
57       else 
58         _code=_code + '\n' + s;
59     }
60   virtual myfunc post ()
61     {
62       _func._name="script";
63       _func._code=_code;
64       return _func;
65     }
66     std::string _code;
67     myfunc _func;
68 };
69
70 /*! \brief Class for function parser in inline nodes.
71  *
72  */
73 struct functypeParser: codetypeParser
74 {
75   static functypeParser funcParser;
76   virtual void buildAttr(const XML_Char** attr)
77     {
78       required("name",attr);
79       for (int i = 0; attr[i]; i += 2) 
80       {
81         if(std::string(attr[i]) == "name")name(attr[i+1]);
82       }
83     }
84   virtual void name (const std::string& name)
85     {
86       _func._name=name;
87     }
88   virtual myfunc post ()
89     {
90       _func._code=_code;
91       return _func;
92     }
93 };
94
95 }
96
97 #endif