]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/GObjectsMVCFactory.cxx
c9a1bc9a1bde6c2bb672b05f83775bcfab2204d4
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / 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                 instance=NULL;
86         }
87
88         //=========================================================================
89
90         vtkGObjectView* GObjectsMVCFactory :: createGObjectView(int type)
91         {
92                 vtkGObjectView* view = NULL;
93                 if (type == GBLACKBOX)
94                 {
95                         view = new vtkGBlackBoxView();
96                 }
97                 else if(type == GPORT)
98                 {
99                         view = new vtkGPortView();
100                 }
101                 return view;
102         }
103
104         //=========================================================================
105
106         GObjectController* GObjectsMVCFactory :: createGObjectController(int type)
107         {
108                 GObjectController *controller = NULL;
109                 if (type == GBLACKBOX)
110                 {
111                         controller = new GBlackBoxController();
112                 }
113                 else if(type == GPORT)
114                 {
115                         controller = new GPortController();
116                 }
117                 return controller;
118         }
119
120         //=========================================================================
121         
122         GObjectModel* GObjectsMVCFactory :: createGObjectModel(int type)
123         {
124                 GObjectModel *model = NULL;
125                 if (type == GBLACKBOX)
126                 {
127                         model = new GBlackBoxModel();
128                 }
129                 else if(type == GPORT)
130                 {
131                         model = new GPortModel();
132                 }
133
134                 model->setGObjectType(type);
135
136                 return model;
137         }
138
139         //=========================================================================
140
141
142 }  // EO namespace bbtk
143
144 // EOF
145