/*
|
*
|
* BlueZ - Bluetooth protocol stack for Linux
|
*
|
* Copyright (C) 2017 Intel Corporation. All rights reserved.
|
*
|
*
|
* This library is free software; you can redistribute it and/or
|
* modify it under the terms of the GNU Lesser General Public
|
* License as published by the Free Software Foundation; either
|
* version 2.1 of the License, or (at your option) any later version.
|
*
|
* This library is distributed in the hope that it will be useful,
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
* Lesser General Public License for more details.
|
*
|
* You should have received a copy of the GNU Lesser General Public
|
* License along with this library; if not, write to the Free Software
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
*
|
*/
|
|
#ifndef __A2DP_SOURCE_SHELL__
|
#define __A2DP_SOURCE_SHELL__
|
|
#ifdef __cplusplus
|
extern "C" {
|
#endif
|
|
#include <stdio.h>
|
#include <stdbool.h>
|
#include <getopt.h>
|
#include <stddef.h>
|
#include "slog.h"
|
|
#define COLOR_OFF "\x1B[0m"
|
#define COLOR_RED "\x1B[0;91m"
|
#define COLOR_GREEN "\x1B[0;92m"
|
#define COLOR_YELLOW "\x1B[0;93m"
|
#define COLOR_BLUE "\x1B[0;94m"
|
#define COLOR_BOLDGRAY "\x1B[1;30m"
|
#define COLOR_BOLDWHITE "\x1B[1;37m"
|
#define COLOR_HIGHLIGHT "\x1B[1;39m"
|
|
#define bt_shell_printf pr_info;
|
|
struct bt_shell_menu;
|
|
typedef void (*bt_shell_menu_cb_t)(int argc, char *argv[]);
|
typedef char * (*bt_shell_menu_gen_t)(const char *text, int state);
|
typedef void (*bt_shell_menu_disp_t) (char **matches, int num_matches,
|
int max_length);
|
typedef void (*bt_shell_prompt_input_func) (const char *input, void *user_data);
|
typedef bool (*bt_shell_menu_exists_t) (const struct bt_shell_menu *menu);
|
|
struct bt_shell_menu_entry {
|
const char *cmd;
|
const char *arg;
|
bt_shell_menu_cb_t func;
|
const char *desc;
|
bt_shell_menu_gen_t gen;
|
bt_shell_menu_disp_t disp;
|
bt_shell_menu_exists_t exists;
|
};
|
|
struct bt_shell_menu {
|
const char *name;
|
const char *desc;
|
const struct bt_shell_menu_entry entries[];
|
};
|
|
struct bt_shell_opt {
|
const struct option *options;
|
size_t optno;
|
const char *optstr;
|
const char ***optarg;
|
const char **help;
|
};
|
|
void bt_shell_init(int argc, char **argv, const struct bt_shell_opt *opt);
|
|
int bt_shell_run(void);
|
|
void bt_shell_quit(int status);
|
void bt_shell_noninteractive_quit(int status);
|
|
bool bt_shell_set_menu(const struct bt_shell_menu *menu);
|
|
bool bt_shell_add_submenu(const struct bt_shell_menu *menu);
|
|
bool bt_shell_remove_submenu(const struct bt_shell_menu *menu);
|
|
void bt_shell_set_prompt(const char *string);
|
|
void bt_shell_hexdump(void *buf, size_t len);
|
void bt_shell_usage(void);
|
|
void bt_shell_prompt_input(const char *label, const char *msg,
|
bt_shell_prompt_input_func func, void *user_data);
|
int bt_shell_release_prompt(const char *input);
|
|
bool bt_shell_attach(int fd);
|
bool bt_shell_detach(void);
|
|
void bt_shell_set_env(const char *name, void *value);
|
void *bt_shell_get_env(const char *name);
|
|
void bt_shell_cleanup(void);
|
|
#ifdef __cplusplus
|
}
|
#endif
|
|
#endif /* __A2DP_SOURCE_SHELL__ */
|