]> Creatis software - bbtk.git/blob - kernel/appli/bbs2cpp/bbs2.cxx
Clean Code
[bbtk.git] / kernel / appli / bbs2cpp / bbs2.cxx
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29                                                                                 
30   Program:   bbtk
31   Module:    $RCSfile: bbs2cpp.cxx,v $
32   Language:  C++
33   Date:      $Date: 2012/11/16 08:48:18 $
34   Version:   $Revision: 1.5 $
35                                                                                 
36   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
37   l'Image). All rights reserved. See Doc/License.txt or
38   http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
39                                                                                 
40      This software is distributed WITHOUT ANY WARRANTY; without even
41      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
42      PURPOSE.  See the above copyright notices for more information.
43                                                                                 
44 =========================================================================*/
45
46
47 #include <stdio.h>
48
49 #include "bbtkUtilities.h"
50 #include "bbtkInterpreter.h"
51 #include "bbtkInterpreterJavaScript.h"
52 #include "bbtkInterpreterPython.h"
53
54 int main(int argc, char* argv[])
55 {  
56     if (argc<3)
57     {
58         printf("bbs2 <filename.bbs> <cxx|py|js>\n");
59         return 1;
60     }
61     std::string fileBase,file,path;
62     std::string extention( argv[2] );
63     fileBase = bbtk::Utilities::ExtractScriptName(argv[1],path);
64     file = fileBase + std::string(".") + extention;
65
66     if ( extention.compare("cxx")==0)
67     {
68         printf("bbs -> cxx\n");
69         bbtk::Interpreter::Pointer I = bbtk::Interpreter::New(file);
70         I->SetThrow(true);
71         try
72         {
73             I->InterpretFile(argv[1]);
74         } catch (bbtk::Exception e) {
75             e.Print();
76         } // try
77     } // if cxx
78     
79     if ( extention.compare("py")==0)
80     {
81         printf("bbs -> py\n");
82          bbtk::InterpreterPython::Pointer I = bbtk::InterpreterPython::New();
83          I->SetThrow(true);
84          try
85          {
86              I->InterpretFile(argv[1]);
87              std::vector<std::string> pythonBBTK=  ((bbtk::InterpreterPython*)(I.get()))->pythonBBTK  ;
88              FILE *ff=fopen(file.c_str(),"w+");
89              fprintf(ff,"\n" );
90              fprintf(ff,"from bbtk.bbtkBlackBox import *\n" );
91              fprintf(ff,"\n" );
92              fprintf(ff,"class %s:\n",fileBase.c_str() );
93              fprintf(ff,"\n" );
94              fprintf(ff,"    def __init__(self):\n" );
95              fprintf(ff,"        self.mCBpy  =  ComplexBlackBox('%s')\n",file.c_str() );
96              fprintf(ff,"\n" );
97              fprintf(ff,"    def Run(self):\n" );
98              int i,size=pythonBBTK.size();
99              for (i=0; i<size;i++)
100              {
101                  fprintf(ff,"        self.mCBpy.%s\n", pythonBBTK[i].c_str() );
102              }// for i
103              fprintf(ff,"        self.mCBpy.Execute()\n" );
104              fclose(ff);
105          } catch (bbtk::Exception e) {
106              e.Print();
107          } // try
108     } // if py
109
110     if ( extention.compare("js")==0)
111     {
112                 printf("bbs -> js\n");
113         bbtk::InterpreterJavaScript::Pointer I = bbtk::InterpreterJavaScript::New();
114         I->SetThrow(true);
115         try
116         {
117                 I->InterpretFile(argv[1]);
118             std::vector<std::string> javascriptBBTK=  ((bbtk::InterpreterJavaScript*)(I.get()))->javascriptBBTK  ;
119             FILE *ff=fopen(file.c_str(),"w+");
120             fprintf(ff,"import * as bbtk from './bbtk.js' \n" );
121             fprintf(ff,"export  class %s{\n",fileBase.c_str() );
122             fprintf(ff,"    Run(){\n" );
123             fprintf(ff,"        let mCBjs  = new bbtk.ComplexBlackBox('%s')\n",fileBase.c_str());
124             int i,size=javascriptBBTK.size();
125             for (i=0; i<size;i++)
126             {
127                 fprintf(ff,"        mCBjs.%s\n", javascriptBBTK[i].c_str() );
128             }// for i
129             fprintf(ff,"        mCBjs.Execute()\n" );
130             fprintf(ff,"    } \n" );
131             fprintf(ff,"} \n" );
132             fclose(ff);
133         } catch (bbtk::Exception e) {
134             e.Print();
135         } // try
136    } // if js
137     
138   return 0;
139 }
140
141 // EOF
142