12#include "../ai/ai.hpp"
13#include "../game/game.hpp"
14#include "../window_func.h"
16#include "../fileio_func.h"
17#include "../base_media_base.h"
18#include "../base_media_graphics.h"
19#include "../base_media_music.h"
20#include "../base_media_sounds.h"
21#include "../settings_type.h"
22#include "../strings_func.h"
23#include "../timer/timer.h"
24#include "../timer/timer_window.h"
25#include "../core/string_consumer.hpp"
28#include "table/strings.h"
39# include <emscripten.h>
42#include "../safeguards.h"
82 default:
return nullptr;
88 auto ci = std::make_unique<ContentInfo>();
102 ci->dependencies.reserve(dependency_count);
103 for (uint i = 0; i < dependency_count; i++) {
105 ci->dependencies.push_back(dependency_cid);
110 ci->tags.reserve(tag_count);
113 if (!ci->IsValid()) {
119 if (proc !=
nullptr) {
120 if (proc(*ci,
true)) {
124 if (proc(*ci,
false)) ci->upgrade =
true;
134 for (
const auto &ici : this->
infos) {
135 if (ici->type == ci->type && ici->unique_id == ci->unique_id && ci->md5sum == ici->md5sum) {
137 if (ci->name.empty()) ci->name = ici->name;
138 if (ici->IsSelected()) ci->state = ici->state;
153 if (ci->filesize == 0) {
194 p->Send_uint8 ((uint8_t)type);
195 p->Send_uint32(0xffffffff);
197 p->Send_string(
"vanilla");
198 p->Send_string(_openttd_content_version);
224 static constexpr size_t MAX_CONTENT_IDS_PER_PACKET = (
TCP_MTU -
sizeof(
PacketSize) -
sizeof(uint8_t) -
sizeof(uint16_t)) /
sizeof(uint32_t);
226 if (content_ids.empty())
return;
230 for (
auto it = std::begin(content_ids); it != std::end(content_ids); ) {
231 auto last = std::ranges::next(it, MAX_CONTENT_IDS_PER_PACKET, std::end(content_ids));
234 p->Send_uint16(std::distance(it, last));
236 for (; it != last; ++it) {
251 if (cv ==
nullptr)
return;
255 assert(cv->size() < 255);
256 assert(cv->size() < (
TCP_MTU -
sizeof(
PacketSize) -
sizeof(uint8_t) -
sizeof(uint8_t)) /
257 (
sizeof(uint8_t) +
sizeof(uint32_t) + (send_md5sum ? MD5_HASH_BYTES : 0)));
260 p->Send_uint8((uint8_t)cv->size());
262 for (
const auto &ci : *cv) {
263 p->Send_uint8((uint8_t)ci->type);
264 p->Send_uint32(ci->unique_id);
265 if (!send_md5sum)
continue;
266 p->Send_bytes(ci->md5sum);
271 for (
auto &ci : *cv) {
273 for (
const auto &ci2 : this->
infos) {
274 if (ci->type == ci2->type && ci->unique_id == ci2->unique_id &&
275 (!send_md5sum || ci->md5sum == ci2->md5sum)) {
281 this->
infos.push_back(std::move(ci));
297 for (
const auto &ci : this->
infos) {
300 content.push_back(ci->id);
301 bytes += ci->filesize;
304 files = (uint)content.size();
307 if (files == 0)
return;
324 std::string content_request;
326 format_append(content_request,
"{}\n",
id);
340 uint count = (uint)content.size();
341 const ContentID *content_ids = content.data();
349 uint p_count = std::min<uint>(count, (
TCP_MTU -
sizeof(
PacketSize) -
sizeof(uint8_t) -
sizeof(uint16_t)) /
sizeof(uint32_t));
352 p->Send_uint16(p_count);
354 for (uint i = 0; i < p_count; i++) {
355 p->Send_uint32(content_ids[i]);
360 content_ids += p_count;
378 buf += compressed ?
".tar.gz" :
".tar";
390#if defined(WITH_ZLIB)
395 if (!ftmp.has_value())
return false;
397 int fdup = dup(fileno(*ftmp));
398 gzFile fin = gzdopen(fdup,
"rb");
403 if (fin ==
nullptr || !fout.has_value()) {
408 int read = gzread(fin, buff,
sizeof(buff));
423 gzerror(fin, &errnum);
424 if (errnum != 0 && errnum != Z_STREAM_END) ret =
false;
427 if (read < 0 ||
static_cast<size_t>(read) != fwrite(buff, 1, read, *fout)) {
437 if (fin !=
nullptr) {
439 }
else if (fdup != -1) {
454 this->
cur_info = std::make_unique<ContentInfo>();
467 auto write_to_disk = [
this](std::span<const uint8_t> buffer) {
468 return fwrite(buffer.data(), 1, buffer.size(), *this->cur_file);
470 if (to_read != 0 && p.
TransferOut(write_to_disk) != to_read) {
501 if (this->
cur_info->filesize != 0) {
504 if (filename.empty() || !(this->cur_file =
FileHandle::Open(filename,
"wb")).has_value()) {
544 EM_ASM(
if (window[
"openttd_syncfs"]) openttd_syncfs());
581 assert(data.get() ==
nullptr || length != 0);
589 if (data !=
nullptr) {
602 if (data !=
nullptr) {
604 if (fwrite(data.get(), 1, length, *this->cur_file) != length) {
630 this->
cur_info = std::make_unique<ContentInfo>();
636 auto len = buffer.find(
'\n');
637 if (len == std::string_view::npos)
throw std::exception{};
645 if (!consumer.ReadIf(
","))
throw std::exception{};
649 if (!consumer.ReadIf(
","))
throw std::exception{};
653 if (!consumer.ReadIf(
","))
throw std::exception{};
656 auto url = consumer.GetLeftData();
659 if (consumer.ReadIf(
"ottd")) {
666 std::string_view filename;
669 if (!consumer.ReadIf(
"/"))
throw std::exception{};
671 }
while (consumer.AnyBytesLeft());
674 for (uint i = 0; i < 2; i++) {
675 auto pos = filename.find_last_of(
'.');
676 if (pos == std::string::npos)
throw std::exception{};
677 filename = filename.substr(0, pos);
681 this->
cur_info->filename = filename;
689 }
catch (
const std::exception&) {
798 this->
queued.push_back(cid);
799 _request_queue_timeout.
Reset();
807 if (this->
queued.empty())
return;
811 _request_queue_timeout.
Reset();
820 queue.erase(std::remove_if(std::begin(queue), std::end(queue), [
this](
ContentID content_id) {
822 }), std::end(queue));
834 for (
const auto &ci : this->
infos) {
835 if (ci->id == cid)
return ci.get();
861 if (ci ==
nullptr || !ci->
IsSelected())
return;
870 for (
const auto &ci : this->
infos) {
881 for (
const auto &ci : this->
infos) {
892 for (
const auto &ci : this->
infos) {
924 for (
auto iter = range.first; iter != range.second; ++iter) {
936 tree.push_back(child);
983 if (!c->IsSelected())
continue;
1002 bool force_selection =
false;
1004 if (parent_ci->IsSelected()) sel_count++;
1007 if (sel_count == 0) {
1013 if (force_selection)
continue;
1023 force_selection =
true;
1028 if (force_selection)
continue;
1046 this->
infos.clear();
1056 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1060 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1066 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1069 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1075 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1079 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1085 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1088 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1095 if (ci !=
nullptr) {
1099 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1103 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
static bool HasAI(const ContentInfo &ci, bool md5sum)
Wrapper function for AIScanner::HasAI.
Socket handler for the content server connection.
void SelectUpgrade()
Select everything that's an update for something we've got.
void OnConnect(bool success) override
Callback for when the connection has finished.
void DownloadSelectedContentHTTP(const ContentIDList &content)
Initiate downloading the content over HTTP.
void DownloadSelectedContent(uint &files, uint &bytes, bool fallback=false)
Actually begin downloading the content we selected.
void ToggleSelectedState(const ContentInfo &ci)
Toggle the state of a content info and check its dependencies.
static constexpr std::chrono::seconds IDLE_TIMEOUT
The idle timeout; when to close the connection because it's idle.
void OnReceiveData(std::unique_ptr< char[]> data, size_t length) override
We're receiving data.
void Select(ContentID cid)
Select a specific content id.
void OnReceiveContentInfo(const ContentInfo &ci) override
We received a content info.
int http_response_index
Where we are, in the response, with handling it.
NetworkRecvStatus CloseConnection(bool error=true) override
Disconnect from the content server.
ContentIDList requested
ContentIDs we already requested (so we don't do it again)
void UnselectAll()
Unselect everything that we've not downloaded so far.
void RequestContentList(ContentType type)
Request the content list for the given type.
bool is_connecting
Whether we're connecting.
std::vector< char > http_response
The HTTP response to the requests we've been doing.
void ReverseLookupTreeDependency(ConstContentVector &tree, const ContentInfo *child) const
Reverse lookup the dependencies of all parents over a given child.
ContentIDList queued
ContentID queue to be requested.
void OnDownloadProgress(const ContentInfo &ci, int bytes) override
We have progress in the download of a file.
void DownloadContentInfo(ContentID cid)
Download information of a given Content ID if not already tried.
bool Receive_SERVER_INFO(Packet &p) override
Server sending list of content info: uint8_t type (invalid ID == does not exist) uint32_t id uint32_t...
void SendReceive()
Check whether we received/can send some data from/to the content server and when that's the case hand...
void OnDownloadComplete(ContentID cid) override
We have finished downloading a file.
ContentVector infos
All content info we received.
void OnFailure() override
An error has occurred and the connection has been closed.
std::vector< ContentID > ContentIDList
List of content IDs to (possibly) select.
ContentInfo * GetContent(ContentID cid) const
Get the content info based on a ContentID.
bool Receive_SERVER_CONTENT(Packet &p) override
Server sending list of content info: uint32_t unique id uint32_t file size (0 == does not exist) stri...
void Connect()
Connect with the content server.
std::unordered_multimap< ContentID, ContentID > reverse_dependency_map
Content reverse dependency map.
bool BeforeDownload()
Handle the opening of the file before downloading.
void CheckDependencyState(const ContentInfo &ci)
Check the dependencies (recursively) of this content info.
void Clear()
Clear all downloaded content information.
void RequestQueuedContentInfo()
Send a content request for queued content info download.
std::optional< FileHandle > cur_file
Currently downloaded file.
std::chrono::steady_clock::time_point last_activity
The last time there was network activity.
void AfterDownload()
Handle the closing and extracting of a file after downloading it has been done.
void ReverseLookupDependency(ConstContentVector &parents, const ContentInfo &child) const
Reverse lookup the dependencies of (direct) parents over a given child.
bool IsCancelled() const override
Check if there is a request to cancel the transfer.
std::vector< ContentCallback * > callbacks
Callbacks to notify "the world".
void DownloadSelectedContentFallback(const ContentIDList &content)
Initiate downloading the content over the fallback protocol.
void Unselect(ContentID cid)
Unselect a specific content id.
void Cancel()
Cancel the current download.
void OnDisconnect() override
Callback for when the connection got disconnected.
std::unique_ptr< ContentInfo > cur_info
Information about the currently downloaded file.
bool is_cancelled
Whether the download has been cancelled.
void SelectAll()
Select everything we can select.
static std::optional< FileHandle > Open(const std::string &filename, std::string_view mode)
Open an RAII file handle if possible.
static bool HasGame(const ContentInfo &ci, bool md5sum)
Wrapper function for GameScanner::HasGame.
Connect to the content server.
void OnFailure() override
Callback for when the connection attempt failed.
void OnConnect(SOCKET s) override
Callback when the connection succeeded.
NetworkContentConnecter(std::string_view connection_string)
Initiate the connecting.
bool ReceivePackets()
Receive a packet at TCP level.
static void Connect(std::string_view uri, HTTPCallback *callback, std::string &&data="")
Connect to the given URI.
void Reopen()
Reopen the socket so we can send/receive stuff again.
virtual NetworkRecvStatus CloseConnection(bool error=true)
This will put this socket handler in a close state.
SOCKET sock
The socket currently connected to.
virtual void SendPacket(std::unique_ptr< Packet > &&packet)
This function puts the packet in the send-queue and it is send as soon as possible.
SendPacketsState SendPackets(bool closing_down=false)
Sends all the buffered packets out for this client.
void CloseSocket()
Close the actual socket of the connection.
bool CanSendReceive()
Check whether this socket can send or receive something.
Parse data from a string / buffer.
@ KEEP_SEPARATOR
Keep the separator in the data as next value to be read.
T ReadIntegerBase(int base, T def=0, bool clamp=false)
Read and parse an integer in number 'base', and advance the reader.
"Helper" class for creating TCP connections in a non-blocking manner
std::string connection_string
Current address we are connecting to (before resolving).
Helper for scanning for files with tar as extension.
bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename={}) override
Add a file with the given filename.
A timeout timer will fire once after the interval.
void Reset()
Reset the timer, so it will fire again after the timeout.
std::string_view NetworkContentMirrorUriString()
Get the URI string for the content mirror from the environment variable OTTD_CONTENT_MIRROR_URI,...
std::string_view NetworkContentServerConnectionString()
Get the connection string for the content server from the environment variable OTTD_CONTENT_SERVER_CS...
static const uint16_t NETWORK_CONTENT_SERVER_PORT
The default port of the content server (TCP)
static const uint NETWORK_CONTENT_URL_LENGTH
The maximum length of a content's url, in bytes including '\0'.
static const uint NETWORK_CONTENT_VERSION_LENGTH
The maximum length of a content's version, in bytes including '\0'.
static const size_t TCP_MTU
Number of bytes we can pack in a single TCP packet.
static const uint NETWORK_CONTENT_FILENAME_LENGTH
The maximum length of a content's filename, in bytes including '\0'.
static const uint NETWORK_CONTENT_DESC_LENGTH
The maximum length of a content's description, in bytes including '\0'.
static const uint NETWORK_CONTENT_TAG_LENGTH
The maximum length of a content's tag, in bytes including '\0'.
static const uint NETWORK_CONTENT_NAME_LENGTH
The maximum length of a content's name, in bytes including '\0'.
bool include(Container &container, typename Container::const_reference &item)
Helper function to append an item to a container if it is not already contained.
NetworkRecvStatus
Status of a network client; reasons why a client has quit.
@ NETWORK_RECV_STATUS_OKAY
Everything is okay.
@ WL_ERROR
Errors (eg. saving/loading failed)
void ShowErrorMessage(EncodedString &&summary_msg, int x, int y, CommandCost &cc)
Display an error message in a window.
bool ExtractTar(const std::string &tar_filename, Subdirectory subdir)
Extract the tar with the given filename in the directory where the tar resides.
bool FioRemove(const std::string &filename)
Remove a file.
@ SP_AUTODOWNLOAD_DIR
Search within the autodownload directory.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
@ NO_DIRECTORY
A path without any base directory.
@ BASESET_DIR
Subdirectory for all base data (base sets, intro game)
bool(const ContentInfo &ci, bool md5sum) HasContentProc
Check whether a function piece of content is locally known.
static bool HasGRFConfig(const ContentInfo &ci, bool md5sum)
Wrapper function for the HasProc.
ClientNetworkContentSocketHandler _network_content_client
The client we use to connect to the server.
static HasContentProc * GetHasContentProcforContentType(ContentType type)
Get the has-content check function for the given content type.
bool HasScenario(const ContentInfo &ci, bool md5sum)
Check whether we've got a given scenario based on its unique ID.
static bool GunzipFile(const ContentInfo &ci)
Gunzip a given file and remove the .gz if successful.
static constexpr auto CONTENT_QUEUE_TIMEOUT
Timeout after queueing content for it to try to be requested.
static std::string GetFullFilename(const ContentInfo &ci, bool compressed)
Determine the full filename of a piece of content information.
Part of the network protocol handling content distribution.
std::vector< std::unique_ptr< ContentInfo > > ContentVector
Vector with content info.
std::vector< const ContentInfo * > ConstContentVector
Vector with constant content info.
const GRFConfig * FindGRFConfig(uint32_t grfid, FindGRFConfigMode mode, const MD5Hash *md5sum, uint32_t desired_version)
Find a NewGRF in the scanned list.
@ FGCM_ANY
Use first found.
@ FGCM_EXACT
Only find Grfs matching md5sum.
uint16_t PacketSize
Size of the whole packet.
@ ReplaceWithQuestionMark
Replace the unknown/bad bits with question marks.
@ AllowNewline
Allow newlines; replaces '\r ' with ' ' during processing.
EncodedString GetEncodedString(StringID str)
Encode a string with no parameters into an encoded string.
Callbacks for notifying others about incoming data.
virtual void OnDownloadProgress(const ContentInfo &ci, int bytes)
We have progress in the download of a file.
virtual void OnDisconnect()
Callback for when the connection got disconnected.
virtual void OnReceiveContentInfo(const ContentInfo &ci)
We received a content info.
virtual void OnDownloadComplete(ContentID cid)
We have finished downloading a file.
virtual void OnConnect(bool success)
Callback for when the connection has finished.
Container for all important information about a piece of content.
uint32_t unique_id
Unique ID; either GRF ID or shortname.
MD5Hash md5sum
The MD5 checksum.
State state
Whether the content info is selected (for download)
ContentID id
Unique (server side) ID for the content.
std::string filename
Filename (for the .tar.gz; only valid on download)
bool IsSelected() const
Is the state either selected or autoselected?
ContentType type
Type of content.
std::vector< ContentID > dependencies
The dependencies (unique server side ids)
@ Unselected
The content has not been selected.
@ AlreadyHere
The content is already at the client side.
@ Selected
The content has been manually selected.
@ Autoselected
The content has been selected as dependency.
@ DoesNotExist
The content does not exist in the content system.
Internal entity of a packet.
size_t Recv_bytes(std::span< uint8_t > span)
Extract at most the length of the span bytes from the packet into the span.
uint32_t Recv_uint32()
Read a 32 bits integer from the packet.
std::string Recv_string(size_t length, StringValidationSettings settings=StringValidationSetting::ReplaceWithQuestionMark)
Reads characters (bytes) from the packet until it finds a '\0', or reaches a maximum of length charac...
uint8_t Recv_uint8()
Read a 8 bits integer from the packet.
size_t RemainingBytesToTransfer() const
Get the amount of bytes that are still available for the Transfer functions.
ssize_t TransferOut(F transfer_function)
Transfer data from the packet to the given function.
Subdirectory GetContentInfoSubDir(ContentType type)
Helper to get the subdirectory a ContentInfo is located in.
uint32_t ContentID
Unique identifier for the content.
ContentType
The values in the enum are important; they are used as database 'keys'.
@ CONTENT_TYPE_AI_LIBRARY
The content consists of an AI library.
@ CONTENT_TYPE_BASE_SOUNDS
The content consists of base sounds.
@ CONTENT_TYPE_GAME_LIBRARY
The content consists of a GS library.
@ CONTENT_TYPE_BASE_GRAPHICS
The content consists of base graphics.
@ CONTENT_TYPE_AI
The content consists of an AI.
@ CONTENT_TYPE_SCENARIO
The content consists of a scenario.
@ CONTENT_TYPE_NEWGRF
The content consists of a NewGRF.
@ CONTENT_TYPE_BASE_MUSIC
The content consists of base music.
@ CONTENT_TYPE_GAME
The content consists of a game script.
@ CONTENT_TYPE_END
Helper to mark the end of the types.
@ CONTENT_TYPE_HEIGHTMAP
The content consists of a heightmap.
@ PACKET_CONTENT_CLIENT_CONTENT
Request a content file given an internal ID.
@ PACKET_CONTENT_CLIENT_INFO_LIST
Queries the content server for a list of info of a given content type.
@ PACKET_CONTENT_CLIENT_INFO_EXTID_MD5
Queries the content server for information about a list of external IDs and MD5.
@ PACKET_CONTENT_CLIENT_INFO_ID
Queries the content server for information about a list of internal IDs.
@ PACKET_CONTENT_CLIENT_INFO_EXTID
Queries the content server for information about a list of external IDs.
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
@ WN_NETWORK_STATUS_WINDOW_CONTENT_DOWNLOAD
Network content download status.
@ WC_NETWORK_STATUS_WINDOW
Network status window; Window numbers: