]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/GObjectsMVCFactory.cxx
0b299b8e9922f2559565e82451d45c7bd841f5f6
[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 = _interpreter->GetExecuter()->GetFactory();
67                 Package::Pointer k = factory->GetPackage(packageName);
68                 std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc = k->GetDescriptorMap();
69                 return mapDesc[boxName];
70         }
71
72         //=========================================================================
73         GObjectsMVCFactory* GObjectsMVCFactory :: getInstance()
74         {
75                 if(instance == NULL){
76                         instance = new GObjectsMVCFactory();
77                 }
78                 return instance;
79         }
80
81         //=========================================================================
82
83         void GObjectsMVCFactory :: destroyInstance()
84         {
85                 //FCY memory leaks
86                 delete instance;
87                 instance=NULL;
88         }
89
90         //=========================================================================
91
92         vtkGObjectView* GObjectsMVCFactory :: createGObjectView(int type)
93         {
94                 vtkGObjectView* view = NULL;
95                 if (type == GBLACKBOX)
96                 {
97                         view = new vtkGBlackBoxView();
98                 }
99                 else if(type == GPORT)
100                 {
101                         view = new vtkGPortView();
102                 }
103                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
104                 {
105                         view = new vtkGComplexBoxPortView();
106                 }
107                 return view;
108         }
109
110         //=========================================================================
111
112         GObjectController* GObjectsMVCFactory :: createGObjectController(int type)
113         {
114                 GObjectController *controller = NULL;
115                 if (type == GBLACKBOX)
116                 {
117                         controller = new GBlackBoxController();
118                 }
119                 else if(type == GPORT)
120                 {
121                         controller = new GPortController();
122                 }
123                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
124                 {
125                         controller = new GBoxController();
126                 }
127                 return controller;
128         }
129
130         //=========================================================================
131         
132         GObjectModel* GObjectsMVCFactory :: createGObjectModel(int type)
133         {
134                 GObjectModel *model = NULL;
135                 if (type == GBLACKBOX)
136                 {
137                         model = new GBlackBoxModel();
138                 }
139                 else if(type == GPORT)
140                 {
141                         model = new GPortModel();
142                 }
143                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
144                 {
145                         model = new GComplexBoxPortModel();
146                 }
147
148                 model->setGObjectType(type);
149
150                 return model;
151         }
152
153         //=========================================================================
154
155
156 }  // EO namespace bbtk
157
158 // EOF
159