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