]> Creatis software - bbtk.git/blob - kernel/appli/bbfy/bbfy.cpp
4aeb878c5719e47b2b1e9d657646ad44da31e59e
[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   // Namespace
496   BeginNamespace();
497
498   // Interface
499
500   // If it is a template class
501   if (mTemplateParam.size() > 0)
502     {
503       mFile << "template " << mTemplateDeclaration <<"\n";
504     }
505   
506   // Class declaration and parents
507   mFile << "class /*BBTK_EXPORT*/ "<<mName<<"\n";
508   mFile << " : \n";
509   mFile << "   public "<<mParentBlackBox;
510
511   /*
512   if (mBB.nChildNode("inherits"))
513     {
514       mFile << ",\n";
515       for (i=0,j=0; i<mBB.nChildNode("inherits")-1; i++) 
516         {
517           mFile << "   public " 
518                 << mBB.getChildNode("inherits",&j).getText()
519                 << ",\n";
520         }
521       mFile << "   public " 
522             << mBB.getChildNode("Inherits",&j).getText()
523             <<"\n";
524     }
525   */
526
527   if (mType == itkImageToImageFilter )
528     {
529       mFile << ",\n   public " << mItkParent <<"\n";
530     }
531   else if ( (mType == vtkImageAlgorithm) ||
532             (mType == vtkPolyDataAlgorithm) )
533     {
534       mFile << ",\n   public " << mVtkParent <<"\n";
535     }
536   else 
537     {
538       mFile << "\n";
539     }
540
541   mFile << "{\n";
542
543   // Interface
544   mFile << "  BBTK_BLACK_BOX_INTERFACE("
545         << mName << ","
546         << mParentBlackBox << ");\n";
547
548   // typedef on itkfilter
549   if (mType == itkImageToImageFilter)
550     {
551       mFile << "  typedef " <<mItkParent <<" itkParent;"<<std::endl;
552       mFile << "  void bbDelete() { itkParent::UnRegister(); }"<<std::endl;
553     }
554   // typedef on itkfilter
555   if ( (mType == vtkImageAlgorithm) ||
556        (mType == vtkPolyDataAlgorithm) )
557     {
558       mFile << "  typedef " <<mVtkParent <<" vtkParent;"<<std::endl;
559       mFile << "  void bbDelete() { vtkParent::Delete(); }"<<std::endl;
560     }
561   for (i=mTypedef.begin(); i!=mTypedef.end(); ++i) 
562     {
563       mFile << *i <<"\n";
564     }
565
566   // Declare user constructor / copy cons /destr 
567   mFile << "//=================================================================="<<std::endl;
568   mFile << "/// User callback called in the box contructor"<<std::endl;
569
570   mFile << "virtual void bbUserConstructor();"<<std::endl;
571   mFile << "/// User callback called in the box copy constructor"<<std::endl;
572   mFile << "virtual void bbUserCopyConstructor();"<<std::endl;
573   mFile << "/// User callback called in the box destructor"<<std::endl;
574   mFile << "virtual void bbUserDestructor();"<<std::endl;
575   mFile << "//=================================================================="<<std::endl; 
576
577
578
579   // Inputs
580   std::vector<IO>::iterator ioi;
581   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
582     {
583       if (ioi->special=="") 
584         {
585           mFile << "  BBTK_DECLARE_INPUT(" 
586                 << ioi->name
587                 << ","
588                 << ioi->type
589                 << ");\n";
590         }
591       else if (ioi->special=="itk input")
592         {
593           mFile << "  BBTK_DECLARE_ITK_INPUT(" 
594                 << "itkParent,"
595                 << ioi->name
596                 << ","
597                 << ioi->type
598                 << ");\n";
599         }
600       else if (ioi->special=="vtk input")
601         {
602           if (mType == vtkImageAlgorithm) {
603           mFile << "  BBTK_DECLARE_VTK_IMAGE_ALGORITHM_INPUT(" 
604                 << "vtkParent,"
605                 << ioi->name
606                 << ","
607                 << ioi->type
608                 << ");\n";
609           } 
610           else if (mType == vtkPolyDataAlgorithm) {
611           mFile << "  BBTK_DECLARE_POLY_DATA_ALGORITHM_INPUT(" 
612                 << "vtkParent,"
613                 << ioi->name
614                 << ","
615                 << ioi->type
616                 << ");\n";
617           }
618         }
619       else if (ioi->special=="itk parameter")
620         {
621           mFile << "  BBTK_DECLARE_ITK_PARAM(" 
622                 << "itkParent,"
623                 << ioi->name
624                 << ","
625                 << ioi->type
626                 << ");\n";
627         }
628       else if (ioi->special=="vtk parameter")
629         {
630           mFile << "  BBTK_DECLARE_VTK_PARAM(" 
631                 << "vtkParent,"
632                 << ioi->name
633                 << ","
634                 << ioi->type
635                 << ");\n";
636         }
637       else 
638         {
639           std::string mess("Error : input '");
640           mess += ioi->name;
641           mess += "', 'special' attribute '";
642           mess += ioi->special;
643           mess += "' unknown";
644           throw bbfyException(mess);
645         }
646     }
647   
648   // Outputs
649   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
650     {
651       if (ioi->special=="") 
652         {
653           mFile << "  BBTK_DECLARE_OUTPUT(" 
654                 << ioi->name
655                 << ","
656                 << ioi->type
657                 << ");\n";
658         }
659       else if (ioi->special=="itk output")
660         {
661           mFile << "  BBTK_DECLARE_ITK_OUTPUT(" 
662                 << "itkParent,"
663                 << ioi->name
664                 << ","
665                 << ioi->type
666                 << ");\n";
667         }  
668       else if (ioi->special=="vtk output")
669         {
670           mFile << "  BBTK_DECLARE_VTK_OUTPUT(" 
671                 << "vtkParent,"
672                 << ioi->name
673                 << ","
674                 << ioi->type
675                 << ");\n";
676         }  
677       else 
678         {
679           std::string mess("Error : output '");
680           mess += ioi->name;
681           mess += "', 'special' attribute '";
682           mess += ioi->special;
683           mess += "' unknown";
684           throw bbfyException(mess);
685         }
686     }
687   
688
689   // Process
690   if ((mType == STD)||(mProcess.size()))
691     {
692       mFile << "  BBTK_PROCESS(Process);\n" ;
693       mFile << "  void Process();\n";
694     }
695   else if (mType == itkImageToImageFilter)
696     {   
697       mFile << "  BBTK_PROCESS(itkParent::Update);\n" ;
698     }
699   else if ((mType == vtkImageAlgorithm) ||
700            (mType == vtkPolyDataAlgorithm) )
701
702     {   
703       mFile << "  BBTK_PROCESS(vtkParent::Update);\n" ;
704     }
705
706   // CreateWidget
707   if (mIsWidget) 
708     {
709        mFile << "  BBTK_CREATE_WIDGET(CreateWidget);\n" ;
710        mFile << "  void CreateWidget();\n";
711     }
712
713
714   // EO black box declaration
715   mFile << "};\n\n";
716
717
718
719   // BO black box description
720   if (mTemplateParam.size()==0)
721     {
722       mFile << "BBTK_BEGIN_DESCRIBE_BLACK_BOX("
723             << mName << ","
724             << mParentBlackBox << ");\n";
725       mFile << "BBTK_NAME(\"" << mName <<"\");\n";
726     }
727   else if (mTemplateParam.size()==1)
728     {
729       mFile << "BBTK_BEGIN_DESCRIBE_TEMPLATE_BLACK_BOX("
730             << mName //<< ","
731         //<< mParentBlackBox //<< ","
732         //   << mTemplateParam[0] 
733             << ");\n";
734       mFile << "BBTK_NAME(\"" << mName 
735             << "<\"+bbtk::TypeName<" << mTemplateParam[0]
736             <<">()+\">\");\n";
737     }
738  else 
739     {
740       throw bbfyException("template bb with more than 1 templ param not impl");
741     } 
742   
743   // Author
744   mFile << "BBTK_AUTHOR(\""<<mAuthor<< "\");\n";
745
746   // Description
747   mFile << "BBTK_DESCRIPTION(\""<<mDescription<< "\");\n"; 
748   
749   // Category
750   mFile << "BBTK_CATEGORY(\""<<mCategory<< "\");\n"; 
751
752   for (i=mTypedef.begin(); i!=mTypedef.end(); ++i) 
753     {
754       mFile << *i <<"\n";
755     }
756   
757   // Inputs
758   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
759     {
760       if (mTemplateParam.size()>0)
761         {
762           mFile << "BBTK_TEMPLATE_INPUT(";
763         } 
764       else 
765         {
766           mFile << "BBTK_INPUT(";
767         } 
768       mFile << mName << "," << ioi->name << ",\""
769             << ioi->descr << "\"," <<  ioi->type << ",\"" 
770             << ioi->nature<<"\");\n";
771     }
772   
773   // Outputs
774   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
775     {
776       if (mTemplateParam.size()>0)
777         {
778           mFile << "BBTK_TEMPLATE_OUTPUT(";
779         } 
780       else 
781         {
782           mFile << "BBTK_OUTPUT(";
783         } 
784       mFile << mName << "," << ioi->name << ",\""
785             << ioi->descr << "\"," <<  ioi->type << ",\"" 
786             << ioi->nature<<"\");\n";
787     }
788   
789   // EO black box description
790   if (mTemplateParam.size()==0)
791     {
792       mFile << "BBTK_END_DESCRIBE_BLACK_BOX("
793             << mName << ");\n";
794     }
795   else if (mTemplateParam.size()==1)
796     {
797       mFile << "BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX("
798             << mName //<< ","
799         // << mTemplateParam[0] 
800             << ");\n";
801     }
802   else 
803     {
804       throw bbfyException("template bb with more than 1 templ param not impl");
805      
806     } 
807   
808   // Untemplatization of itk filters
809   if ( mGeneric )
810     {
811       WriteGenericITKFilterHeader();
812     }
813
814
815   // EO namespace
816   EndNamespace();
817   
818   // Prevent multiple inclusions
819   mFile << "#endif // " << included <<"\n";
820   // If is widget 
821   if (mIsWidget)
822     {
823       mFile << "#endif // _USE_WXWIDGETS_\n";
824     }
825
826   // EOF
827   mFile << "\n";
828
829   mFile.close();
830 }
831 //==========================================================================
832
833
834
835 //==========================================================================
836 void bbfy::WriteGenericITKFilterHeader()
837 {
838   mFile << "\n//===================================================\n";
839   mFile << "// Generic \"untemplatized\" filter\n";
840   mFile << "//===================================================\n";
841
842   // Class declaration and parents
843   mFile << "class /*BBTK_EXPORT*/ "<<mName<<"Generic\n";
844   mFile << " : \n";
845   mFile << "   public bbtk::AtomicBlackBox\n";
846   mFile << "{\n";
847
848   // Interface
849   mFile << "  BBTK_BLACK_BOX_INTERFACE("
850         << mName << "Generic,bbtk::AtomicBlackBox);\n";
851
852   // Inputs
853   std::vector<IO>::iterator ioi;
854   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
855     {
856       mFile << "  BBTK_DECLARE_INPUT(" 
857             << ioi->name
858             << ","
859             << ioi->generic_type
860             << ");\n";
861     }
862   
863   // Outputs
864   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
865     {
866       mFile << "  BBTK_DECLARE_OUTPUT(" 
867             << ioi->name
868             << ","
869             << ioi->generic_type
870             << ");\n";
871     }
872     
873   // Process
874   mFile << "  BBTK_PROCESS(ProcessSwitch);\n";
875   mFile << "  private :\n";
876   mFile << "    inline void ProcessSwitch();\n";
877   mFile << "    template <class T, unsigned int D> void Process();\n";
878   // EO black box declaration
879   mFile << "};\n\n";
880
881
882
883   // BO black box description
884   mFile << "BBTK_BEGIN_DESCRIBE_BLACK_BOX("
885         << mName << "Generic,bbtk::AtomicBlackBox);\n";
886   mFile << "BBTK_NAME(\"" << mName <<"\");\n";
887
888   // Author
889   mFile << "BBTK_AUTHOR(\""<<mAuthor<< "\");\n";
890
891   // Description
892   mFile << "BBTK_DESCRIPTION(\""<<mDescription<< "\");\n"; 
893   
894   // Inputs
895   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
896     {
897       mFile << "BBTK_INPUT(";
898       mFile << mName << "Generic," << ioi->name << ",\""
899             << ioi->descr << "\"," <<  ioi->generic_type <<");\n";
900     }
901   
902   // Outputs
903   for (ioi=mOutput.begin(); ioi!=mOutput.end(); ++ioi) 
904     {
905       mFile << "BBTK_OUTPUT(";
906       mFile << mName << "Generic," << ioi->name << ",\""
907             << ioi->descr << "\"," <<  ioi->generic_type <<");\n";
908     }
909   
910   // EO black box description
911   mFile << "BBTK_END_DESCRIBE_BLACK_BOX("
912         << mName << "Generic);\n";
913
914
915   //=================================================================
916   // ProcessSwitch implementation
917   mFile << "void "<< mName <<"Generic::ProcessSwitch()\n"
918         << "{\n"
919         << "CALL_FOR_ALL_TYPES_AND_DIM(bbGetInputIn()->GetType(),\n"
920         << "                           bbGetInputIn()->GetDimension(),\n"
921         << "                           Process);\n"
922         << "}\n";
923   //=================================================================
924
925
926   //=================================================================
927   // Template process implementation
928   mFile << "template <class T, unsigned int D>\n"
929         << "void "<<mName<<"Generic::Process()\n"
930         << "{\n"
931         << "  bbtkDebugMessageInc(\"Kernel\",9,\n"
932         << "      \""<<mName 
933         << "Generic::Process<\"<<TypeName<T>()<<\",\"<<D<<\">()\"<<std::endl);\n"
934     
935         << "  typedef itk::Image<T,D> ImageType;\n"
936         << "  typedef "<<mName<<"<ImageType> FilterType;\n"
937     
938         << "  FilterType* f = new FilterType(\"Temp\");\n"
939     
940         << "  f->bbSetInputIn( this->bbGetInputIn()->GetImage<T,D>() );\n";
941   
942   for (ioi=mInput.begin(); ioi!=mInput.end(); ++ioi) 
943     {
944       if (ioi->name == "In") continue;
945       mFile << "  f->bbSetInput"<<ioi->name<<" ( this->bbGetInput" 
946             << ioi->name << "() );\n";
947     }
948   
949   mFile << "  f->bbUpdate();\n"
950         << "  this->bbSetOutputOut( new itkImage( f->bbGetOutputOut() ) );\n"
951         << "  f->UnRegister();\n"
952         << "  bbtkDebugDecTab(\"Kernel\",9);\n"
953         << "}\n\n";
954   //=================================================================
955
956
957 }
958 //==========================================================================
959
960
961 //==========================================================================
962 void bbfy::CreateCode()
963 {
964   mCxxName = "bb";
965   mCxxName += mPackage;
966   mCxxName += mName;
967   mCxxName += ".cxx";
968   if (mVerbose) std::cout << " - Creating code   '"<<mCxxName<<"'"<<std::endl;
969   std::string fullname = mOutputPath + mCxxName;
970   mFile.open(fullname.c_str());
971   if (!mFile.good()) 
972     {
973       std::string mess("Error : could not open file \"");
974       mess += fullname;
975       mess += "\"";
976       throw bbfyException(mess);
977     }
978   
979   // Includes
980   // Header of the class
981   mFile << "#include \"" << mHName << "\"\n";
982
983   // Include Package header
984   mFile << "#include \"bb"<<mPackage << "Package.h\"\n";
985
986   // BO namespace
987   BeginNamespace();
988  
989   
990   // Template class ?
991   if (mTemplateParam.size()>0) 
992     {
993       // Implementation
994       mFile << "BBTK_BLACK_BOX_TEMPLATE_IMPLEMENTATION("
995             << mName << ","  
996             << mParentBlackBox << ");\n";
997      
998       if (mGeneric) 
999         {       
1000           // Implementation
1001           mFile << "BBTK_BLACK_BOX_IMPLEMENTATION("
1002                 << mName << "Generic,bbtk::AtomicBlackBox);\n";
1003           // Package
1004           mFile << "BBTK_ADD_BLACK_BOX_TO_PACKAGE("
1005                 << mPackage << ","
1006                 << mName << "Generic)\n";
1007         }
1008     }
1009   else 
1010     {
1011       // Non template class
1012       // Package
1013       mFile << "BBTK_ADD_BLACK_BOX_TO_PACKAGE("
1014             << mPackage << ","
1015             << mName << ")\n";
1016
1017       // Implementation
1018       mFile << "BBTK_BLACK_BOX_IMPLEMENTATION("
1019             << mName << ","  
1020             << mParentBlackBox << ");\n"; 
1021     }
1022   // Process
1023   if ((mType == STD)||(mProcess.size()))
1024     {
1025       mFile << "void "<<mName<<"::Process()\n{\n";
1026       mFile << mProcess << "\n";
1027       mFile << "}\n";
1028     }
1029   // CreateWidget
1030   if (mIsWidget)
1031     {
1032       mFile << "void "<<mName<<"::CreateWidget()\n{\n";
1033       mFile << mCreateWidget << "\n";
1034       mFile << "}\n";
1035     }
1036   
1037
1038   // User constr / copy constr / destr implementation
1039   mFile <<"void "<<mName<<"::bbUserConstructor()"<<std::endl;
1040   mFile << "{"<<std::endl;
1041   //mFile<<"bbtkDebugMessage(\"Kernel\",9,\""<<mName<<::bbUserConstructor()"<<std::endl);"<<std::endl;
1042   mFile << mUserConstructor << std::endl;
1043   mFile << "}" << std::endl;
1044
1045   mFile <<"void "<<mName<<"::bbUserCopyConstructor()"<<std::endl;
1046   mFile << "{"<<std::endl;
1047   //mFile<<"bbtkDebugMessage(\"Kernel\",9,\""<<mName<<::bbUserCopyConstructor()"<<std::endl);"<<std::endl;
1048   mFile << mUserCopyConstructor << std::endl;
1049   mFile << "}" << std::endl;
1050
1051   mFile <<"void "<<mName<<"::bbUserDestructor()"<<std::endl;
1052   mFile << "{"<<std::endl;
1053   //mFile<<"bbtkDebugMessage(\"Kernel\",9,\""<<mName<<::bbUserDestructor()"<<std::endl);"<<std::endl;
1054   mFile << mUserDestructor << std::endl;
1055   mFile << "}" << std::endl;
1056
1057
1058   // EO namespace
1059   EndNamespace();
1060
1061   mFile << "\n";
1062   
1063   // EOF
1064   mFile.close();
1065   
1066 }
1067 //==========================================================================
1068  
1069
1070
1071
1072
1073 //==========================================================================
1074 int main(int argc, char **argv)
1075 {
1076   
1077   if (argc<2 || argc>5) 
1078     {
1079       std::cerr << "usage : "<< argv[0] <<" xml_file [package_name] [output_path] [-q]" << std::endl;
1080       return 1;
1081     }
1082
1083   try 
1084     {
1085       std::string package("PACKAGE_NAME");
1086       std::string output_path("");
1087       bool verbose = true;
1088       if (argc>2) package = argv[2];
1089       if (argc>3) output_path = argv[3];
1090       if (argc>4) verbose = false;
1091       
1092       bbfy B(argv[1],package,output_path,verbose);
1093     }
1094   catch (bbfyException e)
1095     {
1096       std::cerr << argv[0] << "  " << argv[1] << std::endl
1097                 << e.mMessage << std::endl;
1098       return 1;
1099     }
1100   return 0;
1101 }
1102 //==========================================================================
1103
1104