]> Creatis software - bbtk.git/blob - kernel/appli/bbfy/bbfy.cpp
65b6c23f6933115e20edff0c67c75d0de26e4c96
[bbtk.git] / kernel / appli / bbfy / bbfy.cpp
1 #ifdef WIN32
2 #define _CRT_SECURE_NO_DEPRECATE
3 #endif
4
5 #include <stdio.h>
6 #include "bbtkXML.h"
7 #include <iostream>
8 #include <fstream>
9 #include <sstream>
10 #include <vector>
11
12 //==========================================================================
13 class bbfyException
14 {
15 public: 
16   bbfyException(const std::string& message) : mMessage(message) {}
17
18   std::string mMessage;
19 };
20 //==========================================================================
21
22 const std::string itkImageToImageFilterString = "ITK_ImageToImageFilter";
23 const std::string vtkImageAlgorithmString = "VTK_ImageAlgorithm";
24 const std::string vtkPolyDataAlgorithmString = "VTK_PolyDataAlgorithm";
25
26 //==========================================================================
27 class bbfy
28 {
29 public:
30   bbfy(const std::string& filename, 
31        const std::string& package = "PACKAGE_NAME",
32        const std::string& output_path = "",
33        bool verbose = false);
34   
35   void CreateBlackBox();
36   void ParseXML();
37   void CreateHeader();
38   void CreateCode();
39
40   void WriteGenericITKFilterHeader();
41
42   void BeginNamespace();
43   void EndNamespace();
44
45 private:
46   //
47   std::string mFilename;
48   std::string mOutputPath;
49   bool mVerbose;
50
51   //
52   std::string mName;
53   typedef enum 
54     {
55       STD,
56       itkImageToImageFilter,
57       vtkImageAlgorithm,
58       vtkPolyDataAlgorithm,
59     }
60     BoxType;
61
62   BoxType mType;
63   bool mIsWidget;
64   std::string mParentBlackBox;
65   std::string mItkParent;
66   std::string mVtkParent;
67   bool mGeneric;
68   std::string mAuthor;
69   std::string mDescription;
70   std::string mCategory;
71   std::string mPackage;
72   // bool mIsInNamespace;
73   std::string mNamespace;
74   // int mNbTemplateParam;
75   std::vector<std::string> mTemplateParam;
76   std::string mTemplateDeclaration;
77   std::string mTemplateImplementation;
78
79   std::vector<std::string> mInclude;
80   std::vector<std::string> mTypedef;
81
82   std::string mUserConstructor;
83   std::string mUserCopyConstructor;
84   std::string mUserDestructor;
85
86   typedef struct
87   {
88     std::string name;
89     std::string type;
90     std::string nature;
91     std::string descr;
92     std::string special;
93     std::string generic_type;
94   }
95     IO;
96   
97   std::vector<IO> mInput;
98   std::vector<IO> mOutput;
99
100   std::string mProcess;
101   std::string mCreateWidget;
102
103   //
104   std::ofstream mFile;
105   std::string mHName;
106   std::string mCxxName;
107
108 };
109 //==========================================================================
110
111
112
113 //==========================================================================
114 bbfy::bbfy(const std::string& filename, 
115            const std::string& package,
116            const std::string& output_path,
117            bool verbose)
118 {
119   mIsWidget = false;
120   
121   mFilename = filename;
122   mPackage = package;
123   mNamespace = "bb" + mPackage;
124
125   mOutputPath = output_path;
126   mVerbose = verbose;
127
128   CreateBlackBox();
129 }
130 //==========================================================================
131
132 //==========================================================================
133 void bbfy::CreateBlackBox()
134 {
135   // Parse XML input file
136   ParseXML();
137   // Create output files
138   CreateHeader();
139   CreateCode();
140 }
141 //==========================================================================
142
143
144
145 //==========================================================================
146 void bbfy::ParseXML()
147 {
148   XMLResults* res = new XMLResults;
149   XMLNode BB = XMLNode::parseFile(mFilename.c_str(),"blackbox",res);
150
151   if ( res->error != eXMLErrorNone ) 
152     {
153       std::ostringstream str;
154       str << XMLNode::getError(res->error);
155       str << " [line " << res->nLine << ", col "<<res->nColumn<<"]"; 
156       delete res;
157       throw bbfyException(str.str());
158     }
159   delete res;
160
161   // Name
162   if (!BB.isAttributeSet("name")) 
163     {
164       throw bbfyException("Error : <blackbox> tag : no 'name' attribute found (mandatory)");
165     }
166   mName = BB.getAttribute("name");
167
168   if (mVerbose) std::cout << "* Creating BlackBox '"<<mName<<"'"<<std::endl;
169
170   // Type 
171   mGeneric = false;
172   mType = STD;
173
174
175   if (BB.isAttributeSet("type")) 
176     {
177       std::string bbtype = BB.getAttribute("type");
178       if (bbtype=="standard")
179         {
180           mGeneric = false;
181           mType = STD;
182         }
183       else if (bbtype==itkImageToImageFilterString)
184         {
185           mType = itkImageToImageFilter;
186           // Looks for <itkparent> tag
187           if (!BB.nChildNode("itkparent")) 
188             {
189               throw bbfyException("Error : blackbox type '"+itkImageToImageFilterString+"' but no <itkparent> tag found (mandatory)");
190             }
191           bbtk::GetTextOrClear(BB.getChildNode("itkparent"),mItkParent);
192           // 
193           mGeneric = false;
194           if (BB.isAttributeSet("generic")) mGeneric=true;
195         }
196       else if (bbtype == vtkImageAlgorithmString)
197         {
198           mType = vtkImageAlgorithm;
199           // Looks for <vtkparent> tag
200           if (!BB.nChildNode("vtkparent")) 
201             {
202               throw bbfyException("Error : blackbox type '"
203                                   +vtkImageAlgorithmString
204                                   +"' but no <vtkparent> tag found (mandatory)");
205             }
206           bbtk::GetTextOrClear(BB.getChildNode("vtkparent"),mVtkParent);
207           // 
208         }
209     else if (bbtype == vtkPolyDataAlgorithmString )
210         {
211           mType = vtkPolyDataAlgorithm;
212           // Looks for <vtkparent> tag
213           if (!BB.nChildNode("vtkparent")) 
214             {
215               throw bbfyException("Error : blackbox type '"
216                                   +vtkPolyDataAlgorithmString
217                                   +"' but no <vtkparent> tag found (mandatory)");
218             }
219           bbtk::GetTextOrClear(BB.getChildNode("vtkparent"),mVtkParent);
220           // 
221         }
222      else 
223         {
224           std::string mess("Error : blackbox type '");
225           mess += bbtype;
226           mess += "' unknown. Known types :";
227           mess += "'" + itkImageToImageFilterString + "' ";
228           mess += "'" + vtkImageAlgorithmString + "' ";
229           mess += "'" + vtkPolyDataAlgorithmString + "' ";
230           throw bbfyException(mess);
231         }
232     }
233
234   // Is a widget box ?
235   if (BB.isAttributeSet("widget")) 
236     {
237       mIsWidget = true;
238       mParentBlackBox = "bbtk::WxBlackBox";
239       mInclude.push_back("bbtkWxBlackBox.h");
240     }
241   else 
242     {
243       mIsWidget = false;
244       mParentBlackBox = "bbtk::AtomicBlackBox";
245       mInclude.push_back("bbtkAtomicBlackBox.h");
246     }
247
248   // Author
249   int i,j;
250   for (i=0,j=0; i<BB.nChildNode("author"); i++) 
251     {
252       std::string val;
253       bbtk::GetTextOrClear(BB.getChildNode("author",&j),val);
254       mAuthor += val;
255     }
256
257   // Description
258   for (i=0,j=0; i<BB.nChildNode("description"); i++) 
259     {
260       std::string val;
261       bbtk::GetTextOrClear(BB.getChildNode("description",&j),val);
262       mDescription += val;
263     }
264   
265   // Category
266   for (i=0,j=0; i<BB.nChildNode("category"); i++) 
267     {
268       std::string val;
269       bbtk::GetTextOrClear(BB.getChildNode("category",&j),val);
270       mCategory += val;
271     }
272
273   // Namespace
274   if (BB.nChildNode("namespace"))
275     {
276       bbtk::GetTextOrClear(BB.getChildNode("namespace"),mNamespace);
277     }
278
279   // UserConstructor body
280   if (BB.nChildNode("userconstructor"))
281     {
282       bbtk::GetTextOrClear(BB.getChildNode("userconstructor"),mUserConstructor);
283     }
284   // UserCopyConstructor body
285   if (BB.nChildNode("usercopyconstructor"))
286     {
287       bbtk::GetTextOrClear(BB.getChildNode("usercopyconstructor"),mUserCopyConstructor);
288     }
289   // UserDestructor body
290   if (BB.nChildNode("userdestructor"))
291     {
292       bbtk::GetTextOrClear(BB.getChildNode("userdestructor"),mUserDestructor);
293     }
294  
295     // Template parameters
296   //  mNbTemplateParam = BB.nChildNode("template");
297
298   if ( BB.nChildNode("template") > 0)
299     {
300       mTemplateDeclaration = "<";
301       mTemplateImplementation = "<";
302       
303       for (i=0,j=0; i<BB.nChildNode("template")-1; i++) 
304         {
305           mTemplateDeclaration += "class ";
306           std::string val;
307           bbtk::GetTextOrClear(BB.getChildNode("template",&j),val);
308           mTemplateDeclaration += val;
309           mTemplateDeclaration +=  ",";
310           mTemplateImplementation += val;
311           mTemplateImplementation +=  ",";
312           mTemplateParam.push_back(val);
313         }
314       mTemplateDeclaration += "class ";
315       std::string val;
316       bbtk::GetTextOrClear(BB.getChildNode("template",&j),val);
317       mTemplateDeclaration += val;
318       mTemplateDeclaration +=  ">";
319       mTemplateImplementation += val;
320       mTemplateImplementation +=  ">";
321       mTemplateParam.push_back(val);
322     }
323
324   // Includes 
325   for (i=0,j=0; i<BB.nChildNode("include"); i++) 
326     {
327       std::string val;
328       bbtk::GetTextOrClear(BB.getChildNode("include",&j),val);
329       mInclude.push_back(val);
330     }
331   // Typedef
332   for (i=0,j=0; i<BB.nChildNode("typedef"); i++) 
333     {
334       std::string val;
335       bbtk::GetTextOrClear(BB.getChildNode("typedef",&j),val);
336       mTypedef.push_back(val);
337     }
338   
339   // Inputs
340   for (i=0,j=0; i<BB.nChildNode("input"); i++) 
341     {
342       IO io;
343       XMLNode n = BB.getChildNode("input",&j); 
344       if (!n.isAttributeSet("name"))
345         {
346           throw bbfyException("Error : <input> attribute 'name' not found (mandatory)");
347         }
348       io.name = n.getAttribute("name");
349       if (!n.isAttributeSet("type"))
350         {
351           throw bbfyException("Error : <input name=\""+io.name+"\"> attribute 'type' not found (mandatory)");
352         }
353       io.type = n.getAttribute("type"); 
354       if (!n.isAttributeSet("description"))
355         {
356           throw bbfyException("Error : <input name=\""+io.name+"\"> attribute 'description' not found (mandatory)");
357         }
358       io.descr = n.getAttribute("description"); 
359
360       if (n.isAttributeSet("special")) 
361         {
362           io.special =  n.getAttribute("special");  
363         }
364
365       if (n.isAttributeSet("nature")) 
366         {
367           io.nature =  n.getAttribute("nature");  
368         }
369
370       if (n.isAttributeSet("generic_type")) 
371         {
372           io.generic_type =  n.getAttribute("generic_type");  
373         }
374
375       mInput.push_back(io);
376     }
377   
378   // Outputs
379   for (i=0,j=0; i<BB.nChildNode("output"); i++) 
380     {
381       IO io;
382       XMLNode n = BB.getChildNode("output",&j); 
383       if (!n.isAttributeSet("name"))
384         {
385           throw bbfyException("Error : <output> attribute 'name' not found (mandatory)");
386         }
387       io.name = n.getAttribute("name"); 
388       if (!n.isAttributeSet("type"))
389         {
390           throw bbfyException("Error : <output name=\""+io.name+"\"> attribute 'type' not found (mandatory)");
391         }
392       io.type = n.getAttribute("type"); 
393       if (!n.isAttributeSet("description"))
394         {
395           throw bbfyException("Error : <output name=\""+io.name+"\"> attribute 'description' not found (mandatory)");
396         }
397       io.descr = n.getAttribute("description"); 
398
399       if (n.isAttributeSet("special")) 
400         {
401           io.special =  n.getAttribute("special");  
402         }
403
404       if (n.isAttributeSet("nature")) 
405         {
406           io.nature =  n.getAttribute("nature");  
407         }
408
409       if (n.isAttributeSet("generic_type")) 
410         {
411           io.generic_type =  n.getAttribute("generic_type");  
412         }
413
414       mOutput.push_back(io);
415     }
416
417
418   // Process
419   // process tag given ?
420    if (BB.nChildNode("process"))
421      {
422        bbtk::GetTextOrClear(BB.getChildNode("process"),mProcess);
423      }
424   // CreateWidget
425   // createwidget tag given ?
426    if (BB.nChildNode("createwidget"))
427      {
428        bbtk::GetTextOrClear(BB.getChildNode("createwidget"),mCreateWidget);
429      }
430 }
431 //==========================================================================
432
433
434 //==========================================================================
435 void bbfy::BeginNamespace()
436 {
437   //  if (mIsInNamespace)
438   // {
439   mFile << "namespace "<<mNamespace <<"\n{\n\n";
440   //  }
441 }
442 //==========================================================================
443
444 //==========================================================================
445 void bbfy::EndNamespace()
446 {
447   // if (mIsInNamespace)
448   //  {
449   mFile << "}\n// EO namespace "<<mNamespace<<"\n\n";
450   //  }
451 }
452 //==========================================================================
453
454
455 //==========================================================================
456 void bbfy::CreateHeader()
457 {
458
459   mHName = "bb";
460   mHName += mPackage;
461   mHName += mName;
462   mHName += ".h";
463   if (mVerbose) std::cout << " - Creating header '"<<mHName<<"'"<<std::endl;
464   std::string fullname = mOutputPath + mHName;
465   mFile.open(fullname.c_str());
466   if (!mFile.good())
467     {
468       std::string mess("Error : could not open file \"");
469       mess += fullname + "\"";
470       throw bbfyException(mess);
471     }
472   
473   // If is widget 
474   if (mIsWidget)
475     {
476       mFile << "#ifdef _USE_WXWIDGETS_\n";
477     }
478
479   // Prevent multiple inclusions
480   std::string included("__bb");
481   included += mPackage + mName + "_h_INCLUDED__";
482   mFile << "#ifndef " << included <<"\n";
483   mFile << "#define " << included <<"\n";
484
485   // Includes 
486   //  mFile << "#include \"bbtkAtomicBlackBox.h\"\n";
487   std::vector<std::string>::iterator i;
488   for (i=mInclude.begin(); i!=mInclude.end(); ++i) 
489     {
490       mFile << "#include \"" << *i <<"\"\n";
491     }
492   if (mGeneric) mFile << "#include \"bbitkImage.h\"\n";
493   mFile << "\n";
494
495   if (mType == itkImageToImageFilter )
496     {
497       mFile << "#include \"bbtkItkBlackBoxMacros.h\"\n";
498     }
499   else if ( (mType == vtkImageAlgorithm) ||
500             (mType == vtkPolyDataAlgorithm) )
501     {
502       mFile << "#include \"bbtkVtkBlackBoxMacros.h\"\n";
503     }
504   // Namespace
505   BeginNamespace();
506
507   // Interface
508
509   // If it is a template class
510   if (mTemplateParam.size() > 0)
511     {
512       mFile << "template " << mTemplateDeclaration <<"\n";
513     }
514   
515   // Class declaration and parents
516   mFile << "class /*BBTK_EXPORT*/ "<<mName<<"\n";
517   mFile << " : \n";
518
519   /*
520   if (mBB.nChildNode("inherits"))
521     {
522       mFile << ",\n";
523       for (i=0,j=0; i<mBB.nChildNode("inherits")-1; i++) 
524         {
525           mFile << "   public " 
526                 << mBB.getChildNode("inherits",&j).getText()
527                 << ",\n";
528         }
529       mFile << "   public " 
530             << mBB.getChildNode("Inherits",&j).getText()
531             <<"\n";
532     }
533   */
534
535   if (mType == itkImageToImageFilter )
536     {
537       mFile << "   public " << mItkParent <<",\n";
538     }
539   else if ( (mType == vtkImageAlgorithm) ||
540             (mType == vtkPolyDataAlgorithm) )
541     {
542       mFile << "   public " << mVtkParent <<",\n";
543     }
544
545   mFile << "   public "<<mParentBlackBox << "\n";
546
547   mFile << "{\n";
548
549   // Interface
550
551   // ITK 
552   if (mType == itkImageToImageFilter)
553     {
554       mFile << "  BBTK_ITK_BLACK_BOX_INTERFACE("
555             << mName << ","
556             << mParentBlackBox << ","
557             << mItkParent 
558             << ");\n";
559     }
560   // VTK
561   else if ( (mType == vtkImageAlgorithm) ||
562        (mType == vtkPolyDataAlgorithm) )
563     {
564       mFile << "  BBTK_VTK_BLACK_BOX_INTERFACE("
565             << mName << ","
566             << mParentBlackBox << ","
567             << mVtkParent 
568             << ");\n";
569     }
570   // Default
571   else 
572     {
573       mFile << "  BBTK_BLACK_BOX_INTERFACE("
574             << mName << ","
575             << mParentBlackBox << ");\n";
576     }
577
578   for (i=mTypedef.begin(); i!=mTypedef.end(); ++i) 
579     {
580       mFile << *i <<"\n";
581     }
582
583   // Declare user constructor / copy cons /destr 
584   mFile << "//=================================================================="<<std::endl;
585   mFile << "/// User callback called in the box contructor"<<std::endl;
586
587   mFile << "virtual void bbUserConstructor();"<<std::endl;
588   mFile << "/// User callback called in the box copy constructor"<<std::endl;
589   mFile << "virtual void bbUserCopyConstructor();"<<std::endl;
590   mFile << "/// User callback called in the box destructor"<<std::endl;
591   mFile << "virtual void bbUserDestructor();"<<std::endl;
592   mFile << "//=================================================================="<<std::endl; 
593
594
595
596   // Inputs
597   std::vector<IO>::iterator ioi;
598   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
599     {
600       if (ioi->special=="") 
601         {
602           mFile << "  BBTK_DECLARE_INPUT(" 
603                 << ioi->name
604                 << ","
605                 << ioi->type
606                 << ");\n";
607         }
608       else if (ioi->special=="itk input")
609         {
610           mFile << "  BBTK_DECLARE_ITK_INPUT(" 
611                 << ioi->name
612                 << ","
613                 << ioi->type
614                 << ");\n";
615         }
616       else if (ioi->special=="vtk input")
617         {
618           if (mType == vtkImageAlgorithm) {
619           mFile << "  BBTK_DECLARE_VTK_IMAGE_ALGORITHM_INPUT(" 
620                 << ioi->name
621                 << ","
622                 << ioi->type
623                 << ");\n";
624           } 
625           else if (mType == vtkPolyDataAlgorithm) {
626           mFile << "  BBTK_DECLARE_POLY_DATA_ALGORITHM_INPUT(" 
627                 << ioi->name
628                 << ","
629                 << ioi->type
630                 << ");\n";
631           }
632         }
633       else if (ioi->special=="itk parameter")
634         {
635           mFile << "  BBTK_DECLARE_ITK_PARAM(" 
636                 << ioi->name
637                 << ","
638                 << ioi->type
639                 << ");\n";
640         }
641       else if (ioi->special=="vtk parameter")
642         {
643           mFile << "  BBTK_DECLARE_VTK_PARAM(" 
644                 << ioi->name
645                 << ","
646                 << ioi->type
647                 << ");\n";
648         }
649       else 
650         {
651           std::string mess("Error : input '");
652           mess += ioi->name;
653           mess += "', 'special' attribute '";
654           mess += ioi->special;
655           mess += "' unknown";
656           throw bbfyException(mess);
657         }
658     }
659   
660   // Outputs
661   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
662     {
663       if (ioi->special=="") 
664         {
665           mFile << "  BBTK_DECLARE_OUTPUT(" 
666                 << ioi->name
667                 << ","
668                 << ioi->type
669                 << ");\n";
670         }
671       else if (ioi->special=="itk output")
672         {
673           mFile << "  BBTK_DECLARE_ITK_OUTPUT(" 
674                 << ioi->name
675                 << ","
676                 << ioi->type
677                 << ");\n";
678         }  
679       else if (ioi->special=="vtk output")
680         {
681           mFile << "  BBTK_DECLARE_VTK_OUTPUT(" 
682                 << ioi->name
683                 << ","
684                 << ioi->type
685                 << ");\n";
686         }  
687       else 
688         {
689           std::string mess("Error : output '");
690           mess += ioi->name;
691           mess += "', 'special' attribute '";
692           mess += ioi->special;
693           mess += "' unknown";
694           throw bbfyException(mess);
695         }
696     }
697   
698
699   // Process
700   if ((mType == STD)||(mProcess.size()))
701     {
702       mFile << "  BBTK_PROCESS(Process);\n" ;
703       mFile << "  void Process();\n";
704     }
705   else if (mType == itkImageToImageFilter)
706     {   
707       mFile << "  BBTK_ITK_PROCESS();\n" ;
708     }
709   else if ((mType == vtkImageAlgorithm) ||
710            (mType == vtkPolyDataAlgorithm) )
711
712     {   
713       mFile << "  BBTK_VTK_PROCESS();\n" ;
714     }
715
716   // CreateWidget
717   if (mIsWidget) 
718     {
719        mFile << "  BBTK_CREATE_WIDGET(CreateWidget);\n" ;
720        mFile << "  void CreateWidget();\n";
721     }
722
723
724   // EO black box declaration
725   mFile << "};\n\n";
726
727
728
729   // BO black box description
730   if (mTemplateParam.size()==0)
731     {
732       mFile << "BBTK_BEGIN_DESCRIBE_BLACK_BOX("
733             << mName << ","
734             << mParentBlackBox << ");\n";
735       mFile << "BBTK_NAME(\"" << mName <<"\");\n";
736     }
737   else if (mTemplateParam.size()==1)
738     {
739       mFile << "BBTK_BEGIN_DESCRIBE_TEMPLATE_BLACK_BOX("
740             << mName //<< ","
741         //<< mParentBlackBox //<< ","
742         //   << mTemplateParam[0] 
743             << ");\n";
744       mFile << "BBTK_NAME(\"" << mName 
745             << "<\"+bbtk::TypeName<" << mTemplateParam[0]
746             <<">()+\">\");\n";
747     }
748  else 
749     {
750       throw bbfyException("template bb with more than 1 templ param not impl");
751     } 
752   
753   // Author
754   mFile << "BBTK_AUTHOR(\""<<mAuthor<< "\");\n";
755
756   // Description
757   mFile << "BBTK_DESCRIPTION(\""<<mDescription<< "\");\n"; 
758   
759   // Category
760   mFile << "BBTK_CATEGORY(\""<<mCategory<< "\");\n"; 
761
762   for (i=mTypedef.begin(); i!=mTypedef.end(); ++i) 
763     {
764       mFile << *i <<"\n";
765     }
766   
767   // Inputs
768   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
769     {
770       if (mTemplateParam.size()>0)
771         {
772           mFile << "BBTK_TEMPLATE_INPUT(";
773         } 
774       else 
775         {
776           mFile << "BBTK_INPUT(";
777         } 
778       mFile << mName << "," << ioi->name << ",\""
779             << ioi->descr << "\"," <<  ioi->type << ",\"" 
780             << ioi->nature<<"\");\n";
781     }
782   
783   // Outputs
784   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
785     {
786       if (mTemplateParam.size()>0)
787         {
788           mFile << "BBTK_TEMPLATE_OUTPUT(";
789         } 
790       else 
791         {
792           mFile << "BBTK_OUTPUT(";
793         } 
794       mFile << mName << "," << ioi->name << ",\""
795             << ioi->descr << "\"," <<  ioi->type << ",\"" 
796             << ioi->nature<<"\");\n";
797     }
798   
799   // EO black box description
800   if (mTemplateParam.size()==0)
801     {
802       mFile << "BBTK_END_DESCRIBE_BLACK_BOX("
803             << mName << ");\n";
804     }
805   else if (mTemplateParam.size()==1)
806     {
807       mFile << "BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX("
808             << mName //<< ","
809         // << mTemplateParam[0] 
810             << ");\n";
811     }
812   else 
813     {
814       throw bbfyException("template bb with more than 1 templ param not impl");
815      
816     } 
817   
818   // Untemplatization of itk filters
819   if ( mGeneric )
820     {
821       WriteGenericITKFilterHeader();
822     }
823
824
825   // EO namespace
826   EndNamespace();
827   
828   // Prevent multiple inclusions
829   mFile << "#endif // " << included <<"\n";
830   // If is widget 
831   if (mIsWidget)
832     {
833       mFile << "#endif // _USE_WXWIDGETS_\n";
834     }
835
836   // EOF
837   mFile << "\n";
838
839   mFile.close();
840 }
841 //==========================================================================
842
843
844
845 //==========================================================================
846 void bbfy::WriteGenericITKFilterHeader()
847 {
848   mFile << "\n//===================================================\n";
849   mFile << "// Generic \"untemplatized\" filter\n";
850   mFile << "//===================================================\n";
851
852   // Class declaration and parents
853   mFile << "class /*BBTK_EXPORT*/ "<<mName<<"Generic\n";
854   mFile << " : \n";
855   mFile << "   public bbtk::AtomicBlackBox\n";
856   mFile << "{\n";
857
858   // Interface
859   mFile << "  BBTK_BLACK_BOX_INTERFACE("
860         << mName << "Generic,bbtk::AtomicBlackBox);\n";
861
862   // Inputs
863   std::vector<IO>::iterator ioi;
864   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
865     {
866       mFile << "  BBTK_DECLARE_INPUT(" 
867             << ioi->name
868             << ","
869             << ioi->generic_type
870             << ");\n";
871     }
872   
873   // Outputs
874   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
875     {
876       mFile << "  BBTK_DECLARE_OUTPUT(" 
877             << ioi->name
878             << ","
879             << ioi->generic_type
880             << ");\n";
881     }
882     
883   // Process
884   mFile << "  BBTK_PROCESS(ProcessSwitch);\n";
885   mFile << "  private :\n";
886   mFile << "    inline void ProcessSwitch();\n";
887   mFile << "    template <class T, unsigned int D> void Process();\n";
888   // EO black box declaration
889   mFile << "};\n\n";
890
891
892
893   // BO black box description
894   mFile << "BBTK_BEGIN_DESCRIBE_BLACK_BOX("
895         << mName << "Generic,bbtk::AtomicBlackBox);\n";
896   mFile << "BBTK_NAME(\"" << mName <<"\");\n";
897
898   // Author
899   mFile << "BBTK_AUTHOR(\""<<mAuthor<< "\");\n";
900
901   // Description
902   mFile << "BBTK_DESCRIPTION(\""<<mDescription<< "\");\n"; 
903   
904   // Inputs
905   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
906     {
907       mFile << "BBTK_INPUT(";
908       mFile << mName << "Generic," << ioi->name << ",\""
909             << ioi->descr << "\"," <<  ioi->generic_type <<");\n";
910     }
911   
912   // Outputs
913   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
914     {
915       mFile << "BBTK_OUTPUT(";
916       mFile << mName << "Generic," << ioi->name << ",\""
917             << ioi->descr << "\"," <<  ioi->generic_type <<");\n";
918     }
919   
920   // EO black box description
921   mFile << "BBTK_END_DESCRIBE_BLACK_BOX("
922         << mName << "Generic);\n";
923
924
925   //=================================================================
926   // ProcessSwitch implementation
927   mFile << "void "<< mName <<"Generic::ProcessSwitch()\n"
928         << "{\n"
929         << "CALL_FOR_ALL_TYPES_AND_DIM(bbGetInputIn()->GetType(),\n"
930         << "                           bbGetInputIn()->GetDimension(),\n"
931         << "                           Process);\n"
932         << "}\n";
933   //=================================================================
934
935
936   //=================================================================
937   // Template process implementation
938   mFile << "template <class T, unsigned int D>\n"
939         << "void "<<mName<<"Generic::Process()\n"
940         << "{\n"
941         << "  bbtkDebugMessageInc(\"Kernel\",9,\n"
942         << "      \""<<mName 
943         << "Generic::Process<\"<<TypeName<T>()<<\",\"<<D<<\">()\"<<std::endl);\n"
944     
945         << "  typedef itk::Image<T,D> ImageType;\n"
946         << "  typedef "<<mName<<"<ImageType> FilterType;\n"
947     
948         << "  FilterType* f = new FilterType(\"Temp\");\n"
949     
950         << "  f->bbSetInputIn( this->bbGetInputIn()->GetImage<T,D>() );\n";
951   
952   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
953     {
954       if (ioi->name == "In") continue;
955       mFile << "  f->bbSetInput"<<ioi->name<<" ( this->bbGetInput" 
956             << ioi->name << "() );\n";
957     }
958   
959   mFile << "  f->bbUpdate();\n"
960         << "  this->bbSetOutputOut( new itkImage( f->bbGetOutputOut() ) );\n"
961         << "  f->UnRegister();\n"
962         << "  bbtkDebugDecTab(\"Kernel\",9);\n"
963         << "}\n\n";
964   //=================================================================
965
966
967 }
968 //==========================================================================
969
970
971 //==========================================================================
972 void bbfy::CreateCode()
973 {
974   mCxxName = "bb";
975   mCxxName += mPackage;
976   mCxxName += mName;
977   mCxxName += ".cxx";
978   if (mVerbose) std::cout << " - Creating code   '"<<mCxxName<<"'"<<std::endl;
979   std::string fullname = mOutputPath + mCxxName;
980   mFile.open(fullname.c_str());
981   if (!mFile.good()) 
982     {
983       std::string mess("Error : could not open file \"");
984       mess += fullname;
985       mess += "\"";
986       throw bbfyException(mess);
987     }
988   
989   // Includes
990   // Header of the class
991   mFile << "#include \"" << mHName << "\"\n";
992
993   // Include Package header
994   mFile << "#include \"bb"<<mPackage << "Package.h\"\n";
995
996   // BO namespace
997   BeginNamespace();
998  
999   
1000   // Template class ?
1001   if (mTemplateParam.size()>0) 
1002     {
1003       // Implementation
1004       mFile << "BBTK_BLACK_BOX_TEMPLATE_IMPLEMENTATION("
1005             << mName << ","  
1006             << mParentBlackBox << ");\n";
1007      
1008       if (mGeneric) 
1009         {       
1010           // Implementation
1011           mFile << "BBTK_BLACK_BOX_IMPLEMENTATION("
1012                 << mName << "Generic,bbtk::AtomicBlackBox);\n";
1013           // Package
1014           mFile << "BBTK_ADD_BLACK_BOX_TO_PACKAGE("
1015                 << mPackage << ","
1016                 << mName << "Generic)\n";
1017         }
1018     }
1019   else 
1020     {
1021       // Non template class
1022       // Package
1023       mFile << "BBTK_ADD_BLACK_BOX_TO_PACKAGE("
1024             << mPackage << ","
1025             << mName << ")\n";
1026
1027       // Implementation
1028       mFile << "BBTK_BLACK_BOX_IMPLEMENTATION("
1029             << mName << ","  
1030             << mParentBlackBox << ");\n"; 
1031     }
1032   // Process
1033   if ((mType == STD)||(mProcess.size()))
1034     {
1035       mFile << "void "<<mName<<"::Process()\n{\n";
1036       mFile << mProcess << "\n";
1037       mFile << "}\n";
1038     }
1039   // CreateWidget
1040   if (mIsWidget)
1041     {
1042       mFile << "void "<<mName<<"::CreateWidget()\n{\n";
1043       mFile << mCreateWidget << "\n";
1044       mFile << "}\n";
1045     }
1046   
1047
1048   // User constr / copy constr / destr implementation
1049   mFile <<"void "<<mName<<"::bbUserConstructor()"<<std::endl;
1050   mFile << "{"<<std::endl;
1051   //mFile<<"bbtkDebugMessage(\"Kernel\",9,\""<<mName<<::bbUserConstructor()"<<std::endl);"<<std::endl;
1052   mFile << mUserConstructor << std::endl;
1053   mFile << "}" << std::endl;
1054
1055   mFile <<"void "<<mName<<"::bbUserCopyConstructor()"<<std::endl;
1056   mFile << "{"<<std::endl;
1057   //mFile<<"bbtkDebugMessage(\"Kernel\",9,\""<<mName<<::bbUserCopyConstructor()"<<std::endl);"<<std::endl;
1058   mFile << mUserCopyConstructor << std::endl;
1059   mFile << "}" << std::endl;
1060
1061   mFile <<"void "<<mName<<"::bbUserDestructor()"<<std::endl;
1062   mFile << "{"<<std::endl;
1063   //mFile<<"bbtkDebugMessage(\"Kernel\",9,\""<<mName<<::bbUserDestructor()"<<std::endl);"<<std::endl;
1064   mFile << mUserDestructor << std::endl;
1065   mFile << "}" << std::endl;
1066
1067
1068   // EO namespace
1069   EndNamespace();
1070
1071   mFile << "\n";
1072   
1073   // EOF
1074   mFile.close();
1075   
1076 }
1077 //==========================================================================
1078  
1079
1080
1081
1082
1083 //==========================================================================
1084 int main(int argc, char **argv)
1085 {
1086   
1087   if (argc<2 || argc>5) 
1088     {
1089       std::cerr << "usage : "<< argv[0] <<" xml_file [package_name] [output_path] [-q]" << std::endl;
1090       return 1;
1091     }
1092
1093   try 
1094     {
1095       std::string package("PACKAGE_NAME");
1096       std::string output_path("");
1097       bool verbose = true;
1098       if (argc>2) package = argv[2];
1099       if (argc>3) output_path = argv[3];
1100       if (argc>4) verbose = false;
1101       
1102       bbfy B(argv[1],package,output_path,verbose);
1103     }
1104   catch (bbfyException e)
1105     {
1106       std::cerr << argv[0] << "  " << argv[1] << std::endl
1107                 << e.mMessage << std::endl;
1108       return 1;
1109     }
1110   return 0;
1111 }
1112 //==========================================================================
1113
1114