adds command parse and type module
[apps/native/tizen-things-daemon.git] / daemon / src / ttd-parse-cmd.c
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 <glib.h>
18 #include <json.h>
19 #include "ttd-log.h"
20 #include "ttd-cmd-type.h"
21
22 int ttd_parse_json_to_cmd(const char *json_str, ttd_cmd_data_s **cmd)
23 {
24         json_object *obj = NULL;
25
26         retvm_if(!json_str, -1,"json_str is NULL");
27         retvm_if(!cmd, -1,"cmd is NULL");
28
29         obj = json_tokener_parse(json_str);
30
31         /* TODO : parse and fill out cmd */
32
33         json_object_put(obj);
34
35         return 0;
36 }