2022-06-30 17:15:57 +02:00
|
|
|
|
|
|
|
#ifndef WEB_SERVER_SIMPLE_H
|
|
|
|
#define WEB_SERVER_SIMPLE_H
|
|
|
|
|
2022-06-27 16:38:35 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2022-06-30 16:28:23 +02:00
|
|
|
#include "core/io/image_loader.h"
|
|
|
|
#include "core/io/json.h"
|
|
|
|
#include "core/io/stream_peer_ssl.h"
|
|
|
|
#include "core/io/tcp_server.h"
|
|
|
|
#include "core/io/zip_io.h"
|
2022-06-30 17:15:57 +02:00
|
|
|
|
|
|
|
#include "../http/web_server.h"
|
2022-06-30 16:28:23 +02:00
|
|
|
|
|
|
|
#include "core/project_settings.h"
|
|
|
|
|
|
|
|
class HTTPServerSimple;
|
|
|
|
|
2022-06-30 17:15:57 +02:00
|
|
|
class WebServerSimple : public WebServer {
|
|
|
|
GDCLASS(WebServerSimple, WebServer);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void _start();
|
|
|
|
void _stop();
|
2022-06-30 16:28:23 +02:00
|
|
|
|
2022-06-30 17:15:57 +02:00
|
|
|
WebServerSimple();
|
|
|
|
~WebServerSimple();
|
2022-06-30 16:28:23 +02:00
|
|
|
|
2022-06-30 17:15:57 +02:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
Ref<HTTPServerSimple> server;
|
2022-06-30 16:28:23 +02:00
|
|
|
bool server_quit = false;
|
|
|
|
Mutex server_lock;
|
|
|
|
Thread server_thread;
|
|
|
|
|
|
|
|
static void _server_thread_poll(void *data);
|
|
|
|
};
|
2022-06-30 17:15:57 +02:00
|
|
|
|
|
|
|
#endif
|