]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/GObjectsMVCFactory.cxx
#1372
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / GObjectsMVCFactory.cxx
1 /*=========================================================================                                                                               
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
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 bbtk::GObjectsMVCFactory 
34 */
35
36
37 #include "GObjectsMVCFactory.h"
38
39 namespace bbtk
40 {
41
42
43         //=========================================================================
44
45         GObjectsMVCFactory* GObjectsMVCFactory:: instance = NULL;
46         GObjectsMVCFactory::GObjectsMVCFactory()
47         {               
48                 _interpreter =Interpreter::New();
49                 _interpreter->SetCommandLine(true);
50                 std::stringstream* buf = new std::stringstream;
51                 *buf << "exec freeze_no_error" << std::endl;
52                 *buf << "message max 0" << std::endl; 
53                 *buf << "include *" << std::endl;
54                 _interpreter->InterpretBuffer(buf);     
55         }
56
57         //=========================================================================
58         GObjectsMVCFactory::~GObjectsMVCFactory()
59         {
60                 GObjectsMVCFactory::destroyInstance();
61         }
62         //=========================================================================
63
64         BlackBoxDescriptor::Pointer GObjectsMVCFactory::getBlackBoxDescriptor(std::string packageName, std::string boxName)
65         {       
66                 Factory::Pointer factory;               
67                 Package::Pointer k;
68                 std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc;
69                 try{
70                         factory = _interpreter->GetExecuter()->GetFactory();
71                         k = factory->GetPackage(packageName);
72                         mapDesc = k->GetDescriptorMap();
73                 }catch(Exception e){
74                         printf("SCP: Exception in BlackBoxDescriptor::Pointer GObjectsMVCFactory::getBlackBoxDescriptor for package %s\n", packageName.c_str());
75                         printf("SCP: ERROR package %s probably does not exist\n", packageName.c_str());
76                 }
77
78
79                 return mapDesc[boxName];
80         }
81
82         //=========================================================================
83         GObjectsMVCFactory* GObjectsMVCFactory :: getInstance()
84         {
85                 if(instance == NULL){
86                         instance = new GObjectsMVCFactory();
87                 }
88                 return instance;
89         }
90
91         //=========================================================================
92
93         void GObjectsMVCFactory :: destroyInstance()
94         {
95                 //FCY memory leaks
96                 delete instance;
97                 instance=NULL;
98         }
99
100         //=========================================================================
101
102         vtkGObjectView* GObjectsMVCFactory :: createGObjectView(int type)
103         {
104                 vtkGObjectView* view = NULL;
105                 if (type == GBLACKBOX)
106                 {
107                         view = new vtkGBlackBoxView();
108                 }
109                 else if(type == GPORT)
110                 {
111                         view = new vtkGPortView();
112                 }
113                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
114                 {
115                         view = new vtkGComplexBoxPortView();
116                 }
117                 return view;
118         }
119
120         //=========================================================================
121
122         GObjectController* GObjectsMVCFactory :: createGObjectController(int type)
123         {
124                 GObjectController *controller = NULL;
125                 if (type == GBLACKBOX)
126                 {
127                         controller = new GBlackBoxController();
128                 }
129                 else if(type == GPORT)
130                 {
131                         controller = new GPortController();
132                 }
133                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
134                 {
135                         controller = new GBoxController();
136                 }
137                 return controller;
138         }
139
140         //=========================================================================
141         
142         GObjectModel* GObjectsMVCFactory :: createGObjectModel(int type)
143         {
144                 GObjectModel *model = NULL;
145                 if (type == GBLACKBOX)
146                 {
147                         model = new GBlackBoxModel();
148                 }
149                 else if(type == GPORT)
150                 {
151                         model = new GPortModel();
152                 }
153                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
154                 {
155                         model = new GComplexBoxPortModel();
156                 }
157
158                 model->setGObjectType(type);
159
160                 return model;
161         }
162
163         //=========================================================================
164
165
166 }  // EO namespace bbtk
167
168 // EOF
169