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