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

Private GIT Repository
changes in output pattern comput
[blast.git] / Exception.h
1 /*-==============================================================-
2
3 file : Exception.h
4
5 creation date : 08/04/2015
6
7 author : S. Domas (sdomas@iut-bm.univ-fcomte.fr)
8
9 description : 
10
11 supp. infos : saved in UTF-8 [éè]
12
13 -==============================================================-*/
14 #ifndef __EXCEPTION_H__
15 #define __EXCEPTION_H__
16
17 #include <iostream>
18 #include <fstream>
19
20 #include <QtCore>
21
22 // exceptions for file accesses
23 #define CONFIGFILE_NOACCESS 101
24 #define CONFIGFILE_CORRUPTED 102
25
26 #define PROJECTFILE_NOACCESS 201
27 #define PROJECTFILE_CORRUPTED 202
28
29 #define BLOCKFILE_NOACCESS 301
30 #define BLOCKFILE_CORRUPTED 302
31
32 #define IMPLFILE_NOACCESS 401
33 #define IMPLFILE_CORRUPTED 402
34 #define IMPLFILE_NOPATTERN 403
35
36 #define VHDLFILE_NOACCESS 501
37 #define VHDLFILE_CORRUPTED 502
38
39 #define BLOCKPATH_NOACCESS 601
40
41 #define IMPLPATH_NOACCESS 701
42
43 // exceptions for block manipulations
44 #define BLOCK_NULL 1001
45 #define BLOCK_INVALID_TYPE 1002
46
47 // exceptions for interfaces manipulations
48 #define IFACE_NULL 2001
49 #define IFACE_INVALID_TYPE 2002
50 #define IFACE_MULTIPLICITY_REACHED 2003
51
52 // exceptions for block items manipulations
53 #define BLOCKITEM_NULL 3001
54 #define BLOCKITEM_INVALID_TYPE 3002
55
56 // exceptions for width interfaces validation
57 #define WIDTHS_NOT_EQUALS 4001
58
59 // exceptions for VHDL generation
60 #define INVALID_VALUE 5001
61
62 // exception for patterns
63 #define INVALID_REFBLOCK_USE 10001
64 #define INVALID_DELTA_CP 10002 // delta and CP are not consistent (NB: used during admittance computation)
65
66 #define EVAL_PARAM_UNKNOWN 10101 // a variable used in an expression is not defined as a block parameter
67 #define EVAL_PARAM_NOVALUE 10102 // can't get the double value of a block parameter
68 #define EVAL_INVALID_EXPR 10103 // invalid arithmetic expression (in a block parameter/pattern)
69
70 #define INVALID_IFACE_PATTERN 10201 // the pattern of an interface is invalid (not correct grammar)
71 #define INVALID_IFACE_PC 10202 // the production counter of an interface is invalid (not correct grammar)
72
73 #define INVALID_IFACE_CP_LENGTH 10301 // the size of CP for an interface differs from others
74 #define NO_IFACE_CP 10302 // an interface has no CP defined in reference block
75
76 #define INVALID_IFACE_PP_LENGTH 10401 // the size of PP for an interface differs from others
77 #define NO_IFACE_PP 10402 // an interface has no PP defined in reference block
78
79 #define NO_IFACE_IP 10501 // an interface has no IP
80 #define IP_AP_NOTCOMPAT 10502 // IP and AP not compatible
81 #define IP_END_NULLCOL 10503 // IP ends with anull column (normally not possible during compat. check)
82 #define AP_TOO_SHORT 10504 // AP has been badly computed, leading to a AP shorter than needed (NB: it is an abnormal case)
83
84
85 using namespace std;
86 using namespace Qt;
87
88 class Exception : public QObject {
89
90 public:
91
92   Exception(int _id);
93   Exception(const Exception& other);
94
95   inline int getType() { return id; }
96   inline void setMessage(QString _message) { message = _message; }
97   inline QString getMessage() { return message; }
98   QString getDefaultMessage();
99
100 private:  
101   int id;
102   QString message;
103
104 };
105
106 #endif //__EXCEPTION_H__