de1e1fbfa51e0a96bd0af5307bb4c97cbfe36f3c
[platform/core/api/audio-io.git] / include / CAudioError.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __TIZEN_MEDIA_AUDIO_IO_CAUDIOERROR_H__
18 #define __TIZEN_MEDIA_AUDIO_IO_CAUDIOERROR_H__
19
20
21 #ifdef __cplusplus
22
23
24 namespace tizen_media_audio {
25
26
27     /**
28      * Audio Error
29      */
30     class CAudioError {
31     public:
32         /* Constants Definition */
33         static const unsigned int MSG_LENGTH = 512;
34
35         enum EError {
36             ERROR_NONE,
37
38             ERROR_INVALID_ARGUMENT,
39             ERROR_INVALID_HANDLE,
40             ERROR_INVALID_SAMPLERATE,
41             ERROR_INVALID_CHANNEL,
42             ERROR_INVALID_FORMAT,
43             ERROR_INVALID_POINTER,
44             ERROR_INVALID_OPERATION,
45
46             ERROR_NOT_INITIALIZED,
47             ERROR_NOT_SUPPORTED,
48
49             ERROR_PERMISSION_DENIED,
50
51             ERROR_DEVICE_NOT_OPENED,
52             ERROR_DEVICE_NOT_CLOSED,
53
54             ERROR_OUT_OF_MEMORY,
55             ERROR_INTERNAL_OPERATION,
56             ERROR_FAILED_OPERATION,
57
58             ERROR_POLICY_BLOCKED,
59             ERROR_POLICY_INTERRUPTED,
60             ERROR_POLICY_DUPLICATED,
61
62             ERROR_MAX
63         };
64
65     private:
66         /* Members */
67         static EError mLastError;
68         static char   mLastErrorMsg[MSG_LENGTH];
69
70         EError        mError;
71         char          mErrorMsg[MSG_LENGTH];
72
73         const char* _convertErrorToString(EError err);
74
75     public:
76         /* Constructor & Destructor */
77         CAudioError(EError err);
78         CAudioError(EError err, const char* fileName, const char* parentFunc, int lineNum);
79         CAudioError(EError err, const char* msg, const char* fileName, const char* parentFunc, int lineNum);
80         //CAudioError(CAudioError& err);
81         ~CAudioError();
82
83         /* Static Methods */
84         static EError getLastError();
85         static const char* getLastErrorMsg();
86
87         /* Setter & Getter */
88         EError getError();
89         const char* getErrorMsg();
90
91         /* Overrided Operation */
92         CAudioError& operator =  (const EError err);
93         CAudioError& operator =  (const CAudioError& err);
94         bool         operator != (const EError err);
95         bool         operator == (const EError err);
96 //        friend bool operator == (const CAudioError& src, const EError& err);
97     };
98
99 } /* namespace tizen_media_audio */
100
101 #endif
102 #endif /* __TIZEN_MEDIA_CPP_OBJECTS_IO_H__ */