]> Creatis software - bbtk.git/blob - kernel/src/bbtkExecuter.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkExecuter.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbtkExecuter.h,v $
4   Language:  C++
5   Date:      $Date: 2008/10/17 08:18:13 $
6   Version:   $Revision: 1.16 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  *  \file 
33  *  \brief class Executer: level 0 of script execution (header)
34  */
35 /**
36  *  \class bbtk::Executer 
37  *  \brief class Executer: level 0 of script execution 
38  */
39  
40 #ifndef __bbtkExecuter_h__
41 #define __bbtkExecuter_h__
42
43 #include "bbtkVirtualExec.h"
44
45 #include "bbtkSystem.h"
46 #include "bbtkComplexBlackBox.h"
47 #include "bbtkFactory.h"
48 #include <string>
49 #include <deque>
50
51 namespace bbtk
52 {
53
54   class Interpreter;
55
56
57   class /*BBTK_EXPORT*/ Executer : public VirtualExec
58   {
59     BBTK_OBJECT_INTERFACE(Executer);
60     typedef VirtualExec Superclass;
61   public:
62     static Pointer New();
63     
64
65     /// Gets the factory used by the executer
66     Factory::Pointer GetFactory() { return mFactory; }
67     /// Gets the factory used by the executer (const)
68     //    const Factory::Pointer GetFactory() const { return mFactory; }
69
70
71     /// Sets the inputs of the workspace : 
72     void SetInputs(const std::map<std::string,std::string>& m) { mInputs = m; }
73
74     /// Puts the executer in "no exec" mode, 
75     /// which creates but does not execute pipelines 
76     void SetNoExecMode(bool b) { mNoExecMode = b; }
77
78     bool GetNoExecMode() const { return mNoExecMode; }
79
80     /// Sets the mode of dialog of the executer for Root inputs 
81     void SetDialogMode(DialogModeType t) { mDialogMode = t; }
82
83     void SetNoErrorMode(bool b) { mNoErrorMode = b; }
84
85     bool GetNoErrorMode() const { return mNoErrorMode; }
86
87
88     //=================================================================
89     /// Loads a package
90     void LoadPackage(const std::string &name );
91
92     /// Unloads a package
93     void UnLoadPackage(const std::string &name );
94
95     /// Starts a package block  
96     void BeginPackage (const std::string &name );
97
98     /// Ends a package block
99     void EndPackage ();
100
101     /// Starts the definition of a new ComplexBlackBox in package pack
102     /// scriptfilename is the file from which the def is read
103     void Define (const std::string &name,
104                  const std::string& pack,
105                  const std::string &scriptfilename);
106
107     /// Sets the file name to use for the current definition
108     /// (Used to set it after the Define command)
109     void SetCurrentFileName (const std::string &name );
110
111     /// End the definition of a ComplexBlackBox
112     void EndDefine ();
113
114     /// Sets the kind of the currently defined ComplexBlackBox
115     void Kind(const std::string& kind);
116
117     /// Creates a new black box in current complex box
118     void Create ( const std::string& boxType, const std::string& boxName);
119
120     /// Destroys a black box
121     void Destroy (const std::string &boxName);
122
123     /// Connects the output boxOutput to the input boxInput
124     void Connect (const std::string &boxfrom,
125                   const std::string &output,
126                   const std::string &boxto,
127                   const std::string &input);
128
129     /// Executes the box 
130     void Execute (const std::string &box);
131
132     /// Defines an input of the current complex box
133     void DefineInput (const std::string &name,
134                       const std::string &box,
135                       const std::string &input,
136                       const std::string &help);
137
138     /// Defines an output of the current complex box
139     void DefineOutput (const std::string &name,
140                        const std::string &box,
141                        const std::string &output,
142                        const std::string &help);     
143
144     /// sets the input of the box with the value
145     void Set (const std::string &box, 
146               const std::string &input, 
147               const std::string &value);
148
149     /// gets the output of the box
150     std::string Get (const std::string &box, 
151                      const std::string &output);
152
153     /// changes the workspace name
154     void SetWorkspaceName( const std::string& n );
155
156     ///Adds the authorName to the Box author list
157     void Author(const std::string &authorName);
158
159     ///Adds the Categories to the Box category list
160     void Category(const std::string &category);
161
162     /// The description string which explains what does the ComplexBox
163     void Description(const std::string & d);
164
165     /// prints the list off the boxes of the current box
166     void PrintBoxes();
167
168    /// Generate a HTML with a gif file with the current pipeline (Graphviz-dot needed). Returns the file path
169     std::string ShowGraph(const std::string &nameblackbox, 
170                           const std::string &detailStr, 
171                           const std::string &levelStr,
172                           const std::string &output_file,
173                           const std::string &custom_header,
174                           const std::string &custom_title,
175                           bool system_display = true);
176
177     /// Generate a HTML with a gif file with the current pipeline (Graphviz-dot needed). Returns the file path
178     std::string ShowGraphInstances(const std::string &nameblackbox, int detail, int level, bool system_display=true);
179     
180     /// Description of the actual pipeline
181     void ShowRelations(const std::string &nameblackbox, const std::string &detailStr, const std::string &levelStr);
182     
183     /// Resets the workspace : destroys all boxes / unloads all packages
184     void Reset();
185
186     /// Sets the level of message for kind
187     void SetMessageLevel(const std::string &kind,
188                          int level);
189
190    /// Prints help on the messages
191     void HelpMessages();
192     
193
194     void Print(const std::string & message);
195
196   //  static const std::string& GetObjectDescription();
197   //  { static std::string s("Executer"); return s; }
198
199
200     ComplexBlackBoxDescriptor::Pointer GetWorkspace() 
201     { return mRootCBB.lock(); }
202     Package::Pointer GetUserPackage() 
203     { return mRootPackage.lock(); }
204
205     /// Gets the current working black box 
206     ComplexBlackBoxDescriptor::Pointer GetCurrentDescriptor() 
207     { return mOpenDefinition.back().box; }
208     
209
210   protected:
211
212   private:
213
214     
215     /// Returns true when we are inside a define/endefine block
216     //    bool InDefinitionBlock() { return (mOpenDefinition.size()>1); }
217
218     //==================================================================
219     // ATTRIBUTES
220      
221     /// The factory used
222     Factory::Pointer mFactory;
223     
224  
225     /// The Root Package 
226     /// Contains the root ComplexBlabkBox
227     /// In which ComplexBlackBoxes are put by default
228     /// Its name in bbi is 'user'
229     Package::WeakPointer mRootPackage;
230     
231     /// The root ComplexBlackBox
232     /// in which operations are done when outside a define/endefine block
233     /// Its name in bbi is 'workspace'  
234     ComplexBlackBoxDescriptor::WeakPointer mRootCBB;
235
236     /// Struct that stores info on user defined complex black boxes
237     struct CBBDefinition
238     {
239       ComplexBlackBoxDescriptor::Pointer box;
240       std::string package;
241       CBBDefinition(ComplexBlackBoxDescriptor::Pointer d, 
242                     const std::string& p )
243         : box(d), package(p) {}
244     };
245
246     /// The stack of current working ComplexBlackBox
247     /// (is a stack for nested definitions)
248     /// only contains the root cbb when outside a define/endefine block
249     std::deque<CBBDefinition> mOpenDefinition;
250
251     /// The stack of current working package
252     /// (is a stack for nested definitions)
253     std::deque<Package::WeakPointer> mOpenPackage;
254
255     /// The input values of the Root ComplexBlackBox
256     std::map<std::string,std::string> mInputs;
257     
258     /// no exec mode flag
259     bool mNoExecMode;
260
261
262     /// Dialog mode
263     DialogModeType mDialogMode;
264
265     /// no error mode flag
266     bool mNoErrorMode;
267
268   };
269 }
270 #endif