]> Creatis software - bbtk.git/blob - kernel/appli/bbs2cpp/bbs2.cxx
Clean code for Python
[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 <InputFile.bbs> <OutputFile.[cxx|py|js]> \n");
59         return 1;
60     }
61
62 //EED 2023-11-07
63     //    std::string fileBase,file,path;
64     //    std::string extention( argv[2] );
65     //    fileBase = bbtk::Utilities::ExtractScriptName(argv[1],path);
66     //    file = fileBase + std::string(".") + extention;
67
68     std::string fileBase,path;
69 //EED 2023-11-15
70 //    std::string extention( argv[3] );
71 //    fileBase = bbtk::Utilities::ExtractScriptName(argv[1],path);
72 //    std::string file(path+"/"+fileBase+"."+extention);
73     std::string file( argv[2] );
74     printf("file %s \n",file.c_str() );
75
76     std::string extentionCxx = file.substr( file.length()-3, 3);
77     if ( extentionCxx.compare(".cxx")==0)
78     {
79         printf("bbs -> cxx\n");
80         bbtk::Interpreter::Pointer I = bbtk::Interpreter::New(file);
81         I->SetThrow(true);
82         try
83         {
84             I->InterpretFile(argv[1]);
85         } catch (bbtk::Exception e) {
86             e.Print();
87         } // try
88     } // if cxx
89     
90     std::string extentionPy = file.substr( file.length()-2, 2);
91     if ( extentionPy.compare("py")==0)
92     {
93         printf("bbs -> py\n");
94          bbtk::InterpreterPython::Pointer I = bbtk::InterpreterPython::New();
95          I->SetThrow(true);
96          try
97          {
98              I->InterpretFile(argv[1]);
99              std::vector<std::string> pythonBBTK=  ((bbtk::InterpreterPython*)(I.get()))->pythonBBTK  ;
100              FILE *ff=fopen(file.c_str(),"w+");
101              int i,size=pythonBBTK.size();
102              for (i=0; i<size;i++)
103              {
104                  fprintf(ff,"%s\n", pythonBBTK[i].c_str() );
105              }// for i
106              fclose(ff);
107          } catch (bbtk::Exception e) {
108              e.Print();
109          } // try
110     } // if py
111
112     std::string extentionJs = file.substr( file.length()-2, 2);
113     if ( extentionJs.compare("js")==0)
114     {
115                 printf("bbs -> js\n");
116         bbtk::InterpreterJavaScript::Pointer I = bbtk::InterpreterJavaScript::New();
117         I->SetThrow(true);
118         try
119         {
120                 I->InterpretFile(argv[1]);
121             std::vector<std::string> javascriptBBTK=  ((bbtk::InterpreterJavaScript*)(I.get()))->javascriptBBTK  ;
122             FILE *ff=fopen(file.c_str(),"w+");
123             fprintf(ff,"import * as bbtk from './bbtk.js' \n" );
124 //clean this code
125 //            fprintf(ff,"export  class %s{\n",fileBase.c_str() );
126             fprintf(ff,"    Run(){\n" );
127 //clean this code
128 //            fprintf(ff,"        let mCBjs  = new bbtk.ComplexBlackBox('%s')\n",fileBase.c_str());
129             int i,size=javascriptBBTK.size();
130             for (i=0; i<size;i++)
131             {
132                 fprintf(ff,"        mCBjs.%s\n", javascriptBBTK[i].c_str() );
133             }// for i
134             fprintf(ff,"        mCBjs.Execute()\n" );
135             fprintf(ff,"    } \n" );
136             fprintf(ff,"} \n" );
137             fclose(ff);
138         } catch (bbtk::Exception e) {
139             e.Print();
140         } // try
141    } // if js
142     
143   return 0;
144 }
145
146 // EOF
147