blob: cfb9a4e6d44559692f56fbb83de178d36f9fb15c (
plain)
1
2
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd.
*
* Licensed under the Flora License, Version 1.1 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MODEL_MODEL_CLOUD_CONNECTION_H_
#define MODEL_MODEL_CLOUD_CONNECTION_H_
#include "model/model_base.h"
#include "cloud/car_info.h"
#include <stdbool.h>
typedef struct _s_model_cloud_connection_cb_data {
e_model_type type;
char *name;
} s_model_cloud_connection_cb_data;
typedef void (*t_model_cloud_connection_update_cb)(s_model_cloud_connection_cb_data *data);
typedef void (*t_model_cloud_connection_names_cb)(car_info_t **cars, int size);
void model_cloud_connection_init(void);
void model_cloud_connection_subscribe_event(t_model_cloud_connection_update_cb model_update_cb);
void model_cloud_connection_unsubscirbe_event(void);
void model_cloud_connection_subscribe_reconnect(t_model_cloud_connection_update_cb reconnect_cb);
void model_cloud_connection_try_reconnect(void);
void model_cloud_connection_model_state_change(void);
void model_cloud_connection_start_get_names(t_model_cloud_connection_names_cb callback);
car_info_t *model_cloud_connection_get_car_by_id(int id);
void model_cloud_connection_shutdown(void);
#endif /* MODEL_MODEL_CLOUD_CONNECTION_H_ */
|