merge with master
[platform/core/api/face.git] / src / face_priv.c
1 /*
2  * Copyright (c) 2011 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 #include "face.h"
18 #include "face_priv.h"
19
20 const char *_face_convert_error(int err)
21 {
22 #define STRINGFY(xx) #xx
23
24         struct _Error{
25                 face_error_e nError;
26                 const char *szError;
27         } ;
28
29         static struct _Error Error[] = {
30                         { FACE_ERROR_INVALID_PARAMTER, STRINGFY(FACE_ERROR_INVALID_PARAMTER) },
31                         { FACE_ERROR_OUT_OF_MEMORY, STRINGFY(FACE_ERROR_OUT_OF_MEMORY) },
32                         { FACE_ERROR_ENGINE_NOT_FOUND, STRINGFY(FACE_ERROR_ENGINE_NOT_FOUND) },
33                         { FACE_ERROR_OPERATION_FAILED, STRINGFY(FACE_ERROR_OPERATION_FAILED) },
34                         { FACE_ERROR_COMPONENT_NOT_FOUND, STRINGFY(FACE_ERROR_COMPONENT_NOT_FOUND) },
35                         { FACE_ERROR_NONE, NULL },      // End
36         };
37
38         int i = 0;
39         while(Error[i].szError != NULL)
40         {
41                 if ( Error[i].nError == (face_error_e)err )
42                 {
43                         return Error[i].szError;
44                 }
45
46                 i++;
47         }
48
49         static char error[128];
50         snprintf(error, sizeof(error)-1, "Unknow Error : %d(0x%08x)", err, err);
51         return error;
52
53 }
54
55
56