build: Support for out of source builds added
[project/uqmi.git] / commands.h
1 /*
2  * uqmi -- tiny QMI support implementation
3  *
4  * Copyright (C) 2014-2015 Felix Fietkau <nbd@openwrt.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef __UQMI_COMMANDS_H
23 #define __UQMI_COMMANDS_H
24
25 #include <stdbool.h>
26 #include "commands-wds.h"
27 #include "commands-dms.h"
28 #include "commands-nas.h"
29 #include "commands-wms.h"
30 #include "commands-wda.h"
31
32 enum qmi_cmd_result {
33         QMI_CMD_DONE,
34         QMI_CMD_REQUEST,
35         QMI_CMD_EXIT,
36 };
37
38 enum {
39         CMD_TYPE_OPTION = -1,
40 };
41
42 struct uqmi_cmd_handler {
43         const char *name;
44         int type;
45
46         enum qmi_cmd_result (*prepare)(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg, char *arg);
47         void (*cb)(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg);
48 };
49
50 struct uqmi_cmd {
51         const struct uqmi_cmd_handler *handler;
52         char *arg;
53 };
54
55 #define __uqmi_commands \
56         __uqmi_command(version, get-versions, no, QMI_SERVICE_CTL), \
57         __uqmi_command(set_client_id, set-client-id, required, CMD_TYPE_OPTION), \
58         __uqmi_command(get_client_id, get-client-id, required, QMI_SERVICE_CTL), \
59         __uqmi_command(ctl_set_data_format, set-data-format, required, QMI_SERVICE_CTL), \
60         __uqmi_wds_commands, \
61         __uqmi_dms_commands, \
62         __uqmi_nas_commands, \
63         __uqmi_wms_commands, \
64         __uqmi_wda_commands
65
66 #define __uqmi_command(_name, _optname, _arg, _option) __UQMI_COMMAND_##_name
67 enum uqmi_command {
68         __uqmi_commands,
69         __UQMI_COMMAND_LAST
70 };
71 #undef __uqmi_command
72
73 extern bool single_line;
74 extern const struct uqmi_cmd_handler uqmi_cmd_handler[];
75 void uqmi_add_command(char *arg, int longidx);
76 bool uqmi_run_commands(struct qmi_dev *qmi);
77 int uqmi_add_error(const char *msg);
78
79 #endif