1f83fb9541a70fc56be1d969d409472ca975b4be
[platform/core/uifw/voice-control.git] / server / vcd_main.h
1 /*
2 * Copyright (c) 2011-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
18 #ifndef __VCD_MAIN_H_
19 #define __VCD_MAIN_H_
20
21 #include <Ecore.h>
22 #include <dlog.h>
23 #include <errno.h>
24 #include <glib.h>
25 #include <stdio.h>
26 #include <stdbool.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <tizen.h>
30 #include <unistd.h>
31
32 #include "vc_defs.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 /*
39 * Daemon Define
40 */
41
42 #define TAG_VCD "vcd"
43
44 /* for debug message */
45 /* #define RECORDER_DEBUG */
46 #define CLIENT_DATA_DEBUG
47 /* #define COMMAND_DATA_DEBUG */
48
49 typedef enum {
50         VCD_ERROR_NONE                  = TIZEN_ERROR_NONE,                     /**< Successful */
51         VCD_ERROR_OUT_OF_MEMORY         = TIZEN_ERROR_OUT_OF_MEMORY,            /**< Out of Memory */
52         VCD_ERROR_IO_ERROR              = TIZEN_ERROR_IO_ERROR,                 /**< I/O error */
53         VCD_ERROR_INVALID_PARAMETER     = TIZEN_ERROR_INVALID_PARAMETER,        /**< Invalid parameter */
54         VCD_ERROR_TIMED_OUT             = TIZEN_ERROR_TIMED_OUT,                /**< No answer from service */
55         VCD_ERROR_RECORDER_BUSY         = TIZEN_ERROR_RESOURCE_BUSY,            /**< Busy recorder */
56         VCD_ERROR_PERMISSION_DENIED     = TIZEN_ERROR_PERMISSION_DENIED,        /**< Permission denied */
57         VCD_ERROR_NOT_SUPPORTED         = TIZEN_ERROR_NOT_SUPPORTED,            /**< VC NOT supported */
58         VCD_ERROR_INVALID_STATE         = TIZEN_ERROR_VOICE_CONTROL | 0x011,    /**< Invalid state */
59         VCD_ERROR_INVALID_LANGUAGE      = TIZEN_ERROR_VOICE_CONTROL | 0x012,    /**< Invalid language */
60         VCD_ERROR_ENGINE_NOT_FOUND      = TIZEN_ERROR_VOICE_CONTROL | 0x013,    /**< No available engine */
61         VCD_ERROR_OPERATION_FAILED      = TIZEN_ERROR_VOICE_CONTROL | 0x014,    /**< Operation failed */
62         VCD_ERROR_OPERATION_REJECTED    = TIZEN_ERROR_VOICE_CONTROL | 0x015,    /**< Operation rejected */
63         VCD_ERROR_SERVICE_RESET         = TIZEN_ERROR_VOICE_CONTROL | 0x018     /**< Daemon Service reset */
64 } vcd_error_e;
65
66 typedef enum {
67         VCD_STATE_NONE = 0,
68         VCD_STATE_READY = 1,
69         VCD_STATE_RECORDING = 2,
70         VCD_STATE_PROCESSING = 3
71 } vcd_state_e;
72
73
74 #ifdef __cplusplus
75 }
76 #endif
77
78 #endif  /* __VCD_MAIN_H_ */