Merge pull request #144 from tobealive/chore/remove-build-outputs

This commit is contained in:
Turiiya 2023-07-24 17:44:24 +02:00 committed by GitHub
commit 4d76051471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
36 changed files with 102 additions and 1222 deletions

20
.gitignore vendored
View File

@ -6,9 +6,24 @@
*.res
*.out
*.def
*.obj
*.iobj
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Logs
*.log
@ -23,6 +38,7 @@
.idea/
*.recipe
*.idb
*.iobj
# Visual Studio for Mac
.idea/

Binary file not shown.

Binary file not shown.

View File

@ -1,217 +0,0 @@
/*
WebUI Library 2.3.0
http://webui.me
https://github.com/webui-dev/webui
Copyright (c) 2020-2023 Hassan Draga.
Licensed under MIT License.
All rights reserved.
Canada.
*/
#ifndef _WEBUI_H
#define _WEBUI_H
#define WEBUI_VERSION "2.3.0"
#define WEBUI_MAX_IDS (512)
// Dynamic Library Exports
#if defined(_MSC_VER) || defined(__TINYC__)
#ifndef WEBUI_EXPORT
#define WEBUI_EXPORT __declspec(dllexport)
#endif
#else
#ifndef WEBUI_EXPORT
#define WEBUI_EXPORT extern
#endif
#endif
// -- C STD ---------------------------
#include <stdbool.h>
#include <inttypes.h>
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <stddef.h>
#include <time.h>
#include <errno.h>
#include <math.h>
#if defined(__GNUC__) || defined(__TINYC__)
#include <dirent.h>
#endif
// -- Windows -------------------------
#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <direct.h>
#include <io.h>
#include <tchar.h>
#include <tlhelp32.h>
#define WEBUI_GET_CURRENT_DIR _getcwd
#define WEBUI_FILE_EXIST _access
#define WEBUI_POPEN _popen
#define WEBUI_PCLOSE _pclose
#define WEBUI_MAX_PATH MAX_PATH
#endif
// -- Linux ---------------------------
#ifdef __linux__
#include <unistd.h>
#include <pthread.h>
#include <unistd.h>
#include <limits.h>
#include <dirent.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <poll.h>
#include <sys/time.h>
#include <signal.h>
#define WEBUI_GET_CURRENT_DIR getcwd
#define WEBUI_FILE_EXIST access
#define WEBUI_POPEN popen
#define WEBUI_PCLOSE pclose
#define WEBUI_MAX_PATH PATH_MAX
#endif
// -- Apple ---------------------------
#ifdef __APPLE__
#include <pthread.h>
#include <unistd.h>
#include <limits.h>
#include <dirent.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <poll.h>
#include <sys/syslimits.h>
#include <sys/time.h>
#include <sys/sysctl.h>
#include <signal.h>
#define WEBUI_GET_CURRENT_DIR getcwd
#define WEBUI_FILE_EXIST access
#define WEBUI_POPEN popen
#define WEBUI_PCLOSE pclose
#define WEBUI_MAX_PATH PATH_MAX
#endif
// -- Enums ---------------------------
enum webui_browsers {
AnyBrowser = 0, // 0. Default recommended web browser
Chrome, // 1. Google Chrome
Firefox, // 2. Mozilla Firefox
Edge, // 3. Microsoft Edge
Safari, // 4. Apple Safari
Chromium, // 5. The Chromium Project
Opera, // 6. Opera Browser
Brave, // 7. The Brave Browser
Vivaldi, // 8. The Vivaldi Browser
Epic, // 9. The Epic Browser
Yandex, // 10. The Yandex Browser
};
enum webui_runtimes {
None = 0, // 0. Prevent WebUI from using any runtime for .js and .ts files
Deno, // 1. Use Deno runtime for .js and .ts files
NodeJS, // 2. Use Nodejs runtime for .js files
};
enum webui_events {
WEBUI_EVENT_DISCONNECTED = 0, // 0. Window disconnection event
WEBUI_EVENT_CONNECTED, // 1. Window connection event
WEBUI_EVENT_MULTI_CONNECTION, // 2. New window connection event
WEBUI_EVENT_UNWANTED_CONNECTION, // 3. New unwanted window connection event
WEBUI_EVENT_MOUSE_CLICK, // 4. Mouse click event
WEBUI_EVENT_NAVIGATION, // 5. Window navigation event
WEBUI_EVENT_CALLBACK, // 6. Function call event
};
// -- Structs -------------------------
typedef struct webui_event_t {
size_t window; // The window object number
size_t event_type; // Event type
char* element; // HTML element ID
char* data; // JavaScript data
size_t event_number; // Internal WebUI
} webui_event_t;
// -- Definitions ---------------------
// Create a new webui window object.
WEBUI_EXPORT size_t webui_new_window(void);
// Create a new webui window object.
WEBUI_EXPORT void webui_new_window_id(size_t window_number);
// Get a free window ID that can be used with `webui_new_window_id()`
WEBUI_EXPORT size_t webui_get_new_window_id(void);
// Bind a specific html element click event with a function. Empty element means all events.
WEBUI_EXPORT size_t webui_bind(size_t window, const char* element, void (*func)(webui_event_t* e));
// Show a window using a embedded HTML, or a file. If the window is already opened then it will be refreshed.
WEBUI_EXPORT bool webui_show(size_t window, const char* content);
// Same as webui_show(). But with a specific web browser.
WEBUI_EXPORT bool webui_show_browser(size_t window, const char* content, size_t browser);
// Set the window in Kiosk mode (Full screen)
WEBUI_EXPORT void webui_set_kiosk(size_t window, bool status);
// Wait until all opened windows get closed.
WEBUI_EXPORT void webui_wait(void);
// Close a specific window only. The window object will still exist.
WEBUI_EXPORT void webui_close(size_t window);
// Close a specific window and free all memory resources.
WEBUI_EXPORT void webui_destroy(size_t window);
// Close all opened windows. webui_wait() will break.
WEBUI_EXPORT void webui_exit(void);
// Set the web-server root folder path.
WEBUI_EXPORT bool webui_set_root_folder(size_t window, const char* path);
// -- Other ---------------------------
// Check a specific window if it's still running
WEBUI_EXPORT bool webui_is_shown(size_t window);
// Set the maximum time in seconds to wait for browser to start
WEBUI_EXPORT void webui_set_timeout(size_t second);
// Set the default embedded HTML favicon
WEBUI_EXPORT void webui_set_icon(size_t window, const char* icon, const char* icon_type);
// Allow the window URL to be re-used in normal web browsers
WEBUI_EXPORT void webui_set_multi_access(size_t window, bool status);
// -- JavaScript ----------------------
// Run JavaScript quickly with no waiting for the response.
WEBUI_EXPORT void webui_run(size_t window, const char* script);
// Run a JavaScript, and get the response back (Make sure your local buffer can hold the response).
WEBUI_EXPORT bool webui_script(size_t window, const char* script, size_t timeout, char* buffer, size_t buffer_length);
// Chose between Deno and Nodejs runtime for .js and .ts files.
WEBUI_EXPORT void webui_set_runtime(size_t window, size_t runtime);
// Parse argument as integer.
WEBUI_EXPORT long long int webui_get_int(webui_event_t* e);
// Parse argument as string.
WEBUI_EXPORT const char* webui_get_string(webui_event_t* e);
// Parse argument as boolean.
WEBUI_EXPORT bool webui_get_bool(webui_event_t* e);
// Return the response to JavaScript as integer.
WEBUI_EXPORT void webui_return_int(webui_event_t* e, long long int n);
// Return the response to JavaScript as string.
WEBUI_EXPORT void webui_return_string(webui_event_t* e, const char* s);
// Return the response to JavaScript as boolean.
WEBUI_EXPORT void webui_return_bool(webui_event_t* e, bool b);
// Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL.
WEBUI_EXPORT char* webui_encode(const char* str);
// Base64 decoding. Use this to safely decode received Base64 text from the UI. If it fails it will return NULL.
WEBUI_EXPORT char* webui_decode(const char* str);
// Safely free a buffer allocated by WebUI, for example when using webui_encode().
WEBUI_EXPORT void webui_free(void* ptr);
// -- Interface -----------------------
// Bind a specific html element click event with a function. Empty element means all events. This replace webui_bind(). The func is (Window, EventType, Element, Data, EventNumber)
WEBUI_EXPORT size_t webui_interface_bind(size_t window, const char* element, void (*func)(size_t, size_t, char*, char*, size_t));
// When using `webui_interface_bind()` you may need this function to easily set your callback response.
WEBUI_EXPORT void webui_interface_set_response(size_t window, size_t event_number, const char* response);
// Check if the app still running or not. This replace webui_wait().
WEBUI_EXPORT bool webui_interface_is_app_running(void);
// Get window unique ID
WEBUI_EXPORT size_t webui_interface_get_window_id(size_t window);
// Get a unique ID. Same ID as `webui_bind()`. Return > 0 if bind exist.
WEBUI_EXPORT size_t webui_interface_get_bind_id(size_t window, const char* element);
#endif /* _WEBUI_H */

View File

@ -1,249 +0,0 @@
/*
WebUI Library 2.3.0
http://webui.me
https://github.com/webui-dev/webui
Copyright (c) 2020-2023 Hassan Draga.
Licensed under MIT License.
All rights reserved.
Canada.
*/
#ifndef _WEBUI_HPP
#define _WEBUI_HPP
// C++ STD
#include <string>
#include <string_view>
#include <array>
// WebUI C Header
extern "C" {
#include "webui.h"
}
namespace webui {
static constexpr int DISCONNECTED = 0; // 0. Window disconnection event
static constexpr int CONNECTED = 1; // 1. Window connection event
static constexpr int MULTI_CONNECTION = 2; // 2. New window connection event
static constexpr int UNWANTED_CONNECTION = 3; // 3. New unwanted window connection event
static constexpr int MOUSE_CLICK = 4; // 4. Mouse click event
static constexpr int NAVIGATION = 5; // 5. Window navigation event
static constexpr int CALLBACKS = 6; // 6. Function call event
class window {
private:
size_t webui_window {
webui_new_window()
};
public:
// Event Struct
class event : public webui_event_t {
// Window object constructor that
// initializes the reference, This
// is to avoid creating copies.
event(webui::window& window_obj, webui_event_t c_e) : webui_event_t(c_e) {
reinterpret_cast<webui_event_t*>(this)->window = window_obj.webui_window;
}
public:
class handler {
public:
using callback_t = void(*)(event*);
private:
static inline std::array<callback_t, 512> callback_list{};
// List of window objects: webui::window
static inline std::array<webui::window*, 512> window_list{};
public:
handler() = delete;
handler(const handler&) = delete;
handler(handler&&) = delete;
handler& operator = (const handler&) = delete;
handler& operator = (handler&&) = delete;
~handler() = delete;
static void add(size_t id, webui::window* win, callback_t func) {
window_list[id] = win;
// Save callback
callback_list[id] = func;
}
static void handle(webui_event_t* c_e) {
// Get a unique ID. Same ID as `webui_bind()`. Return > 0 if bind exist.
const size_t id = webui_interface_get_bind_id(c_e->window, c_e->element);
if(id < 1){
return;
}
// Create a new event struct
event e(*window_list[id], *c_e);
// Call the user callback
if(callback_list[id] != nullptr)
callback_list[id](&e);
}
static webui::window& get_window(const size_t index){
return *window_list[index];
}
};
// Parse argument as integer.
long long int get_int() {
return webui_get_int(this);
}
// Parse argument as string.
std::string get_string() {
return std::string{webui_get_string(this)};
}
std::string_view get_string_view() {
return std::string_view{webui_get_string(this)};
}
// Parse argument as boolean.
bool get_bool() {
return webui_get_bool(this);
}
// Return the response to JavaScript as integer.
void return_int(long long int n) {
webui_return_int(this, n);
}
// Return the response to JavaScript as string.
void return_string(const std::string_view s) {
webui_return_string(this, s.data());
}
// Return the response to JavaScript as boolean.
void return_bool(bool b) {
webui_return_bool(this, b);
}
webui::window& get_window(){
return event::handler::get_window(window);
}
size_t get_type() const {
return event_type;
}
std::string_view get_element() const {
return std::string_view{element};
}
std::string_view get_data() const {
return std::string_view{data};
}
size_t number() const {
return event_number;
}
};
// Bind a specific html element click event with a function. Empty element means all events.
void bind(const std::string_view element, event::handler::callback_t func) {
// Get unique ID
const size_t id = webui_bind(webui_window, element.data(), event::handler::handle);
event::handler::add(id, this, func);
}
// Show a window using a embedded HTML, or a file. If the window is already opened then it will be refreshed.
bool show(const std::string_view content) const {
return webui_show(webui_window, content.data());
}
// Same as show(). But with a specific web browser.
bool show_browser(const std::string_view content, unsigned int browser) const {
return webui_show_browser(webui_window, content.data(), browser);
}
// Close a specific window.
void close() const {
webui_close(webui_window);
}
// Set the window in Kiosk mode (Full screen)
void set_kiosk(bool status) const {
webui_set_kiosk(webui_window, status);
}
// -- Other ---------------------------
// Check a specific window if it's still running
bool is_shown() const {
return webui_is_shown(webui_window);
}
// Set the default embedded HTML favicon
void set_icon(const std::string_view icon, const std::string_view icon_type) const {
webui_set_icon(webui_window, icon.data(), icon_type.data());
}
// Allow the window URL to be re-used in normal web browsers
void set_multi_access(bool status) const {
webui_set_multi_access(webui_window, status);
}
// -- JavaScript ----------------------
// Quickly run a JavaScript (no response waiting).
void run(const std::string_view script) const {
webui_run(webui_window, script.data());
}
// Run a JavaScript, and get the response back (Make sure your local buffer can hold the response).
bool script(const std::string_view script, unsigned int timeout, char* buffer, size_t buffer_length) const {
return webui_script(webui_window, script.data(), timeout, buffer, buffer_length);
}
// Chose between Deno and Nodejs runtime for .js and .ts files.
void set_runtime(unsigned int runtime) const {
webui_set_runtime(webui_window, runtime);
}
};
// Wait until all opened windows get closed.
inline void wait() {
webui_wait();
}
// Close all opened windows. wait() will break.
inline void exit() {
webui_exit();
}
// Set the maximum time in seconds to wait for browser to start
inline void set_timeout(unsigned int second) {
webui_set_timeout(second);
}
// Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL.
inline std::string encode(const std::string_view str) {
return std::string{webui_encode(str.data())};
}
// Base64 decoding. Use this to safely decode received Base64 text from the UI. If it fails it will return NULL.
inline std::string decode(const std::string_view str) {
return std::string{webui_decode(str.data())};
}
// Safely free a buffer allocated by WebUI, for example when using webui_encode().
inline void free(void* ptr) {
webui_free(ptr);
}
}
#endif /* _WEBUI_HPP */

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,221 +0,0 @@
/*
WebUI Library 2.3.0
http://webui.me
https://github.com/webui-dev/webui
Copyright (c) 2020-2023 Hassan Draga.
Licensed under MIT License.
All rights reserved.
Canada.
*/
#ifndef _WEBUI_H
#define _WEBUI_H
#define WEBUI_VERSION "2.3.0"
#define WEBUI_MAX_IDS (512)
// Dynamic Library Exports
#if defined(_MSC_VER) || defined(__TINYC__)
#ifndef WEBUI_EXPORT
#define WEBUI_EXPORT __declspec(dllexport)
#endif
#else
#ifndef WEBUI_EXPORT
#define WEBUI_EXPORT extern
#endif
#endif
// -- C STD ---------------------------
#include <stdbool.h>
#include <inttypes.h>
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <stddef.h>
#include <time.h>
#include <errno.h>
#include <math.h>
#if defined(__GNUC__) || defined(__TINYC__)
#include <dirent.h>
#endif
// -- Windows -------------------------
#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <direct.h>
#include <io.h>
#include <tchar.h>
#include <tlhelp32.h>
#define WEBUI_GET_CURRENT_DIR _getcwd
#define WEBUI_FILE_EXIST _access
#define WEBUI_POPEN _popen
#define WEBUI_PCLOSE _pclose
#define WEBUI_MAX_PATH MAX_PATH
#endif
// -- Linux ---------------------------
#ifdef __linux__
#include <unistd.h>
#include <pthread.h>
#include <unistd.h>
#include <limits.h>
#include <dirent.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <poll.h>
#include <sys/time.h>
#include <signal.h>
#define WEBUI_GET_CURRENT_DIR getcwd
#define WEBUI_FILE_EXIST access
#define WEBUI_POPEN popen
#define WEBUI_PCLOSE pclose
#define WEBUI_MAX_PATH PATH_MAX
#endif
// -- Apple ---------------------------
#ifdef __APPLE__
#include <pthread.h>
#include <unistd.h>
#include <limits.h>
#include <dirent.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <poll.h>
#include <sys/syslimits.h>
#include <sys/time.h>
#include <sys/sysctl.h>
#include <signal.h>
#define WEBUI_GET_CURRENT_DIR getcwd
#define WEBUI_FILE_EXIST access
#define WEBUI_POPEN popen
#define WEBUI_PCLOSE pclose
#define WEBUI_MAX_PATH PATH_MAX
#endif
// -- Enums ---------------------------
enum webui_browsers {
AnyBrowser = 0, // 0. Default recommended web browser
Chrome, // 1. Google Chrome
Firefox, // 2. Mozilla Firefox
Edge, // 3. Microsoft Edge
Safari, // 4. Apple Safari
Chromium, // 5. The Chromium Project
Opera, // 6. Opera Browser
Brave, // 7. The Brave Browser
Vivaldi, // 8. The Vivaldi Browser
Epic, // 9. The Epic Browser
Yandex, // 10. The Yandex Browser
};
enum webui_runtimes {
None = 0, // 0. Prevent WebUI from using any runtime for .js and .ts files
Deno, // 1. Use Deno runtime for .js and .ts files
NodeJS, // 2. Use Nodejs runtime for .js files
};
enum webui_events {
WEBUI_EVENT_DISCONNECTED = 0, // 0. Window disconnection event
WEBUI_EVENT_CONNECTED, // 1. Window connection event
WEBUI_EVENT_MULTI_CONNECTION, // 2. New window connection event
WEBUI_EVENT_UNWANTED_CONNECTION, // 3. New unwanted window connection event
WEBUI_EVENT_MOUSE_CLICK, // 4. Mouse click event
WEBUI_EVENT_NAVIGATION, // 5. Window navigation event
WEBUI_EVENT_CALLBACK, // 6. Function call event
};
// -- Structs -------------------------
typedef struct webui_event_t {
size_t window; // The window object number
size_t event_type; // Event type
char* element; // HTML element ID
char* data; // JavaScript data
size_t event_number; // Internal WebUI
} webui_event_t;
// -- Definitions ---------------------
// Create a new webui window object.
WEBUI_EXPORT size_t webui_new_window(void);
// Create a new webui window object.
WEBUI_EXPORT void webui_new_window_id(size_t window_number);
// Get a free window ID that can be used with `webui_new_window_id()`
WEBUI_EXPORT size_t webui_get_new_window_id(void);
// Bind a specific html element click event with a function. Empty element means all events.
WEBUI_EXPORT size_t webui_bind(size_t window, const char* element, void (*func)(webui_event_t* e));
// Show a window using a embedded HTML, or a file. If the window is already opened then it will be refreshed.
WEBUI_EXPORT bool webui_show(size_t window, const char* content);
// Same as webui_show(). But with a specific web browser.
WEBUI_EXPORT bool webui_show_browser(size_t window, const char* content, size_t browser);
// Set the window in Kiosk mode (Full screen)
WEBUI_EXPORT void webui_set_kiosk(size_t window, bool status);
// Wait until all opened windows get closed.
WEBUI_EXPORT void webui_wait(void);
// Close a specific window only. The window object will still exist.
WEBUI_EXPORT void webui_close(size_t window);
// Close a specific window and free all memory resources.
WEBUI_EXPORT void webui_destroy(size_t window);
// Close all opened windows. webui_wait() will break.
WEBUI_EXPORT void webui_exit(void);
// Set the web-server root folder path.
WEBUI_EXPORT bool webui_set_root_folder(size_t window, const char* path);
// Set a custom handler to serve files
WEBUI_EXPORT void webui_set_file_handler(size_t window, const void* (*handler)(const char* filename, int* length));
// -- Other ---------------------------
// Check a specific window if it's still running
WEBUI_EXPORT bool webui_is_shown(size_t window);
// Set the maximum time in seconds to wait for browser to start
WEBUI_EXPORT void webui_set_timeout(size_t second);
// Set the default embedded HTML favicon
WEBUI_EXPORT void webui_set_icon(size_t window, const char* icon, const char* icon_type);
// Allow the window URL to be re-used in normal web browsers
WEBUI_EXPORT void webui_set_multi_access(size_t window, bool status);
// -- JavaScript ----------------------
// Run JavaScript quickly with no waiting for the response.
WEBUI_EXPORT void webui_run(size_t window, const char* script);
// Run a JavaScript, and get the response back (Make sure your local buffer can hold the response).
WEBUI_EXPORT bool webui_script(size_t window, const char* script, size_t timeout, char* buffer, size_t buffer_length);
// Chose between Deno and Nodejs runtime for .js and .ts files.
WEBUI_EXPORT void webui_set_runtime(size_t window, size_t runtime);
// Parse argument as integer.
WEBUI_EXPORT long long int webui_get_int(webui_event_t* e);
// Parse argument as string.
WEBUI_EXPORT const char* webui_get_string(webui_event_t* e);
// Parse argument as boolean.
WEBUI_EXPORT bool webui_get_bool(webui_event_t* e);
// Return the response to JavaScript as integer.
WEBUI_EXPORT void webui_return_int(webui_event_t* e, long long int n);
// Return the response to JavaScript as string.
WEBUI_EXPORT void webui_return_string(webui_event_t* e, const char* s);
// Return the response to JavaScript as boolean.
WEBUI_EXPORT void webui_return_bool(webui_event_t* e, bool b);
// Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL.
WEBUI_EXPORT char* webui_encode(const char* str);
// Base64 decoding. Use this to safely decode received Base64 text from the UI. If it fails it will return NULL.
WEBUI_EXPORT char* webui_decode(const char* str);
// Safely free a buffer allocated by WebUI, for example when using webui_encode().
WEBUI_EXPORT void webui_free(void* ptr);
// Safely allocate memory using the WebUI memory management system. It can be safely free using webui_free().
WEBUI_EXPORT void* webui_malloc(size_t size);
// -- Interface -----------------------
// Bind a specific html element click event with a function. Empty element means all events. This replace webui_bind(). The func is (Window, EventType, Element, Data, EventNumber)
WEBUI_EXPORT size_t webui_interface_bind(size_t window, const char* element, void (*func)(size_t, size_t, char*, char*, size_t));
// When using `webui_interface_bind()` you may need this function to easily set your callback response.
WEBUI_EXPORT void webui_interface_set_response(size_t window, size_t event_number, const char* response);
// Check if the app still running or not. This replace webui_wait().
WEBUI_EXPORT bool webui_interface_is_app_running(void);
// Get window unique ID
WEBUI_EXPORT size_t webui_interface_get_window_id(size_t window);
// Get a unique ID. Same ID as `webui_bind()`. Return > 0 if bind exist.
WEBUI_EXPORT size_t webui_interface_get_bind_id(size_t window, const char* element);
#endif /* _WEBUI_H */

Binary file not shown.

View File

@ -1,217 +0,0 @@
/*
WebUI Library 2.3.0
http://webui.me
https://github.com/webui-dev/webui
Copyright (c) 2020-2023 Hassan Draga.
Licensed under MIT License.
All rights reserved.
Canada.
*/
#ifndef _WEBUI_H
#define _WEBUI_H
#define WEBUI_VERSION "2.3.0"
#define WEBUI_MAX_IDS (512)
// Dynamic Library Exports
#if defined(_MSC_VER) || defined(__TINYC__)
#ifndef WEBUI_EXPORT
#define WEBUI_EXPORT __declspec(dllexport)
#endif
#else
#ifndef WEBUI_EXPORT
#define WEBUI_EXPORT extern
#endif
#endif
// -- C STD ---------------------------
#include <stdbool.h>
#include <inttypes.h>
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <stddef.h>
#include <time.h>
#include <errno.h>
#include <math.h>
#if defined(__GNUC__) || defined(__TINYC__)
#include <dirent.h>
#endif
// -- Windows -------------------------
#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <direct.h>
#include <io.h>
#include <tchar.h>
#include <tlhelp32.h>
#define WEBUI_GET_CURRENT_DIR _getcwd
#define WEBUI_FILE_EXIST _access
#define WEBUI_POPEN _popen
#define WEBUI_PCLOSE _pclose
#define WEBUI_MAX_PATH MAX_PATH
#endif
// -- Linux ---------------------------
#ifdef __linux__
#include <unistd.h>
#include <pthread.h>
#include <unistd.h>
#include <limits.h>
#include <dirent.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <poll.h>
#include <sys/time.h>
#include <signal.h>
#define WEBUI_GET_CURRENT_DIR getcwd
#define WEBUI_FILE_EXIST access
#define WEBUI_POPEN popen
#define WEBUI_PCLOSE pclose
#define WEBUI_MAX_PATH PATH_MAX
#endif
// -- Apple ---------------------------
#ifdef __APPLE__
#include <pthread.h>
#include <unistd.h>
#include <limits.h>
#include <dirent.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <poll.h>
#include <sys/syslimits.h>
#include <sys/time.h>
#include <sys/sysctl.h>
#include <signal.h>
#define WEBUI_GET_CURRENT_DIR getcwd
#define WEBUI_FILE_EXIST access
#define WEBUI_POPEN popen
#define WEBUI_PCLOSE pclose
#define WEBUI_MAX_PATH PATH_MAX
#endif
// -- Enums ---------------------------
enum webui_browsers {
AnyBrowser = 0, // 0. Default recommended web browser
Chrome, // 1. Google Chrome
Firefox, // 2. Mozilla Firefox
Edge, // 3. Microsoft Edge
Safari, // 4. Apple Safari
Chromium, // 5. The Chromium Project
Opera, // 6. Opera Browser
Brave, // 7. The Brave Browser
Vivaldi, // 8. The Vivaldi Browser
Epic, // 9. The Epic Browser
Yandex, // 10. The Yandex Browser
};
enum webui_runtimes {
None = 0, // 0. Prevent WebUI from using any runtime for .js and .ts files
Deno, // 1. Use Deno runtime for .js and .ts files
NodeJS, // 2. Use Nodejs runtime for .js files
};
enum webui_events {
WEBUI_EVENT_DISCONNECTED = 0, // 0. Window disconnection event
WEBUI_EVENT_CONNECTED, // 1. Window connection event
WEBUI_EVENT_MULTI_CONNECTION, // 2. New window connection event
WEBUI_EVENT_UNWANTED_CONNECTION, // 3. New unwanted window connection event
WEBUI_EVENT_MOUSE_CLICK, // 4. Mouse click event
WEBUI_EVENT_NAVIGATION, // 5. Window navigation event
WEBUI_EVENT_CALLBACK, // 6. Function call event
};
// -- Structs -------------------------
typedef struct webui_event_t {
size_t window; // The window object number
size_t event_type; // Event type
char* element; // HTML element ID
char* data; // JavaScript data
size_t event_number; // Internal WebUI
} webui_event_t;
// -- Definitions ---------------------
// Create a new webui window object.
WEBUI_EXPORT size_t webui_new_window(void);
// Create a new webui window object.
WEBUI_EXPORT void webui_new_window_id(size_t window_number);
// Get a free window ID that can be used with `webui_new_window_id()`
WEBUI_EXPORT size_t webui_get_new_window_id(void);
// Bind a specific html element click event with a function. Empty element means all events.
WEBUI_EXPORT size_t webui_bind(size_t window, const char* element, void (*func)(webui_event_t* e));
// Show a window using a embedded HTML, or a file. If the window is already opened then it will be refreshed.
WEBUI_EXPORT bool webui_show(size_t window, const char* content);
// Same as webui_show(). But with a specific web browser.
WEBUI_EXPORT bool webui_show_browser(size_t window, const char* content, size_t browser);
// Set the window in Kiosk mode (Full screen)
WEBUI_EXPORT void webui_set_kiosk(size_t window, bool status);
// Wait until all opened windows get closed.
WEBUI_EXPORT void webui_wait(void);
// Close a specific window only. The window object will still exist.
WEBUI_EXPORT void webui_close(size_t window);
// Close a specific window and free all memory resources.
WEBUI_EXPORT void webui_destroy(size_t window);
// Close all opened windows. webui_wait() will break.
WEBUI_EXPORT void webui_exit(void);
// Set the web-server root folder path.
WEBUI_EXPORT bool webui_set_root_folder(size_t window, const char* path);
// -- Other ---------------------------
// Check a specific window if it's still running
WEBUI_EXPORT bool webui_is_shown(size_t window);
// Set the maximum time in seconds to wait for browser to start
WEBUI_EXPORT void webui_set_timeout(size_t second);
// Set the default embedded HTML favicon
WEBUI_EXPORT void webui_set_icon(size_t window, const char* icon, const char* icon_type);
// Allow the window URL to be re-used in normal web browsers
WEBUI_EXPORT void webui_set_multi_access(size_t window, bool status);
// -- JavaScript ----------------------
// Run JavaScript quickly with no waiting for the response.
WEBUI_EXPORT void webui_run(size_t window, const char* script);
// Run a JavaScript, and get the response back (Make sure your local buffer can hold the response).
WEBUI_EXPORT bool webui_script(size_t window, const char* script, size_t timeout, char* buffer, size_t buffer_length);
// Chose between Deno and Nodejs runtime for .js and .ts files.
WEBUI_EXPORT void webui_set_runtime(size_t window, size_t runtime);
// Parse argument as integer.
WEBUI_EXPORT long long int webui_get_int(webui_event_t* e);
// Parse argument as string.
WEBUI_EXPORT const char* webui_get_string(webui_event_t* e);
// Parse argument as boolean.
WEBUI_EXPORT bool webui_get_bool(webui_event_t* e);
// Return the response to JavaScript as integer.
WEBUI_EXPORT void webui_return_int(webui_event_t* e, long long int n);
// Return the response to JavaScript as string.
WEBUI_EXPORT void webui_return_string(webui_event_t* e, const char* s);
// Return the response to JavaScript as boolean.
WEBUI_EXPORT void webui_return_bool(webui_event_t* e, bool b);
// Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL.
WEBUI_EXPORT char* webui_encode(const char* str);
// Base64 decoding. Use this to safely decode received Base64 text from the UI. If it fails it will return NULL.
WEBUI_EXPORT char* webui_decode(const char* str);
// Safely free a buffer allocated by WebUI, for example when using webui_encode().
WEBUI_EXPORT void webui_free(void* ptr);
// -- Interface -----------------------
// Bind a specific html element click event with a function. Empty element means all events. This replace webui_bind(). The func is (Window, EventType, Element, Data, EventNumber)
WEBUI_EXPORT size_t webui_interface_bind(size_t window, const char* element, void (*func)(size_t, size_t, char*, char*, size_t));
// When using `webui_interface_bind()` you may need this function to easily set your callback response.
WEBUI_EXPORT void webui_interface_set_response(size_t window, size_t event_number, const char* response);
// Check if the app still running or not. This replace webui_wait().
WEBUI_EXPORT bool webui_interface_is_app_running(void);
// Get window unique ID
WEBUI_EXPORT size_t webui_interface_get_window_id(size_t window);
// Get a unique ID. Same ID as `webui_bind()`. Return > 0 if bind exist.
WEBUI_EXPORT size_t webui_interface_get_bind_id(size_t window, const char* element);
#endif /* _WEBUI_H */

View File

@ -1,249 +0,0 @@
/*
WebUI Library 2.3.0
http://webui.me
https://github.com/webui-dev/webui
Copyright (c) 2020-2023 Hassan Draga.
Licensed under MIT License.
All rights reserved.
Canada.
*/
#ifndef _WEBUI_HPP
#define _WEBUI_HPP
// C++ STD
#include <string>
#include <string_view>
#include <array>
// WebUI C Header
extern "C" {
#include "webui.h"
}
namespace webui {
static constexpr int DISCONNECTED = 0; // 0. Window disconnection event
static constexpr int CONNECTED = 1; // 1. Window connection event
static constexpr int MULTI_CONNECTION = 2; // 2. New window connection event
static constexpr int UNWANTED_CONNECTION = 3; // 3. New unwanted window connection event
static constexpr int MOUSE_CLICK = 4; // 4. Mouse click event
static constexpr int NAVIGATION = 5; // 5. Window navigation event
static constexpr int CALLBACKS = 6; // 6. Function call event
class window {
private:
size_t webui_window {
webui_new_window()
};
public:
// Event Struct
class event : public webui_event_t {
// Window object constructor that
// initializes the reference, This
// is to avoid creating copies.
event(webui::window& window_obj, webui_event_t c_e) : webui_event_t(c_e) {
reinterpret_cast<webui_event_t*>(this)->window = window_obj.webui_window;
}
public:
class handler {
public:
using callback_t = void(*)(event*);
private:
static inline std::array<callback_t, 512> callback_list{};
// List of window objects: webui::window
static inline std::array<webui::window*, 512> window_list{};
public:
handler() = delete;
handler(const handler&) = delete;
handler(handler&&) = delete;
handler& operator = (const handler&) = delete;
handler& operator = (handler&&) = delete;
~handler() = delete;
static void add(size_t id, webui::window* win, callback_t func) {
window_list[id] = win;
// Save callback
callback_list[id] = func;
}
static void handle(webui_event_t* c_e) {
// Get a unique ID. Same ID as `webui_bind()`. Return > 0 if bind exist.
const size_t id = webui_interface_get_bind_id(c_e->window, c_e->element);
if(id < 1){
return;
}
// Create a new event struct
event e(*window_list[id], *c_e);
// Call the user callback
if(callback_list[id] != nullptr)
callback_list[id](&e);
}
static webui::window& get_window(const size_t index){
return *window_list[index];
}
};
// Parse argument as integer.
long long int get_int() {
return webui_get_int(this);
}
// Parse argument as string.
std::string get_string() {
return std::string{webui_get_string(this)};
}
std::string_view get_string_view() {
return std::string_view{webui_get_string(this)};
}
// Parse argument as boolean.
bool get_bool() {
return webui_get_bool(this);
}
// Return the response to JavaScript as integer.
void return_int(long long int n) {
webui_return_int(this, n);
}
// Return the response to JavaScript as string.
void return_string(const std::string_view s) {
webui_return_string(this, s.data());
}
// Return the response to JavaScript as boolean.
void return_bool(bool b) {
webui_return_bool(this, b);
}
webui::window& get_window(){
return event::handler::get_window(window);
}
size_t get_type() const {
return event_type;
}
std::string_view get_element() const {
return std::string_view{element};
}
std::string_view get_data() const {
return std::string_view{data};
}
size_t number() const {
return event_number;
}
};
// Bind a specific html element click event with a function. Empty element means all events.
void bind(const std::string_view element, event::handler::callback_t func) {
// Get unique ID
const size_t id = webui_bind(webui_window, element.data(), event::handler::handle);
event::handler::add(id, this, func);
}
// Show a window using a embedded HTML, or a file. If the window is already opened then it will be refreshed.
bool show(const std::string_view content) const {
return webui_show(webui_window, content.data());
}
// Same as show(). But with a specific web browser.
bool show_browser(const std::string_view content, unsigned int browser) const {
return webui_show_browser(webui_window, content.data(), browser);
}
// Close a specific window.
void close() const {
webui_close(webui_window);
}
// Set the window in Kiosk mode (Full screen)
void set_kiosk(bool status) const {
webui_set_kiosk(webui_window, status);
}
// -- Other ---------------------------
// Check a specific window if it's still running
bool is_shown() const {
return webui_is_shown(webui_window);
}
// Set the default embedded HTML favicon
void set_icon(const std::string_view icon, const std::string_view icon_type) const {
webui_set_icon(webui_window, icon.data(), icon_type.data());
}
// Allow the window URL to be re-used in normal web browsers
void set_multi_access(bool status) const {
webui_set_multi_access(webui_window, status);
}
// -- JavaScript ----------------------
// Quickly run a JavaScript (no response waiting).
void run(const std::string_view script) const {
webui_run(webui_window, script.data());
}
// Run a JavaScript, and get the response back (Make sure your local buffer can hold the response).
bool script(const std::string_view script, unsigned int timeout, char* buffer, size_t buffer_length) const {
return webui_script(webui_window, script.data(), timeout, buffer, buffer_length);
}
// Chose between Deno and Nodejs runtime for .js and .ts files.
void set_runtime(unsigned int runtime) const {
webui_set_runtime(webui_window, runtime);
}
};
// Wait until all opened windows get closed.
inline void wait() {
webui_wait();
}
// Close all opened windows. wait() will break.
inline void exit() {
webui_exit();
}
// Set the maximum time in seconds to wait for browser to start
inline void set_timeout(unsigned int second) {
webui_set_timeout(second);
}
// Base64 encoding. Use this to safely send text based data to the UI. If it fails it will return NULL.
inline std::string encode(const std::string_view str) {
return std::string{webui_encode(str.data())};
}
// Base64 decoding. Use this to safely decode received Base64 text from the UI. If it fails it will return NULL.
inline std::string decode(const std::string_view str) {
return std::string{webui_decode(str.data())};
}
// Safely free a buffer allocated by WebUI, for example when using webui_encode().
inline void free(void* ptr) {
webui_free(ptr);
}
}
#endif /* _WEBUI_HPP */

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

46
build/linux_build.sh Normal file → Executable file
View File

@ -16,7 +16,9 @@ echo "WebUI v$WEBUI_VERSION Build Script"
echo "Platform: Linux x64"
echo "Compiler: GCC and Clang"
RootPath="$PWD/../"
RootPath="$PWD/.."
BuildPath="$RootPath/build/Linux"
DistPath="$RootPath/dist/Linux"
cd "$RootPath"
echo "";
@ -25,11 +27,9 @@ echo "";
# Transpiling TS to JS
echo "Transpile and bundle TS sources to webui.js";
cd "%RootPath%"
esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./src/client ./src/client/webui.ts
# Converting JS source to C-String using xxd
cd "$RootPath"
cd "src"
xxd -i client/webui.js client/webui.h
@ -38,8 +38,7 @@ echo "Building WebUI using GCC...";
echo "";
# Build WebUI Library using GCC
cd "$RootPath"
cd "build/Linux/GCC"
cd "$BuildPath/GCC"
$GCC_CMD
echo "";
@ -47,8 +46,7 @@ echo "Building WebUI using Clang...";
echo "";
# Build WebUI Library using Clang
cd "$RootPath"
cd "build/Linux/Clang"
cd "$BuildPath/Clang"
$CLANG_CMD
echo "";
@ -59,32 +57,40 @@ cd "$RootPath"
# C - Text Editor
cp -f "include/webui.h" "examples/C/text-editor/webui.h"
cp -f "build/Linux/GCC/webui-2-x64.so" "examples/C/text-editor/webui-2-x64.so"
cp -f "$BuildPath/GCC/webui-2-x64.so" "examples/C/text-editor/webui-2-x64.so"
echo "";
if [ "$ARG1" = "" ]; then
echo "Copying WebUI libs to the release folder..."
echo "Copying WebUI libs to $DistPath..."
echo "";
# Release Linux Include
cp -f "include/webui.h" "Release/Linux/include/webui.h"
cp -f "include/webui.hpp" "Release/Linux/include/webui.hpp"
# Remove Linux distributable files directory if it exits
[ -d "$DistPath" ] && rm -r "$DistPath"
# Release Linux GCC
cp -f "build/Linux/GCC/webui-2-x64.so" "Release/Linux/GCC/webui-2-x64.so"
cp -f "build/Linux/GCC/libwebui-2-static-x64.a" "Release/Linux/GCC/libwebui-2-static-x64.a"
# Create Linux output directories
mkdir -p "$DistPath/include"
mkdir "$DistPath/GCC"
mkdir "$DistPath/Clang"
# Release Linux Clang
cp -f "build/Linux/Clang/webui-2-x64.so" "Release/Linux/Clang/webui-2-x64.so"
cp -f "build/Linux/Clang/libwebui-2-static-x64.a" "Release/Linux/Clang/libwebui-2-static-x64.a"
# Copy include files
cp "include/webui.h" "$DistPath/include/webui.h"
cp "include/webui.hpp" "$DistPath/include/webui.hpp"
# Copy Linux GCC
cp "$BuildPath/GCC/webui-2-x64.so" "$DistPath/GCC/webui-2-x64.so"
cp "$BuildPath/GCC/libwebui-2-static-x64.a" "$DistPath/GCC/libwebui-2-static-x64.a"
# Copy Linux Clang
cp "$BuildPath/Clang/webui-2-x64.so" "$DistPath/Clang/webui-2-x64.so"
cp "$BuildPath/Clang/libwebui-2-static-x64.a" "$DistPath/Clang/libwebui-2-static-x64.a"
echo "";
echo "Compressing the release folder..."
echo "Compressing distributable files..."
echo "";
TAR_OUT="webui-linux-x64-v$WEBUI_VERSION.tar.gz"
cd "Release"
cd "dist"
sleep 2
tar -czf $TAR_OUT Linux/*
cd "$RootPath"

Binary file not shown.

View File

@ -16,32 +16,31 @@ echo "WebUI v$WEBUI_VERSION Build Script"
echo "Platform: macOS x64"
echo "Compiler: Clang"
RootPath="$PWD/../"
RootPath="$PWD/.."
BuildPath="$RootPath/build/macOS"
DistPath="$RootPath/dist/macOS"
cd "$RootPath"
echo "";
echo "Building WebUI using Clang...";
echo "";
# Build WebUI Library using Clang
cd "$RootPath"
cd "build/macOS/Clang"
$CLANG_CMD
echo "";
echo "Converting JS source to C-String using xxd"
echo "";
# Transpiling TS to JS
echo "Transpile and bundle TS sources to webui.js";
cd "$RootPath"
esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./src/client ./src/client/webui.ts
# Converting JS source to C-String using xxd
cd "$RootPath"
cd "src"
xxd -i client/webui.js client/webui.h
echo "";
echo "Building WebUI using Clang...";
echo "";
# Build WebUI Library using Clang
cd "$BuildPath/Clang"
$CLANG_CMD
echo "";
echo "Copying WebUI libs to the examples folder..."
echo "";
@ -55,23 +54,30 @@ cp -f "build/macOS/Clang/webui-2-x64.dyn" "examples/C/text-editor/webui-2-x64.dy
echo "";
if [ "$ARG1" = "" ]; then
echo "Copying WebUI libs to the release folder..."
echo "Copying WebUI libs to $DistPath..."
echo "";
# Release macOS Include
cp -f "include/webui.h" "Release/macOS/include/webui.h"
cp -f "include/webui.hpp" "Release/macOS/include/webui.hpp"
# Remove macOS distributable files directory if it exits
[ -d "$DistPath" ] && rm -r "$DistPath"
# Release macOS Clang
cp -f "build/macOS/Clang/webui-2-x64.dyn" "Release/macOS/Clang/webui-2-x64.dyn"
cp -f "build/macOS/Clang/libwebui-2-static-x64.a" "Release/macOS/Clang/libwebui-2-static-x64.a"
# Create macOS output directories
mkdir -p "$DistPath/include"
mkdir "$DistPath/Clang"
# Copy include files
cp "include/webui.h" "$DistPath/include/webui.h"
cp "include/webui.hpp" "$DistPath/include/webui.hpp"
# Copy macOS Clang
cp "$BuildPath/Clang/webui-2-x64.dyn" "$DistPath/Clang/webui-2-x64.dyn"
cp "$BuildPath/Clang/libwebui-2-static-x64.a" "$DistPath/Clang/libwebui-2-static-x64.a"
echo "";
echo "Compressing the release folder..."
echo "";
TAR_OUT="webui-macos-x64-v$WEBUI_VERSION.tar.gz"
cd "Release"
cd "dist"
sleep 2
tar -czf $TAR_OUT macOS/*
cd "$RootPath"

View File

@ -16,17 +16,17 @@ echo WebUI v%WEBUI_VERSION% Build Script
echo Platform: Microsoft Windows x64
echo Compiler: MSVC, GCC and TCC
Set RootPath=%CD%\..\
Set RootPath=%CD%\..
Set BuildPath=%RootPath%\build\Windows
Set DistPath=%RootPath%\dist\Windows
cd "%RootPath%"
REM Transpiling TS to JS
echo Transpile and bundle TS sources to webui.js
cd "%RootPath%"
cmd /c esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=.\src\client .\src\client\webui.ts
REM Converting JS source to C-String using xxd
echo Converting JS source to C-String using xxd
cd "%RootPath%"
cd "src"
xxd -i client\webui.js client\webui.h
@ -34,8 +34,7 @@ echo.
echo Building WebUI using MSVC...
REM Build WebUI Library using MSVC
cd "%RootPath%"
cd "build\Windows\MSVC"
cd "%BuildPath%\MSVC"
%MSVC_CMD%
echo.
@ -43,8 +42,7 @@ echo Building WebUI using GCC...
echo.
REM Build WebUI Library using GCC
cd "%RootPath%"
cd "build\Windows\GCC"
cd "%BuildPath%\GCC"
%GCC_CMD%
echo.
@ -52,8 +50,7 @@ echo Building WebUI using TCC...
echo.
REM Build WebUI Library using TCC
cd "%RootPath%"
cd "build\Windows\TCC"
cd "%BuildPath%\TCC"
%GCC_CMD%
echo.
@ -65,45 +62,53 @@ cd "%RootPath%"
REM C++ (Visual Studio 2022)
copy /Y "include\webui.h" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui.h"
copy /Y "include\webui.hpp" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui.hpp"
copy /Y "build\Windows\MSVC\webui-2-static-x64.lib" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui-2-static-x64.lib"
copy /Y "%BuildPath%\MSVC\webui-2-static-x64.lib" "examples\C++\VS2022\serve_a_folder\my_webui_app\webui-2-static-x64.lib"
REM C++ (Visual Studio 2019)
copy /Y "include\webui.h" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui.h"
copy /Y "include\webui.hpp" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui.hpp"
copy /Y "build\Windows\MSVC\webui-2-static-x64.lib" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui-2-static-x64.lib"
copy /Y "%BuildPath%\MSVC\webui-2-static-x64.lib" "examples\C++\VS2019\serve_a_folder\my_webui_app\webui-2-static-x64.lib"
REM C - Text Editor
copy /Y "include\webui.h" "examples\C\text-editor\webui.h"
copy /Y "build\Windows\MSVC\webui-2-x64.dll" "examples\C\text-editor\webui-2-x64.dll"
copy /Y "%BuildPath%\MSVC\webui-2-x64.dll" "examples\C\text-editor\webui-2-x64.dll"
echo.
IF "%ARG1%"=="" (
echo Copying WebUI libs to the release folder...
echo Copying WebUI libs to %DistPath%...
echo.
REM Release Windows Include
copy /Y "include\webui.h" "Release\Windows\include\webui.h"
REM Remove Windows distributable files directory if it exits
if exist "%DistPath%" rmdir /s /q "%DistPath%"
REM Release Windows MSVC
copy /Y "build\Windows\MSVC\webui-2-x64.dll" "Release\Windows\MSVC\webui-2-x64.dll"
copy /Y "build\Windows\MSVC\webui-2-x64.lib" "Release\Windows\MSVC\webui-2-x64.lib"
copy /Y "build\Windows\MSVC\webui-2-static-x64.lib" "Release\Windows\MSVC\webui-2-static-x64.lib"
REM Create Windows output directories
mkdir "%DistPath%\include" 2>nul
mkdir "%DistPath%\MSVC" 2>nul
mkdir "%DistPath%\GCC" 2>nul
REM Release Windows GCC
copy /Y "build\Windows\GCC\webui-2-x64.dll" "Release\Windows\GCC\webui-2-x64.dll"
copy /Y "build\Windows\GCC\libwebui-2-static-x64.a" "Release\Windows\GCC\libwebui-2-static-x64.a"
REM Copy include files
copy /Y "include\webui.h" "%DistPath%\include\webui.h"
REM Release Windows TCC
REM copy /Y "build\Windows\TCC\webui-2-x64.dll" "Release\Windows\TCC\webui-2-x64.dll"
REM copy /Y "build\Windows\TCC\webui-2-x64.def" "Release\Windows\TCC\webui-2-x64.def"
copy /Y "build\Windows\TCC\libwebui-2-static-x64.a" "Release\Windows\TCC\libwebui-2-static-x64.a"
REM Copy Windows MSVC
copy /Y "%BuildPath%\MSVC\webui-2-x64.dll" "%DistPath%\MSVC\webui-2-x64.dll"
copy /Y "%BuildPath%\MSVC\webui-2-x64.lib" "%DistPath%\MSVC\webui-2-x64.lib"
copy /Y "%BuildPath%\MSVC\webui-2-static-x64.lib" "%DistPath%\MSVC\webui-2-static-x64.lib"
REM Copy Windows GCC
copy /Y "%BuildPath%\GCC\webui-2-x64.dll" "%DistPath%\GCC\webui-2-x64.dll"
copy /Y "%BuildPath%\GCC\libwebui-2-static-x64.a" "%DistPath%\GCC\libwebui-2-static-x64.a"
REM Copy Windows TCC
REM copy /Y "%BuildPath%\TCC\webui-2-x64.dll" "%DistPath%\TCC\webui-2-x64.dll"
REM copy /Y "%BuildPath%\TCC\webui-2-x64.def" "%DistPath%\TCC\webui-2-x64.def"
copy /Y "%BuildPath%\TCC\libwebui-2-static-x64.a" "%DistPath%\TCC\libwebui-2-static-x64.a"
echo.
echo Compressing the release folder...
set TAR_OUT=webui-windows-x64-v%WEBUI_VERSION%.tar.gz
cd "Release"
cd "dist"
timeout 2 > NUL
tar.exe -czf %TAR_OUT% Windows\*
cd "%RootPath%"