wanpipe/util/wancfg/menu_hardware_probe.h

78 lines
2.4 KiB
C++

/***************************************************************************
menu_hardware_probe.h - description
-------------------
begin : Wed Mar 31 2004
copyright : (C) 2004 by David Rokhvarg
email : davidr@sangoma.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef MENU_HARDWARE_PROBE_H
#define MENU_HARDWARE_PROBE_H
#include <menu_base.h>
#include "conf_file_reader.h"
#if defined(ZAPTEL_PARSER)
#include "sangoma_card_list.h"
#endif
/**
*@author David Rokhvarg
*/
class menu_hardware_probe : public menu_base {
string menu_str;
char lxdialog_path[MAX_PATH_LENGTH];
conf_file_reader* cfr;
#if defined(ZAPTEL_PARSER)
sangoma_card_list *sang_card_list;
#endif
int parse_selected_card_line(char *selected_card_line,
unsigned int *card_type,
unsigned int *card_version,
unsigned int *card_sub_version);
int get_card_location_from_hwprobe_line(wandev_conf_t* linkconf,
link_def_t * link_def,
char* selected_card_line);
int get_port_from_str(char * str_buff, unsigned int* comm_port);
int get_line_number_from_str(char * str_buff, unsigned int* line_no);
int verify_hwprobe_command_is_successfull();
#if defined(ZAPTEL_PARSER)
int add_card_to_list(IN char *hw_probe_output_line);
#endif
public:
menu_hardware_probe( IN char * lxdialog_path,
IN conf_file_reader* ptr_cfr);
#if defined(ZAPTEL_PARSER)
menu_hardware_probe( IN sangoma_card_list *sang_card_list);
#endif
~menu_hardware_probe();
int hardware_probe();
int run(OUT int * selection_index);
};
#endif