]> AND Private Git Repository - blast.git/blob - ReferenceBlock.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
changes in output pattern comput
[blast.git] / ReferenceBlock.h
1 #ifndef __REFERENCEBLOCK_H__
2 #define __REFERENCEBLOCK_H__
3
4 #include <iostream>
5
6 #include <QtCore>
7 #include <QtGui>
8 #include <QtWidgets>
9 #include <QtXml>
10
11 #include "AbstractBlock.h"
12 class AbstractBlock;
13
14 #include "BlockImplementation.h"
15
16 #include "Exception.h"
17 class Exception;
18
19 using namespace std;
20 using namespace Qt;
21
22
23 class ReferenceBlock : public AbstractBlock {
24
25 public:
26
27   ReferenceBlock(const QString _xmlFile);
28
29   int getType();
30   inline QString getXmlFile() { return xmlFile; }
31   inline QString getBriefDescription() { return descriptionBrief; }
32   inline QString getDetailedDescription() { return descriptionDetail; }
33   inline QList<int> getCategories() { return categories; }
34   inline QList<BlockImplementation *> getImplementations() { return implementations; }
35   inline QString getHashMd5() { return hashMd5; }
36
37   inline AbstractBlock* getParent() { return NULL; }
38
39   void addCategory(int id);
40   void setBriefDescription(const QString& str);
41   void setDetailedDescription(const QString& str);
42   void addImplementation(BlockImplementation* impl);
43
44   void load(QDomElement &elt) throw(Exception);
45   void setHashMd5();
46
47 private:
48   QString xmlFile; // the xml file from which attributes are initialized.
49   QString hashMd5;
50   QString descriptionBrief;
51   QString descriptionDetail;
52   QList<int> categories;
53   QList<BlockImplementation *> implementations; // set when implementations are read
54
55   // loading methods for the different tags in the XML desc.
56   void loadInformations(QDomElement &elt) throw(Exception);
57   void loadParameters(QDomElement &elt) throw(Exception);
58   void loadInterfaces(QDomElement &elt) throw(Exception);
59   void createInterfaceForParameters() throw(Exception);
60
61   friend QDataStream &operator<<(QDataStream &out, const ReferenceBlock &b);
62   friend QDataStream &operator>>(QDataStream &in, ReferenceBlock &b);
63
64
65   // AbstractBlock interface
66 public:
67   void parametersValidation(QList<AbstractBlock*>* checkedBlocks, QList<AbstractBlock*>* blocksToConfigure);
68   
69 private:
70   // patterns
71   void checkInputPatternCompatibility() throw(Exception);
72   void computeOutputPattern(int nbExec = -1) throw(Exception);
73 };
74
75 #endif // __REFERENCEBLOCK_H__