Blame view

src/Common/DicError.cc 4.48 KB
80111081   Benjamin Renard   Add executable am...
1
2
#include "DicError.hh"

eaf76b2a   Menouard AZIB   Plot function is ...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
std::string getErrorMsg(int error_code)
{
        switch (error_code)
        {
        case AMDA_EXIT_OK:
                return "";
        case AMDA_PARSE_COMMAND_LINE_KO:
                return "Command line arguments not recognized";
        case AMDA_TYPE_DATA_UNKNOWN:
                return "Type of Data not supported";
        case AMDA_FILEPROPERTIES_ERR:
                return "Error in property file";
        case AMDA_INFORMATION_PARAM_ERR:
                return "Parameter XML file not found or not well-formed or not valid";
        case AMDA_INFORMATION_REQUEST_ERR:
                return "Request XML file error";
        case AMDA_PARAM_OUTPUT_ERR:
                return "ParamOutput implementation not found";
        case AMDA_PROCESS_ERR:
                return "Compilation abort or library load abort";
        case AMDA_PARAM_NOT_FOUND_ERR:
                return "Parameter of ident ??? is not fond";
        case AMDA_PARAM_SOME_ERR:
                return "Some ParamOutput are terminated successfully but not all.";
        case AMDA_OPER_NOT_ALLOWED:
                return "Operation not allowed";
        case AMDA_ERROR_UNKNOWN:
                return "Unknown error";
80111081   Benjamin Renard   Add executable am...
31

eaf76b2a   Menouard AZIB   Plot function is ...
32
33
34
35
36
37
38
39
        case AMDA_LOCALFILE_READER:
                return "LocalFile: Unknown file reader";
        case AMDA_LOCALFILE_TIMEPARAM:
                return "LocalFile: Cannot find time parameter";
        case AMDA_OUTOFTIME_ERR:
                return "LocalFile: Out of data time";

        case AMDA_STAT_NOT_BOOL:
d735ed8f   Hacene SI HADJ MOHAND   handling error
40
                return "Only boolean parameters are handled by countTrue function";
80111081   Benjamin Renard   Add executable am...
41

eaf76b2a   Menouard AZIB   Plot function is ...
42
43
        case AMDA_PARSER_TEST_ERROR:
                return "Parser: At leat one error occured during test of the parser";
80111081   Benjamin Renard   Add executable am...
44

eaf76b2a   Menouard AZIB   Plot function is ...
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
        case AMDA_ERROR_NOCONNECTION:
                return "DD_server: No connection";
        case AMDA_ERROR_TOOMANYREQ:
                return "DD_server: Too many request";
        case AMDA_ERROR_REQSENDERR:
                return "DD_server: Error to send request";
        case AMDA_ERROR_REPLYRECERR:
                return "DD_server: Receive an error";
        case AMDA_ERROR_NOID:
                return "DD_server: Invalid request Id";
        case AMDA_ERROR_NOREFFILE:
                return "DD_server: Error to open reference file";
        case AMDA_ERROR_NOTIMESFILE:
                return "DD_server: Missing times file";
        case AMDA_ERROR_NOINFOFILE:
                return "DD_server: Missing info file";
        case AMDA_ERROR_NOVAR:
                return "DD_server: Unknown variable";
        case AMDA_ERROR_OUTOFTIME:
                return "DD_server: Out of data time";
        case AMDA_ERROR_CACHERR:
                return "DD_server: Error occured during cache manipulation";
        case AMDA_ERROR_CACHTOOREC:
                return "DD_server: No free space in cache";
        case AMDA_ERROR_WAITEXTCALL:
                return "DD_server: Waits external call finish";
        case AMDA_ERROR_TRYAGAIN:
                return "DD_server: Times file is locked. This request should be repeated again";
        case AMDA_ERROR_NODATAATTIME:
                return "DD_server: Requested time is inside NODATA time interval";
        case AMDA_ERROR_GAPISSMALL:
                return "DD_server: Gap is too small to call external archive";
        case AMDA_ERROR_CTIMEISSHIFTED:
                return "DD_server: The request was in NoData interval, try again with time at the end";
        case AMDA_ERROR_DATAFILEERR:
                return "DD_server: Error during data file manipulation";
        case AMDA_ERROR_ENVIRERROR:
                return "DD_server: Error in environment variables";
        case AMDA_ERROR_NOPOINTER:
                return "DD_server: The pointer points nowhere, SetTime were failed";
        case AMDA_ERROR_INTSERERR:
                return "DD_server: Server internal error";
        case AMDA_ERROR_TIMEINEMPTY:
                return "DD_server: No data for specified time interval";
        case AMDA_ERROR_NOEXEC:
                return "DD_server: No executable";
80111081   Benjamin Renard   Add executable am...
91

eaf76b2a   Menouard AZIB   Plot function is ...
92
93
94
95
96
97
98
99
        case AMDA_ERROR_OPERMISSION:
                return "DD_server: Access - Permission denied";
        case AMDA_ERROR_NOHOST:
                return "DD_server: Access - No host";
        case AMDA_ERROR_NNOUSERSFILE:
                return "DD_server: Access - No user file";
        case AMDA_ERROR_PLOTFUNCTION_PARAM_NOT_FOUND:
                return "Parameter not found in param_nb_points attribute in the xml node request";
80111081   Benjamin Renard   Add executable am...
100
101
102
103
        }

        return "Unknown error";
}