]> 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: 2009/06/08 14:50:03 $
6   Version:   $Revision: 1.18 $
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     /// Clears the currently defined ComplexBlackBox
124     void Clear();
125
126     /// Connects the output boxOutput to the input boxInput
127     void Connect (const std::string &boxfrom,
128                   const std::string &output,
129                   const std::string &boxto,
130                   const std::string &input);
131
132     /// Executes the box 
133     void Execute (const std::string &box);
134
135     /// Defines an input of the current complex box
136     void DefineInput (const std::string &name,
137                       const std::string &box,
138                       const std::string &input,
139                       const std::string &help);
140
141     /// Defines an output of the current complex box
142     void DefineOutput (const std::string &name,
143                        const std::string &box,
144                        const std::string &output,
145                        const std::string &help);     
146
147     /// sets the input of the box with the value
148     void Set (const std::string &box, 
149               const std::string &input, 
150               const std::string &value);
151
152     /// gets the output of the box
153     std::string Get (const std::string &box, 
154                      const std::string &output);
155
156     /// changes the workspace name
157     void SetWorkspaceName( const std::string& n );
158
159     ///Adds the authorName to the Box author list
160     void Author(const std::string &authorName);
161
162     ///Adds the Categories to the Box category list
163     void Category(const std::string &category);
164
165     /// The description string which explains what does the ComplexBox
166     void Description(const std::string & d);
167
168
169
170
171
172
173     /// prints the list off the boxes of the current box
174     void PrintHelpListBoxes();
175
176    /// Generate a HTML with a gif file with the current pipeline (Graphviz-dot needed). Returns the file path
177     std::string ShowGraph(const std::string &nameblackbox, 
178                           const std::string &detailStr, 
179                           const std::string &levelStr,
180                           const std::string &output_file,
181                           const std::string &custom_header,
182                           const std::string &custom_title,
183                           bool system_display = true);
184
185     /// Generate a HTML with a gif file with the current pipeline (Graphviz-dot needed). Returns the file path
186     std::string ShowGraphInstances(const std::string &nameblackbox, int detail, int level, bool system_display=true);
187     
188     /// Prints help on a black box
189     void PrintHelpBlackBox(const std::string &nameblackbox, const std::string &detailStr, const std::string &levelStr);
190     
191
192
193
194
195
196     /// Resets the workspace : destroys all boxes / unloads all packages
197     void Reset();
198
199     /// Sets the level of message for kind
200     void SetMessageLevel(const std::string &kind,
201                          int level);
202
203    /// Prints help on the messages
204     void HelpMessages();
205     
206
207     void Print(const std::string & message);
208
209   //  static const std::string& GetObjectDescription();
210   //  { static std::string s("Executer"); return s; }
211
212
213     ComplexBlackBoxDescriptor::Pointer GetWorkspace() 
214     { return mRootCBB.lock(); }
215     Package::Pointer GetUserPackage() 
216     { return mRootPackage.lock(); }
217
218     /// Gets the current working black box 
219     ComplexBlackBoxDescriptor::Pointer GetCurrentDescriptor() 
220     { return mOpenDefinition.back().box; }
221     
222
223   protected:
224
225   private:
226
227     
228     /// Returns true when we are inside a define/endefine block
229     //    bool InDefinitionBlock() { return (mOpenDefinition.size()>1); }
230
231     //==================================================================
232     // ATTRIBUTES
233      
234     /// The factory used
235     Factory::Pointer mFactory;
236     
237  
238     /// The Root Package 
239     /// Contains the root ComplexBlabkBox
240     /// In which ComplexBlackBoxes are put by default
241     /// Its name in bbi is 'user'
242     Package::WeakPointer mRootPackage;
243     
244     /// The root ComplexBlackBox
245     /// in which operations are done when outside a define/endefine block
246     /// Its name in bbi is 'workspace'  
247     ComplexBlackBoxDescriptor::WeakPointer mRootCBB;
248
249     /// Struct that stores info on user defined complex black boxes
250     struct CBBDefinition
251     {
252       ComplexBlackBoxDescriptor::Pointer box;
253       std::string package;
254       CBBDefinition(ComplexBlackBoxDescriptor::Pointer d, 
255                     const std::string& p )
256         : box(d), package(p) {}
257     };
258
259     /// The stack of current working ComplexBlackBox
260     /// (is a stack for nested definitions)
261     /// only contains the root cbb when outside a define/endefine block
262     std::deque<CBBDefinition> mOpenDefinition;
263
264     /// The stack of current working package
265     /// (is a stack for nested definitions)
266     std::deque<Package::WeakPointer> mOpenPackage;
267
268     /// The input values of the Root ComplexBlackBox
269     std::map<std::string,std::string> mInputs;
270     
271     /// no exec mode flag
272     bool mNoExecMode;
273
274
275     /// Dialog mode
276     DialogModeType mDialogMode;
277
278     /// no error mode flag
279     bool mNoErrorMode;
280
281   };
282 }
283 #endif