]> Creatis software - creaImageIO.git/blob - src/creaImageIOGimmickView.cpp
thread bug correction
[creaImageIO.git] / src / creaImageIOGimmickView.cpp
1 #include <creaImageIOGimmickView.h>
2 #include <creaImageIOSystem.h>
3 #include "boost/filesystem.hpp"
4
5 #if defined(USE_GDCM)
6 #include <gdcmGlobal.h>
7 #include <gdcmSerieHelper.h>
8 #include <vtkGdcmReader.h>
9 #endif
10
11 #if defined(USE_GDCM2)
12 #include <vtkGDCMImageReader.h>
13 #include "gdcmSystem.h"
14 #include "gdcmCryptographicMessageSyntax.h"
15 #include "gdcmUIDGenerator.h"
16 #include "gdcmAnonymizer.h"
17 #include "gdcmGlobal.h"
18 #endif
19
20
21 namespace fs = boost::filesystem;
22 namespace creaImageIO
23 {
24
25         ///Class used to represent the actual state of the image selected and to perform comparisons on its values
26   class ImageExtent
27   {
28   public:
29     ImageExtent(const std::string& x, const std::string& y, const std::string& z, const std::string& t)
30         {
31                 sscanf(x.c_str(),"%d",&mExtent[0]);
32                 sscanf(y.c_str(),"%d",&mExtent[1]);
33                 sscanf(z.c_str(),"%d",&mExtent[2]);
34                 sscanf(t.c_str(),"%d",&mExtent[3]);
35                 if(x==""){mExtent[0]=1;}
36                 if(y==""){mExtent[1]=1;}
37                 if(z==""){mExtent[2]=1;}
38                 if(t==""){mExtent[3]=1;}
39
40                 if (mExtent[3]>1) mDim=4;
41                 else if (mExtent[2]>1) mDim=3;
42                 else if (mExtent[1]>1) mDim=2;
43                 else if (mExtent[0]>1) mDim=1;
44                 else mDim=0;
45         }
46         
47
48         ///Clears the extent
49     void Clear() { mExtent[0] = mExtent[1] = mExtent[2] = mExtent[3] = 1; }
50
51         ///Returns true if the two extents are compatible
52     bool IsCompatible( const ImageExtent& );
53
54         ///Adds the extent passed as a parameter to the current extent
55     void Add ( const ImageExtent& );
56                 
57         ///Returns the ieth position of the extent
58     int Get(int i) { return mExtent[i]; }
59     
60         ///Returns the dimension of the current image
61     void SetDimension(int dim) { mDim=dim; }
62
63         ///Returns the dimension of the current image
64     int GetDimension() { return mDim; }
65
66   private:
67     int mExtent[4];
68     int mDim;
69   };
70
71   //======================================================================
72
73   //======================================================================
74   // CTor
75   GimmickView::GimmickView(boost::shared_ptr<Gimmick> gimmick, int threads)
76     : mGimmick(gimmick),
77           mReader(threads)
78   {
79     GimmickDebugMessage(1,"GimmickView::GimmickView"
80                         <<std::endl);
81         // Anciently started the threads ...
82     // Threads now automatically start at first image request
83     //mReader.Start();
84
85   }
86   //======================================================================
87
88   //======================================================================
89   /// Destructor
90   GimmickView::~GimmickView()
91   {
92     GimmickDebugMessage(1,"GimmickView::~GimmickView"
93                         <<std::endl);
94   }
95    //======================================================================
96  
97   //======================================================================  
98   /// Initializes the view : 
99   /// Creates the TreeViews for all the TreeHandler of the Controller
100   /// 
101   void GimmickView::Initialize()
102   {
103         mReaderStarted=false;
104   }
105   //======================================================================
106
107   //======================================================================
108   /// Finalize 
109   void GimmickView::Finalize()
110   {
111   }
112
113   //======================================================================
114
115   //======================================================================
116   /// Create the tree views 
117   void GimmickView::CreateTreeViews()
118   {
119     GimmickMessage(2,"Creating the tree views"<<std::endl);
120     Gimmick::TreeHandlerMapType::const_iterator i;
121     for (i = mGimmick->GetTreeHandlerMap().begin();
122          i!= mGimmick->GetTreeHandlerMap().end();
123          ++i)
124       {
125         this->CreateTreeView(i->second);
126       }
127   }
128
129   /// Create a tree view with a given name
130   void GimmickView::CreateSingleTreeView(std::string &i_name)
131   {
132         this->CreateTreeView(mGimmick->GetTreeHandlerMap()[i_name]);
133      
134   }
135
136
137   //======================================================================
138
139   //======================================================================
140   /// Updates the TreeView of given name from level l to bottom
141   /// (calls the virtual method TreeView::Update())
142   void GimmickView::UpdateTreeViewLevel(const std::string& t, int l)
143   {
144     TreeViewMapType::iterator i;
145     i = GetTreeViewMap().find(t);
146     if ( i == GetTreeViewMap().end() )
147       {
148         GimmickError("INTERNAL ERROR : GimmickView::UpdateTreeView : '"
149                      <<t<<"' is not in TreeViewMap");
150       }
151     i->second->UpdateLevel(l);
152   }
153
154   //======================================================================
155   /// Clears the status and begins a new selection process
156   void GimmickView::ResetExtent()
157   {
158           if(mImageExtent!=0)
159           {
160                   mImageExtent.reset();
161           }
162           valid=true;
163   }
164
165   //======================================================================
166
167   //======================================================================
168   bool ImageExtent::IsCompatible(const ImageExtent& ie)
169   {
170           bool compatible=true;
171           ImageExtent * extent= (ImageExtent*)&ie;
172           if((*extent).Get(0)!=Get(0)
173                  || (*extent).Get(1)!=Get(1))
174           {
175                   compatible=false;
176           }
177           return compatible;
178   }
179
180   //======================================================================
181
182   //======================================================================
183   void ImageExtent::Add(const ImageExtent& ie)
184   {
185           ImageExtent * extent= (ImageExtent*)&ie;
186           mExtent[2]+=(*extent).Get(2);
187           if(mExtent[2]>1)
188           {
189           SetDimension(3);
190           }
191   }
192
193   //======================================================================
194   /// No selected image
195   bool GimmickView::NoValidateSelected ()
196   {
197         GimmickDebugMessage(2,"Validating selected"<<std::endl);
198         std::string mMessage;
199         mMessage="Cannot have 0 images selected!";
200         valid=false;
201         modifyValidationSignal(valid);
202         SetMessage(mMessage);
203         return valid;
204   }
205
206   //======================================================================
207   ///Validates the dimension compliance of the images with the maximum and 
208   ///minimum given, and between their sizes
209   bool GimmickView::ValidateSelected (tree::Node* sel, int min_dim, int max_dim)
210   {
211         GimmickDebugMessage(2,"Validating selected"<<std::endl);
212         std::string mMessage;
213         
214         if(sel==0)
215         {
216                 mMessage="Cannot have 0 images selected!";
217                 valid=false;
218         }
219         else
220         {
221                         boost::shared_ptr<ImageExtent> ie=boost::shared_ptr<ImageExtent>(new ImageExtent((*sel).GetAttribute("D0028_0010"),
222                                                                         (*sel).GetAttribute("D0028_0011"),
223                                                                         (*sel).GetAttribute("D0028_0012"), 
224                                                                         ""));
225
226         if(mImageExtent==0)
227         {
228                 mImageExtent=ie;
229                 if((mImageExtent->Get(min_dim-1)<2)||(mImageExtent->Get(max_dim)>1))
230                 {
231                         valid=false;
232                 }
233                 else
234                 {
235                         std::stringstream out;
236                         out << mImageExtent->GetDimension() << "D image " << mImageExtent->Get(0) << "x"<< mImageExtent->Get(1) << "x"<< mImageExtent->Get(2) <<" selected";
237                         mMessage = out.str();
238                         mImageExtent->SetDimension(2);
239                         valid=true;
240                 }
241         }
242         else
243         {
244                 if(mImageExtent->IsCompatible(*ie))
245                 {
246                         if(mImageExtent->GetDimension()==max_dim && mImageExtent->Get(max_dim)>2)
247                         {
248                                 std::stringstream out;
249                                 out<<"Cannot add this image to selection : would result in a "<<mImageExtent->GetDimension()+1<<"D image!";
250                                 mMessage=out.str();
251                                 valid=false;
252                         }
253                         else if(max_dim<3)
254                         {
255                                 std::stringstream out;
256                                 out<<"Selecting "<<mImageExtent->GetDimension()<<"D images is not allowed !";
257                                 mMessage=out.str();
258                                 valid=false;
259                         }
260                         else if(min_dim==3 && (ie->Get(2)+mImageExtent->Get(2))<2)
261                         {
262                                 std::stringstream out;
263                                 out << "Cannot build the selection as it would result in a ";
264                                 out << mImageExtent->GetDimension();
265                                 out << "D image, and the minimum is ";
266                                 out << min_dim;
267                                 out << "D!";
268                                 mMessage=out.str();
269                                 valid=false;
270                         }
271                         else
272                         {
273                                 mImageExtent->Add(*ie);
274                                 std::stringstream out;
275                                 out << mImageExtent->GetDimension() << "D image " << mImageExtent->Get(0) << "x"<< mImageExtent->Get(1) << "x"<< mImageExtent->Get(2) <<" selected";
276                                 mMessage = out.str();
277                         }
278                 }
279                 else
280                 {
281                         mMessage="The selected images are not compatible.";
282                         valid=false;
283                 }
284           }
285         }
286
287         modifyValidationSignal(valid);
288         SetMessage(mMessage);
289         return valid;
290   }
291
292   //======================================================================
293   void GimmickView::modifyValidationSignal(bool ivalid)
294   {
295
296           mValidationSignal(ivalid);
297   }
298
299   void GimmickView::stopReader()
300   {
301           mReader.Stop();
302   }
303
304    //======================================================================
305   ///Reads Images (Non Threaded)
306 void GimmickView::ReadImagesNotThreaded(std::vector<vtkImageData*>& s, std::vector<std::string> im, int dimension)
307 {
308         stopReader();
309 /* remember!
310
311 #define GIMMICK_NO_IMAGE_SELECTION 0
312 #define GIMMICK_2D_IMAGE_SELECTION 2
313 #define GIMMICK_3D_IMAGE_SELECTION 3
314 #define GIMMICK_4D_IMAGE_SELECTION 4
315
316 #define NATIVE 0
317 #define _2D    2
318 #define _3D    3
319
320 */
321         // Create the output data
322         if (im.size()==1) 
323         {
324                 vtkImageData * out=vtkImageData::New();
325                 out->ShallowCopy(mReader.GetImage(im.front()));
326                 s.push_back(out);
327         }
328     else if (im.size()>1) // Test inutile ? JPR
329         {
330                 vtkImageData* first = mReader.GetImage( im.front());
331                 if (dimension == 2)
332                 {
333                  // n3D
334                     std::vector<std::string>::iterator it;
335                         for (it=im.begin(); it!=im.end(); ++it) 
336                         {
337                                 vtkImageData* out = vtkImageData::New();
338                                 out->ShallowCopy(mReader.GetImage(*it));
339                                 s.push_back(out);
340                         }
341                 }         
342                 else 
343                 {
344                         // n*2D to 3D
345                         vtkImageData* out = vtkImageData::New();
346 //                      out->CopyStructure(first);      
347                         out->SetScalarType(first->GetScalarType());
348                         out->SetNumberOfScalarComponents(first->GetNumberOfScalarComponents());
349                         int ext[6];
350                         //first->GetExtent(ext);  // JPR
351                         first->GetWholeExtent(ext);  // renvoie egalement 0,0 en Z // JPR
352
353                         if(ext[5] == 0)
354                         {
355                                 ext[5] = im.size()-1;
356                         }
357                         else
358                         {
359                                 ext[5] = ext[5] * im.size()-1; // to deal with multiframes - JPR
360                         }
361                         out->SetExtent(ext);
362
363                         // LG : TODO : Z Spacing  ?
364
365                         int dim[3];
366                         first->GetDimensions(dim);
367
368                         out->SetDimensions(dim[0], dim[1], im.size() );
369                         out->AllocateScalars();
370                         out->Update();
371
372                         unsigned long imsize = dim[0] * dim[1];
373                         imsize = imsize * dim[2] ;  // deal with multiframes // JPR
374
375
376 //EED 03-11-2009
377                         // differents formats char , short, etc...
378                         // differents components 1..3  ex. jpg ->RGB 3
379                         imsize = imsize * first->GetScalarSize() * first->GetNumberOfScalarComponents();
380
381
382                         // Order the file name vector
383
384                         double spc[3];
385                         first->GetSpacing(spc);
386
387                         // OrderTheFileNameVector is not here anymore.
388                         // Try orderFilesWithZSpacing from OutputModel FCY
389                         // spc[2]=OrderTheFileNameVector(im);   
390                         spc[2] =1;
391
392                         out->SetSpacing(spc);
393
394                         int slice = 0;
395                         std::vector<std::string>::iterator it;
396
397                         for (it=im.begin(); it!=im.end(); ++it) 
398                         {
399                                 vtkImageData* cur = mReader.GetImage( (*it) );
400                                 memcpy(out->GetScalarPointer(0,0,slice), cur->GetScalarPointer(0,0,0), imsize);
401                                 slice++;
402                         }       
403                         s.push_back(out);
404
405                 }  // dimension == 3
406
407         }  // size >1
408
409 }
410   //======================================================================
411
412
413
414         //////////////////////////////////////////////////////////
415         // Test if the image is a multiple or single frame. 
416         // For the moment only with the creation of vtkImageDta.
417         // TO DO with image size and dim!!!
418         //////////////////////////////////////////////////////////
419         bool GimmickView::isSingle(const std::string i_file)
420         {
421                 bool bres = true;
422                 vtkImageData* first = mReader.GetImage( i_file);
423                 int dim[3];
424                 first->GetDimensions(dim);
425                 if (dim[2] > 1)
426                 {
427                         bres = false;
428                 }
429                 else
430                 {
431                 }
432                 return bres;
433         }
434
435         //////////////////////////////////////////////////////////
436         // get Attributes values for a file
437         //////////////////////////////////////////////////////////
438         
439         void GimmickView::getAttributes(const std::string i_file, std::map<std::string, std::string> &o_infos, OutputAttr i_attr)
440         {
441                 if(i_attr.inside.size() >0)
442                 {
443                         mGimmick->GetAttributes(i_file,o_infos,i_attr);
444                 }
445                 if(i_attr.outside.size()>0)
446                 {
447                         mReader.getAttributes(i_file,o_infos, i_attr.outside);
448                 }
449         }
450
451         //////////////////////////////////////////////////////////
452         // create an output structure with n entries = n output
453         //////////////////////////////////////////////////////////
454         void GimmickView::readImages1(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
455                          OutputAttr i_attr)
456         {
457                 std::vector<std::string>::iterator it;
458                 for (it=im.begin(); it!=im.end(); ++it)
459                 {
460                         OutStrGimmick out;
461                         out.img = vtkImageData::New();
462                         out.img->ShallowCopy(mReader.GetImage(*it));
463                         if(i_attr.mult)
464                                 getAttributes((*it),out.infos,i_attr);
465                         o_output.push_back(out);
466                 }
467                 // If we want only one output information structure, we set it outside the loop
468                 if(!i_attr.mult)
469                 {
470                         getAttributes(im.front(), o_output.front().infos, i_attr);
471                 }
472                 
473         }
474
475         //////////////////////////////////////////////////////////
476         // create an output structure with n entries = 1 output
477         //////////////////////////////////////////////////////////
478         void GimmickView::readImages3(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
479                          OutputAttr i_attr, double i_zspc)
480         {
481                 OutStrGimmick out;
482                 vtkImageData* first = mReader.GetImage( im.front());
483                 out.img  = vtkImageData::New();
484                 out.img->SetScalarType(first->GetScalarType());
485                 out.img->SetNumberOfScalarComponents(first->GetNumberOfScalarComponents());
486                 int ext[6];
487                 first->GetWholeExtent(ext);  // send also 0,0 in Z 
488                 if(ext[5] == 0)
489                 {
490                         ext[5] = im.size()-1;
491                 }
492                 else
493                 {
494                         ext[5] = ext[5] * im.size()-1; // to deal with multiframes 
495                 }
496                 out.img->SetExtent(ext);
497                 int dim[3];
498                 first->GetDimensions(dim);
499                 out.img->SetDimensions(dim[0], dim[1], im.size() );
500                 out.img->AllocateScalars();
501                 out.img->Update();
502                 unsigned long imsize = dim[0] * dim[1];
503                 imsize = imsize * dim[2] ;  // deal with multiframes here
504                 // differents formats char , short, etc...
505                 // differents components 1..3  ex. jpg ->RGB 3
506                 imsize = imsize * first->GetScalarSize() * first->GetNumberOfScalarComponents();
507                 // Order the file name vector already did with the OutputModel!!!
508                 //!!!!out.img->SetSpacing(i_zspc);
509                 int slice = 0;
510                 std::vector<std::string>::iterator it;
511                 for (it=im.begin(); it!=im.end(); ++it) 
512                 {
513                         vtkImageData* cur = mReader.GetImage( (*it) );
514                         memcpy(out.img->GetScalarPointer(0,0,slice), cur->GetScalarPointer(0,0,0), imsize);
515                         slice++;
516                 }       
517                 getAttributes(im.front(),out.infos, i_attr);
518                 o_output.push_back(out);
519         }
520
521
522         // TO DO  NO VERY SURE : NEED TO BE TESTED
523         //////////////////////////////////////////////////////////
524         // create an output structure with n entries (T size) = T output (n size)
525         //////////////////////////////////////////////////////////
526         void GimmickView::readImages2(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
527                          OutputAttr i_attr, double i_zspc)
528         {
529                 vtkImageData* first = mReader.GetImage( im.front());
530                 int dim[3];
531                 first->GetDimensions(dim);
532                 // differents formats char , short, etc...
533                 // differents components 1..3  ex. jpg ->RGB 3
534                 unsigned long imsize = dim[0] * dim[1];
535                 imsize = imsize * first->GetScalarSize() * first->GetNumberOfScalarComponents();
536
537                 // Order the file name vector already did with the OutputModel!!!
538                 std::vector<std::string>::iterator it;
539                 std::vector<OutStrGimmick>::iterator it_out = o_output.begin();
540
541                 for (it=im.begin(); it!=im.end(); ++it, it_out += dim[2])
542                 {
543                         vtkImageData* cur = mReader.GetImage( (*it) );
544                         for (int slice= 0 ; slice <dim[2]; slice++)
545                         {
546                                 OutStrGimmick out;
547                                 out.img = vtkImageData::New();
548                                 out.img->SetScalarType(first->GetScalarType());
549
550                                 out.img->SetNumberOfScalarComponents(first->GetNumberOfScalarComponents());
551                                 int ext[6];
552                                 first->GetWholeExtent(ext);  // send also 0,0 in Z 
553                                 ext[5] = 0;
554                                 out.img->SetExtent(ext);
555
556                                 out.img->SetDimensions(dim[0], dim[1], 1 );
557                                 out.img->AllocateScalars();
558                                 out.img->Update();
559                                 memcpy(out.img->GetScalarPointer(0,0,0), cur->GetScalarPointer(0,0,slice), imsize);
560                                 o_output.push_back(out);
561                         }
562                         if(i_attr.mult)
563                                 getAttributes((*it),(*it_out).infos,i_attr);
564                 }
565                 if(!i_attr.mult)
566                 {
567                         getAttributes(im.front(), o_output.front().infos,i_attr);
568                 }
569
570         }
571
572         //////////////////////////////////////////////////////////
573         // create an output structure with n entries (T size) = T + n output
574         //////////////////////////////////////////////////////////
575         void GimmickView::readImages4(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
576                          OutputAttr i_attr)
577         {
578                 std::vector<std::string>::iterator it;
579                 std::vector<OutStrGimmick>::iterator it_out = o_output.begin();
580                 vtkImageData* first = mReader.GetImage( im.front());
581                 int dim[3];
582                 first->GetDimensions(dim);
583                         
584                 for (int slice= 0 ; slice <dim[2]; slice++)
585                 {
586                         OutStrGimmick out;
587                         out.img = vtkImageData::New();
588                         out.img->SetScalarType(first->GetScalarType());
589                         out.img->SetNumberOfScalarComponents(first->GetNumberOfScalarComponents());
590                         
591                         int ext[6];
592                         first->GetWholeExtent(ext);  // send also 0,0 in Z 
593                         ext[5] = 0;
594                         out.img->SetExtent(ext);
595                         
596                         out.img->SetDimensions(dim[0], dim[1], im.size() );
597                         out.img->AllocateScalars();
598                         out.img->Update();
599                         unsigned long imsize = dim[0] * dim[1];
600                         imsize = imsize * first->GetScalarSize() * first->GetNumberOfScalarComponents();
601                         int index = 0;
602         
603                         for (it=im.begin(); it!=im.end(); ++it, index ++)
604                         {
605                                 vtkImageData* cur = mReader.GetImage( (*it) );
606                                 memcpy(out.img->GetScalarPointer(0,0,index), cur->GetScalarPointer(0,0,slice), imsize);
607                                 o_output.push_back(out);
608                         }
609                 }
610                 if(!i_attr.mult) // No sense to take informations in all images
611                 {
612                         getAttributes(im.front(), o_output.front().infos,i_attr);
613                 }
614
615         }
616
617
618 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
619 // Global function to read Images and create wished output (informations, multiple, type and size of output...)
620 // In function of type (file, vector) and size, the correct readImages function is selected
621 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
622         void GimmickView::readImages(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
623                          OutputAttr i_attr, int i_dim, double i_zspc)
624         {
625                 int size = im.size();
626                 if ( size == 0)
627                 {
628                         return;
629                 }
630                 else if (size == 1)
631                 {
632                         // Simplest case
633                         // Only one image : give it
634                         // But take in count multiframe possibility
635                         if ( isSingle(im.front()) || i_dim != 1)
636                         {
637                                  readImages1(o_output,im, i_attr);
638                         }
639                         else
640                         {
641                                 readImages2(o_output,im, i_attr,i_zspc);
642                         }
643                         
644                 }
645                 else
646                 {
647                         // multiple or single frame
648                         if ( isSingle(im.front()) )
649                         {
650                                 //we deal with 2D images
651                                 if(i_dim == 1)
652                                 {
653                                         // 2D to 3D
654                                         readImages3(o_output,im, i_attr,i_zspc);
655                                 }
656                                 else
657                                 {
658                                         readImages1(o_output,im, i_attr);
659                                 }
660                         }
661                         else
662                         {
663                                 // we deal with multiple frames n x (2D x T)
664                                 // Differents outputs are avaialable
665                                 if(i_dim == 1)
666                                 {
667                                         // put all in one output
668                                         readImages3(o_output,im, i_attr,i_zspc);
669
670                                 }
671                                 else if( i_dim == 2)
672                                 {
673                                         // put in a vector of n x T (2D)
674                                         readImages2(o_output,im, i_attr,i_zspc);
675                                 }
676                                 else if( i_dim == 3)
677                                 {
678                                         // put in a vector of n (2D x T)
679                                         // No transformations.
680                                         readImages1(o_output,im, i_attr);
681                                 }
682                                 else
683                                 {
684                                         // put in a vector of T (2D x n)
685                                         readImages4(o_output,im, i_attr);
686                                 }
687                         }
688                 }
689         }
690
691
692
693 void GimmickView::ReadImagesNotThreadedInVector(std::vector<vtkImageData*>& s, std::vector<std::string> im, int dimension)
694 {
695         // Create the output data
696         if (im.size()==1)
697         {
698                 // Only one image : give it
699                 vtkImageData* out = vtkImageData::New();
700                 GimmickDebugMessage(3, "State Check: Full Filename: "
701                                                 <<im.front()
702                                                 <<std::endl);
703                 out->ShallowCopy(mReader.GetImage(im.front()));
704                 s.push_back( out );
705         }
706         else if (im.size()>1) // Test inutile ? JPR
707         {
708                 vtkImageData* first = mReader.GetImage( im.front());
709                 if (dimension == 2)
710                 {
711                  // n3D
712                   std::vector<std::string>::iterator it;
713                         for (it=im.begin(); it!=im.end(); ++it)
714                         {
715                                 vtkImageData* out = vtkImageData::New();
716                                 out->ShallowCopy(mReader.GetImage(*it));
717                                 s.push_back(out);
718                         }
719                 }
720                 else
721                 {
722                         // n2D to 3D // NO!
723                         // n *2D + T in a vector :
724                         
725                         std::vector<std::string>::iterator it;
726                         for (it=im.begin(); it!=im.end(); ++it) 
727                         {
728                                 vtkImageData* out = mReader.GetImage( (*it));
729                                 s.push_back(out);
730                         }
731                 }
732         }
733 }
734   //======================================================================
735
736   //======================================================================
737   ///Requests the reading of an image
738   void GimmickView::RequestReading(tree::Node* n, 
739           int prio, int selection_index, boost::shared_ptr<ImagePointerHolder> p)
740   {
741           if(!mReaderStarted)
742           {
743                 mReader.Start();
744                 mReaderStarted=true;
745           }
746     ImageEventType t(n,selection_index);
747         t.pointerHolder = p;
748     mImageEventMap[n->GetAttribute("FullFileName")] = t;    
749     mReader.Request(this,n->GetAttribute("FullFileName"),prio);
750   }
751   //======================================================================
752
753   //======================================================================
754   void GimmickView::
755   OnMultiThreadImageReaderEvent(const std::string& filename,
756                                 MultiThreadImageReaderUser::EventType e,
757                                 vtkImageData* image)
758   {
759     GimmickDebugMessage(7,
760                         "MultiThreadImageReader event : "<<e<<std::endl);
761         if (e==ImageLoaded)
762         {
763                 if (filename.size()==0)
764                 {
765                   //What to do in this case?
766                   /*
767                         GimmickDebugMessage(5,
768                                         "Pushing unknown image in queue"
769                                         <<std::endl);
770                         mImageEventQueue.push_back(ImageEventType(image));*/
771                         return;
772                 }
773                 ImageEventTypeMap::iterator i;
774 //JCP 22-06-2009, test mImageEventMap.size() > 0
775                 if(mImageEventMap.size()>0){
776                         i = mImageEventMap.find(filename);
777                         if (i!=mImageEventMap.end())
778                         {
779                                 GimmickDebugMessage(5,
780                                                 "Putting image of file '"<<filename<<"' on pointer"
781                                                 <<std::endl);
782                                 ImageEventType ie(i->second);
783                                 ie.image = image;
784                                 ie.pointerHolder->Set(ie.image);
785                                 //mImageEventMap.erase(i);
786                         }
787                 }    
788         }
789         else if (e==Error)
790         {
791                 std::string mess="ERROR: MultiThreadImageReader: Cannot read image in file ";
792                 mess+=filename;
793                 mess+="\n";
794                 GimmickMessage(1,mess);
795                 ImageEventTypeMap::iterator i;
796                 i = mImageEventMap.find(filename);
797                 if (i!=mImageEventMap.end())
798                 {
799                 ImageEventType ie(i->second);
800                 ie.image = image;
801                 ie.pointerHolder->Set(GetDefaultImage());
802                 //mImageEventMap.erase(i);
803                 }
804         }
805
806         else if (e==ImageUnloaded)
807         {
808                 std::string mess="Unloaded image in file ";
809                 mess+=filename;
810                 mess+="\n";
811                 GimmickMessage(1,mess);
812                                 ImageEventTypeMap::iterator i;
813                 i = mImageEventMap.find(filename);
814                 if (i!=mImageEventMap.end())
815                 {
816                 ImageEventType ie(i->second);
817                 ie.image = image;
818                 ie.pointerHolder->Set(GetDefaultImage());
819                 //mImageEventMap.erase(i);
820                 }
821         }
822   }
823
824   //====================================================================
825
826   //====================================================================
827   void GimmickView::ConnectValidationObserver(ValidationCallbackType callback)
828   {
829     mValidationSignal.connect(callback);
830   }       
831   
832
833
834 ////////////////////////////////////////////////////////////////////////
835 //void GimmickView::Anonymize(std::vector<std::string> i_filenames, int type)
836 //{
837 //
838 //      gdcm::FileMetaInformation::SetSourceApplicationEntityTitle( "gdcmanon" );
839 //    gdcm::Global& g = gdcm::Global::GetInstance();
840 //      //if( !resourcespath )
841 // //   {
842 //      //      const char *xmlpathenv = getenv("GDCM_RESOURCES_PATH");
843 //      //      if( xmlpathenv )
844 //      //        {
845 //      //        // Make sure to look for XML dict in user explicitly specified dir first:
846 //      //        xmlpath = xmlpathenv;
847 //      //        resourcespath = 1;
848 //      //        }
849 // //   }
850 // // if( resourcespath )
851 // //   {
852 // //   // xmlpath is set either by the cmd line option or the env var
853 // //   if( !g.Prepend( xmlpath.c_str() ) )
854 // //     {
855 // //     std::cerr << "Specified Resources Path is not valid: " << xmlpath << std::endl;
856 // //     return 1;
857 // //     }
858 // //   }
859 //  // All set, then load the XML files:
860 //  if( !g.LoadResourcesFiles() )
861 //  {
862 //    return ;
863 //  }
864 //  const gdcm::Defs &defs = g.GetDefs(); (void)defs;
865 //  if( !rootuid )
866 //    {
867 //    // only read the env var if no explicit cmd line option
868 //    // maybe there is an env var defined... let's check
869 //    const char *rootuid_env = getenv("GDCM_ROOT_UID");
870 //    if( rootuid_env )
871 //      {
872 //      rootuid = 1;
873 //      root = rootuid_env;
874 //      }
875 //    }
876 //  if( rootuid )
877 //    {
878 //    // root is set either by the cmd line option or the env var
879 //    if( !gdcm::UIDGenerator::IsValid( root.c_str() ) )
880 //      {
881 //      std::cerr << "specified Root UID is not valid: " << root << std::endl;
882 //      return 1;
883 //      }
884 //    gdcm::UIDGenerator::SetRoot( root.c_str() );
885 //    }
886 //
887 //      if(type == 0)
888 //      {
889 //                 // Get private key/certificate
890 //           gdcm::CryptographicMessageSyntax cms;
891 //              if( !dumb_mode )
892 //              {
893 //                      if( !GetRSAKeys(cms, rsa_path.c_str(), cert_path.c_str() ) )
894 //                      {
895 //                              return 1;
896 //                      }
897 //                      cms.SetCipherType( ciphertype );
898 //              }
899 //
900 //      // Setup gdcm::Anonymizer
901 //      gdcm::Anonymizer anon;
902 //              if( !dumb_mode )
903 //              anon.SetCryptographicMessageSyntax( &cms );
904 //
905 //              if( dumb_mode )
906 //              {
907 //                      for(unsigned int i = 0; i < nfiles; ++i)
908 //              {
909 //              const char *in  = filenames[i].c_str();
910 //              const char *out = outfilenames[i].c_str();
911 //              if( !AnonymizeOneFileDumb(anon, in, out, empty_tags, remove_tags, replace_tags_value) )
912 //        {
913 //                      //std::cerr << "Could not anonymize: " << in << std::endl;
914 //                      return 1;
915 //              }
916 //      }
917 //    }
918 //  //else
919 //  //  {
920 //  //  for(unsigned int i = 0; i < nfiles; ++i)
921 //  //    {
922 //  //    const char *in  = filenames[i].c_str();
923 //  //    const char *out = outfilenames[i].c_str();
924 //  //    if( !AnonymizeOneFile(anon, in, out) )
925 //  //      {
926 //  //      //std::cerr << "Could not anonymize: " << in << std::endl;
927 //  //      return 1;
928 //  //      }
929 //  //    }
930 //  //  }
931 //      }
932 //}
933 //
934 } // EO namespace creaImageIO