#ifndef __NETWORK_Agent_HPP__ #define __NETWORK_Agent_HPP__ #include "bambu_networking.hpp" #include "libslic3r/ProjectTask.hpp" using namespace BBL; namespace Slic3r { typedef bool (*func_check_debug_consistent)(bool is_debug); typedef std::string (*func_get_version)(void); typedef void* (*func_create_agent)(void); typedef int (*func_destroy_agent)(void *agent); typedef int (*func_init_log)(void *agent); typedef int (*func_set_config_dir)(void *agent, std::string config_dir); typedef int (*func_set_cert_file)(void *agent, std::string folder, std::string filename); typedef int (*func_set_country_code)(void *agent, std::string country_code); typedef int (*func_start)(void *agent); typedef int (*func_set_on_ssdp_msg_fn)(void *agent, OnMsgArrivedFn fn); typedef int (*func_set_on_user_login_fn)(void *agent, OnUserLoginFn fn); typedef int (*func_set_on_printer_connected_fn)(void *agent, OnPrinterConnectedFn fn); typedef int (*func_set_on_server_connected_fn)(void *agent, OnServerConnectedFn fn); typedef int (*func_set_on_http_error_fn)(void *agent, OnHttpErrorFn fn); typedef int (*func_set_get_country_code_fn)(void *agent, GetCountryCodeFn fn); typedef int (*func_set_on_message_fn)(void *agent, OnMessageFn fn); typedef int (*func_set_on_local_connect_fn)(void *agent, OnLocalConnectedFn fn); typedef int (*func_set_on_local_message_fn)(void *agent, OnMessageFn fn); typedef int (*func_connect_server)(void *agent); typedef bool (*func_is_server_connected)(void *agent); typedef int (*func_refresh_connection)(void *agent); typedef int (*func_start_subscribe)(void *agent, std::string module); typedef int (*func_stop_subscribe)(void *agent, std::string module); typedef int (*func_send_message)(void *agent, std::string dev_id, std::string json_str, int qos); typedef int (*func_connect_printer)(void *agent, std::string dev_id, std::string dev_ip, std::string username, std::string password); typedef int (*func_disconnect_printer)(void *agent); typedef int (*func_send_message_to_printer)(void *agent, std::string dev_id, std::string json_str, int qos); typedef bool (*func_start_discovery)(void *agent, bool start, bool sending); typedef int (*func_change_user)(void *agent, std::string user_info); typedef bool (*func_is_user_login)(void *agent); typedef int (*func_user_logout)(void *agent); typedef std::string (*func_get_user_id)(void *agent); typedef std::string (*func_get_user_name)(void *agent); typedef std::string (*func_get_user_avatar)(void *agent); typedef std::string (*func_get_user_nickanme)(void *agent); typedef std::string (*func_build_login_cmd)(void *agent); typedef std::string (*func_build_logout_cmd)(void *agent); typedef std::string (*func_build_login_info)(void *agent); typedef int (*func_bind)(void *agent, std::string dev_ip, std::string timezone, OnUpdateStatusFn update_fn); typedef int (*func_unbind)(void *agent, std::string dev_id); typedef std::string (*func_get_bambulab_host)(void *agent); typedef std::string (*func_get_user_selected_machine)(void *agent); typedef int (*func_set_user_selected_machine)(void *agent, std::string dev_id); typedef int (*func_start_print)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); typedef int (*func_start_local_print_with_record)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); typedef int (*func_start_send_gcode_to_sdcard)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); typedef int (*func_start_local_print)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); typedef int (*func_get_user_presets)(void *agent, std::map>* user_presets); typedef std::string (*func_request_setting_id)(void *agent, std::string name, std::map* values_map, unsigned int* http_code); typedef int (*func_put_setting)(void *agent, std::string setting_id, std::string name, std::map* values_map, unsigned int* http_code); typedef int (*func_get_setting_list)(void *agent, std::string bundle_version, ProgressFn pro_fn, WasCancelledFn cancel_fn); typedef int (*func_delete_setting)(void *agent, std::string setting_id); typedef std::string (*func_get_studio_info_url)(void *agent); typedef int (*func_set_extra_http_header)(void *agent, std::map extra_headers); typedef int (*func_get_my_message)(void *agent, int type, int after, int limit, unsigned int* http_code, std::string* http_body); typedef int (*func_check_user_task_report)(void *agent, int* task_id, bool* printable); typedef int (*func_get_user_print_info)(void *agent, unsigned int* http_code, std::string* http_body); typedef int (*func_get_printer_firmware)(void *agent, std::string dev_id, unsigned* http_code, std::string* http_body); typedef int (*func_get_task_plate_index)(void *agent, std::string task_id, int* plate_index); typedef int (*func_get_slice_info)(void *agent, std::string project_id, std::string profile_id, int plate_index, std::string* slice_json); typedef int (*func_query_bind_status)(void *agent, std::vector query_list, unsigned int* http_code, std::string* http_body); typedef int (*func_modify_printer_name)(void *agent, std::string dev_id, std::string dev_name); typedef int (*func_get_camera_url)(void *agent, std::string dev_id, std::function callback); typedef int (*func_start_pubilsh)(void *agent, PublishParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, std::string* out); typedef int (*func_get_profile_3mf)(void *agent, BBLProfile* profile); typedef int (*func_get_model_publish_url)(void *agent, std::string* url); typedef int (*func_get_model_mall_home_url)(void *agent, std::string* url); //the NetworkAgent class class NetworkAgent { public: static int initialize_network_module(bool using_backup = false); static int unload_network_module(); #if defined(_MSC_VER) || defined(_WIN32) static HMODULE get_bambu_source_entry(); #else static void* get_bambu_source_entry(); #endif static std::string get_version(); static void* get_network_function(const char* name); NetworkAgent(); ~NetworkAgent(); int init_log(); int set_config_dir(std::string config_dir); int set_cert_file(std::string folder, std::string filename); int set_country_code(std::string country_code); int start(); int set_on_ssdp_msg_fn(OnMsgArrivedFn fn); int set_on_user_login_fn(OnUserLoginFn fn); int set_on_printer_connected_fn(OnPrinterConnectedFn fn); int set_on_server_connected_fn(OnServerConnectedFn fn); int set_on_http_error_fn(OnHttpErrorFn fn); int set_get_country_code_fn(GetCountryCodeFn fn); int set_on_message_fn(OnMessageFn fn); int set_on_local_connect_fn(OnLocalConnectedFn fn); int set_on_local_message_fn(OnMessageFn fn); int connect_server(); bool is_server_connected(); int refresh_connection(); int start_subscribe(std::string module); int stop_subscribe(std::string module); int send_message(std::string dev_id, std::string json_str, int qos); int connect_printer(std::string dev_id, std::string dev_ip, std::string username, std::string password); int disconnect_printer(); int send_message_to_printer(std::string dev_id, std::string json_str, int qos); bool start_discovery(bool start, bool sending); int change_user(std::string user_info); bool is_user_login(); int user_logout(); std::string get_user_id(); std::string get_user_name(); std::string get_user_avatar(); std::string get_user_nickanme(); std::string build_login_cmd(); std::string build_logout_cmd(); std::string build_login_info(); int bind(std::string dev_ip, std::string timezone, OnUpdateStatusFn update_fn); int unbind(std::string dev_id); std::string get_bambulab_host(); std::string get_user_selected_machine(); int set_user_selected_machine(std::string dev_id); int start_print(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); int start_local_print_with_record(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); int start_send_gcode_to_sdcard(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); int start_local_print(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn); int get_user_presets(std::map>* user_presets); std::string request_setting_id(std::string name, std::map* values_map, unsigned int* http_code); int put_setting(std::string setting_id, std::string name, std::map* values_map, unsigned int* http_code); int get_setting_list(std::string bundle_version, ProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr); int delete_setting(std::string setting_id); std::string get_studio_info_url(); int set_extra_http_header(std::map extra_headers); int get_my_message(int type, int after, int limit, unsigned int* http_code, std::string* http_body); int check_user_task_report(int* task_id, bool* printable); int get_user_print_info(unsigned int* http_code, std::string* http_body); int get_printer_firmware(std::string dev_id, unsigned* http_code, std::string* http_body); int get_task_plate_index(std::string task_id, int* plate_index); int get_slice_info(std::string project_id, std::string profile_id, int plate_index, std::string* slice_json); int query_bind_status(std::vector query_list, unsigned int* http_code, std::string* http_body); int modify_printer_name(std::string dev_id, std::string dev_name); int get_camera_url(std::string dev_id, std::function callback); int start_publish(PublishParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, std::string* out); int get_profile_3mf(BBLProfile* profile); int get_model_publish_url(std::string* url); int get_model_mall_home_url(std::string* url); private: void* network_agent { nullptr }; static func_check_debug_consistent check_debug_consistent_ptr; static func_get_version get_version_ptr; static func_create_agent create_agent_ptr; static func_destroy_agent destroy_agent_ptr; static func_init_log init_log_ptr; static func_set_config_dir set_config_dir_ptr; static func_set_cert_file set_cert_file_ptr; static func_set_country_code set_country_code_ptr; static func_start start_ptr; static func_set_on_ssdp_msg_fn set_on_ssdp_msg_fn_ptr; static func_set_on_user_login_fn set_on_user_login_fn_ptr; static func_set_on_printer_connected_fn set_on_printer_connected_fn_ptr; static func_set_on_server_connected_fn set_on_server_connected_fn_ptr; static func_set_on_http_error_fn set_on_http_error_fn_ptr; static func_set_get_country_code_fn set_get_country_code_fn_ptr; static func_set_on_message_fn set_on_message_fn_ptr; static func_set_on_local_connect_fn set_on_local_connect_fn_ptr; static func_set_on_local_message_fn set_on_local_message_fn_ptr; static func_connect_server connect_server_ptr; static func_is_server_connected is_server_connected_ptr; static func_refresh_connection refresh_connection_ptr; static func_start_subscribe start_subscribe_ptr; static func_stop_subscribe stop_subscribe_ptr; static func_send_message send_message_ptr; static func_connect_printer connect_printer_ptr; static func_disconnect_printer disconnect_printer_ptr; static func_send_message_to_printer send_message_to_printer_ptr; static func_start_discovery start_discovery_ptr; static func_change_user change_user_ptr; static func_is_user_login is_user_login_ptr; static func_user_logout user_logout_ptr; static func_get_user_id get_user_id_ptr; static func_get_user_name get_user_name_ptr; static func_get_user_avatar get_user_avatar_ptr; static func_get_user_nickanme get_user_nickanme_ptr; static func_build_login_cmd build_login_cmd_ptr; static func_build_logout_cmd build_logout_cmd_ptr; static func_build_login_info build_login_info_ptr; static func_bind bind_ptr; static func_unbind unbind_ptr; static func_get_bambulab_host get_bambulab_host_ptr; static func_get_user_selected_machine get_user_selected_machine_ptr; static func_set_user_selected_machine set_user_selected_machine_ptr; static func_start_print start_print_ptr; static func_start_local_print_with_record start_local_print_with_record_ptr; static func_start_send_gcode_to_sdcard start_send_gcode_to_sdcard_ptr; static func_start_local_print start_local_print_ptr; static func_get_user_presets get_user_presets_ptr; static func_request_setting_id request_setting_id_ptr; static func_put_setting put_setting_ptr; static func_get_setting_list get_setting_list_ptr; static func_delete_setting delete_setting_ptr; static func_get_studio_info_url get_studio_info_url_ptr; static func_set_extra_http_header set_extra_http_header_ptr; static func_get_my_message get_my_message_ptr; static func_check_user_task_report check_user_task_report_ptr; static func_get_user_print_info get_user_print_info_ptr; static func_get_printer_firmware get_printer_firmware_ptr; static func_get_task_plate_index get_task_plate_index_ptr; static func_get_slice_info get_slice_info_ptr; static func_query_bind_status query_bind_status_ptr; static func_modify_printer_name modify_printer_name_ptr; static func_get_camera_url get_camera_url_ptr; static func_start_pubilsh start_publish_ptr; static func_get_profile_3mf get_profile_3mf_ptr; static func_get_model_publish_url get_model_publish_url_ptr; static func_get_model_mall_home_url get_model_mall_home_url_ptr; }; } #endif