|
OpenTTD Source
14.0-beta1
|
Go to the documentation of this file.
10 #include "../stdafx.h"
12 #include "../ai/ai.hpp"
13 #include "../game/game.hpp"
14 #include "../window_func.h"
16 #include "../base_media_base.h"
17 #include "../settings_type.h"
20 #include "table/strings.h"
22 #if defined(WITH_ZLIB)
27 # include <emscripten.h>
30 #include "../safeguards.h"
65 for (
size_t j = 0; j < ci->
md5sum.size(); j++) {
71 for (uint i = 0; i < dependency_count; i++) {
78 ci->
tags.reserve(tag_count);
111 proc = AI::HasAILibrary;
break;
119 proc = Game::HasGameLibrary;
break;
131 if (proc !=
nullptr) {
132 if (proc(ci,
true)) {
136 if (proc(ci,
false)) ci->
upgrade =
true;
147 if (ici->type == ci->
type && ici->unique_id == ci->
unique_id && ci->
md5sum == ici->md5sum) {
149 if (ci->
name.empty()) ci->
name = ici->name;
150 if (ici->IsSelected()) ci->
state = ici->state;
160 this->OnReceiveContentInfo(ici);
171 this->infos.push_back(ci);
180 this->OnReceiveContentInfo(ci);
241 uint p_count = std::min<uint>(count, (
TCP_MTU -
sizeof(
PacketSize) -
sizeof(
byte) -
sizeof(uint16_t)) /
sizeof(uint32_t));
246 for (uint i = 0; i < p_count; i++) {
252 content_ids += p_count;
263 if (cv ==
nullptr)
return;
267 assert(cv->size() < 255);
268 assert(cv->size() < (
TCP_MTU -
sizeof(
PacketSize) -
sizeof(
byte) -
sizeof(uint8_t)) /
269 (
sizeof(uint8_t) +
sizeof(uint32_t) + (send_md5sum ? MD5_HASH_BYTES : 0)));
277 if (!send_md5sum)
continue;
279 for (
size_t j = 0; j < ci->md5sum.size(); j++) {
289 if (ci->type == ci2->type && ci->unique_id == ci2->unique_id &&
290 (!send_md5sum || ci->md5sum == ci2->md5sum)) {
296 this->infos.push_back(ci);
317 content.push_back(ci->id);
318 bytes += ci->filesize;
321 files = (uint)content.size();
324 if (files == 0)
return;
341 std::string content_request;
343 content_request += std::to_string(
id) +
"\n";
357 uint count = (uint)content.size();
358 const ContentID *content_ids = content.data();
366 uint p_count = std::min<uint>(count, (
TCP_MTU -
sizeof(
PacketSize) -
sizeof(
byte) -
sizeof(uint16_t)) /
sizeof(uint32_t));
371 for (uint i = 0; i < p_count; i++) {
377 content_ids += p_count;
395 buf += compressed ?
".tar.gz" :
".tar";
407 #if defined(WITH_ZLIB)
412 if (ftmp ==
nullptr)
return false;
414 int fdup = dup(fileno(ftmp));
415 gzFile fin = gzdopen(fdup,
"rb");
420 if (fin ==
nullptr || fout ==
nullptr) {
425 int read = gzread(fin, buff,
sizeof(buff));
440 gzerror(fin, &errnum);
441 if (errnum != 0 && errnum != Z_STREAM_END) ret =
false;
444 if (read < 0 || (
size_t)read != fwrite(buff, 1, read, fout)) {
454 if (fin !=
nullptr) {
456 }
else if (fdup != -1) {
460 if (fout !=
nullptr) fclose(fout);
477 return fwrite(buffer, 1, amount, file);
482 if (this->
curFile ==
nullptr) {
500 ShowErrorMessage(STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD, STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD_FILE_NOT_WRITABLE,
WL_ERROR);
508 this->OnDownloadProgress(this->
curInfo, (
int)toRead);
531 if (filename.empty() || (this->curFile = fopen(filename.c_str(),
"wb")) ==
nullptr) {
534 ShowErrorMessage(STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD, STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD_FILE_NOT_WRITABLE,
WL_ERROR);
565 unlink(fname.c_str());
568 #ifdef __EMSCRIPTEN__
569 EM_ASM(
if (window[
"openttd_syncfs"]) openttd_syncfs());
572 this->OnDownloadComplete(this->
curInfo->
id);
590 if (this->
curFile !=
nullptr) {
591 this->OnDownloadProgress(this->
curInfo, -1);
607 assert(data.get() ==
nullptr || length != 0);
617 if (data !=
nullptr) {
630 if (data !=
nullptr) {
632 if (fwrite(data.get(), 1, length, this->curFile) != length) {
637 this->OnDownloadProgress(this->
curInfo, (
int)length);
644 if (this->
curFile !=
nullptr) {
662 #define check_not_null(p) { if ((p) == nullptr) { this->OnFailure(); return; } }
664 #define check_and_terminate(p) { check_not_null(p); *(p) = '\0'; }
668 char *p = strchr(str,
'\n');
669 check_and_terminate(p);
675 p = strchr(str,
',');
676 check_and_terminate(p);
681 p = strchr(str,
',');
682 check_and_terminate(p);
687 p = strchr(str,
',');
688 check_and_terminate(p);
694 if (strncmp(str,
"ottd", 4) == 0) {
703 p = strrchr(str,
'/');
707 std::string filename = p;
709 for (uint i = 0; i < 2; i++) {
710 auto pos = filename.find_last_of(
'.');
711 if (pos == std::string::npos) {
732 #undef check_and_terminate
740 http_response_index(-2),
773 void OnConnect(SOCKET s)
override
843 if (std::find(this->
requested.begin(), this->requested.end(), cid) != this->requested.end())
return;
857 if (ci->id == cid)
return ci;
883 if (ci ==
nullptr || !ci->
IsSelected())
return;
946 for (
auto iter = range.first; iter != range.second; ++iter) {
958 tree.push_back(child);
964 for (uint i = 0; i < tree.size(); i++) {
1005 if (!c->IsSelected())
continue;
1024 bool force_selection =
false;
1026 if (parent_ci->IsSelected()) sel_count++;
1029 if (sel_count == 0) {
1035 if (force_selection)
continue;
1045 force_selection =
true;
1050 if (force_selection)
continue;
1070 this->infos.clear();
1077 void ClientNetworkContentSocketHandler::OnConnect(
bool success)
1079 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1083 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1089 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1092 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1096 void ClientNetworkContentSocketHandler::OnReceiveContentInfo(
const ContentInfo *ci)
1098 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1102 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1106 void ClientNetworkContentSocketHandler::OnDownloadProgress(
const ContentInfo *ci,
int bytes)
1108 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1111 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
1115 void ClientNetworkContentSocketHandler::OnDownloadComplete(
ContentID cid)
1118 if (ci !=
nullptr) {
1122 for (
size_t i = 0; i < this->
callbacks.size(); ) {
1126 if (i != this->
callbacks.size() && this->callbacks[i] == cb) i++;
bool IsSelected() const
Is the state either selected or autoselected?
virtual void OnDownloadProgress([[maybe_unused]] const ContentInfo *ci, [[maybe_unused]] int bytes)
We have progress in the download of a file.
NetworkContentConnecter(const std::string &connection_string)
Initiate the connecting.
@ SP_AUTODOWNLOAD_DIR
Search within the autodownload directory.
Callbacks for notifying others about incoming data.
virtual void OnReceiveContentInfo([[maybe_unused]] const ContentInfo *ci)
We received a content info.
std::string name
Name of the content.
virtual void OnConnect([[maybe_unused]] bool success)
Callback for when the connection has finished.
bool ExtractTar(const std::string &tar_filename, Subdirectory subdir)
Extract the tar with the given filename in the directory where the tar resides.
ContentType type
Type of content.
Base socket handler for all Content TCP sockets.
void ReverseLookupDependency(ConstContentVector &parents, const ContentInfo *child) const
Reverse lookup the dependencies of (direct) parents over a given child.
@ SVS_ALLOW_NEWLINE
Allow newlines; replaces '\r ' with ' ' during processing.
std::string connection_string
Current address we are connecting to (before resolving).
void SendReceive()
Check whether we received/can send some data from/to the content server and when that's the case hand...
void ShowErrorMessage(StringID summary_msg, int x, int y, CommandCost cc)
Display an error message in a window.
@ CONTENT_TYPE_GAME_LIBRARY
The content consists of a GS library.
void OnReceiveData(std::unique_ptr< char[]> data, size_t length) override
We're receiving data.
bool upgrade
This item is an upgrade.
@ DOES_NOT_EXIST
The content does not exist in the content system.
"Helper" class for creating TCP connections in a non-blocking manner
uint32_t filesize
Size of the file.
bool HasScenario(const ContentInfo *ci, bool md5sum)
Check whether we've got a given scenario based on its unique ID.
@ BASESET_DIR
Subdirectory for all base data (base sets, intro game)
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
std::chrono::steady_clock::time_point lastActivity
The last time there was network activity.
int http_response_index
Where we are, in the response, with handling it.
@ CONTENT_TYPE_NEWGRF
The content consists of a NewGRF.
std::vector< ContentInfo * > ContentVector
Vector with content info.
static void Connect(const std::string &uri, HTTPCallback *callback, const std::string data="")
Connect to the given URI.
SOCKET sock
The socket currently connected to.
bool ReceivePackets()
Receive a packet at TCP level.
std::string url
URL related to the content.
void CheckDependencyState(ContentInfo *ci)
Check the dependencies (recursively) of this content info.
static const uint NETWORK_CONTENT_VERSION_LENGTH
The maximum length of a content's version, in bytes including '\0'.
Socket handler for the content server connection.
std::unordered_multimap< ContentID, ContentID > reverse_dependency_map
Content reverse dependency map.
ssize_t TransferOut(F transfer_function, D destination, Args &&... args)
Transfer data from the packet to the given function.
ClientSettings _settings_client
The current settings for this game.
@ CONTENT_TYPE_END
Helper to mark the end of the types.
std::string version
Version of the content.
@ PACKET_CONTENT_CLIENT_INFO_EXTID_MD5
Queries the content server for information about a list of external IDs and MD5.
void Clear()
Clear all downloaded content information.
bool isConnecting
Whether we're connecting.
MD5Hash md5sum
The MD5 checksum.
static bool HasGRFConfig(const ContentInfo *ci, bool md5sum)
Wrapper function for the HasProc.
bool IsValid() const
Is the information from this content info valid?
ContentType
The values in the enum are important; they are used as database 'keys'.
ContentInfo * curInfo
Information about the currently downloaded file.
void DownloadSelectedContentHTTP(const ContentIDList &content)
Initiate downloading the content over HTTP.
Subdirectory GetContentInfoSubDir(ContentType type)
Helper to get the subdirectory a ContentInfo is located in.
bool no_http_content_downloads
do not do content downloads over HTTP
std::string Recv_string(size_t length, StringValidationSettings settings=SVS_REPLACE_WITH_QUESTION_MARK)
Reads characters (bytes) from the packet until it finds a '\0', or reaches a maximum of length charac...
void RequestContentList(ContentType type)
Request the content list for the given type.
@ FGCM_ANY
Use first found.
bool include(Container &container, typename Container::const_reference &item)
Helper function to append an item to a container if it is not already contained.
static std::string GetFullFilename(const ContentInfo *ci, bool compressed)
Determine the full filename of a piece of content information.
@ CONTENT_TYPE_GAME
The content consists of a game script.
void OnDisconnect() override
Callback for when the connection got disconnected.
void Send_uint32(uint32_t data)
Package a 32 bits integer in the packet.
@ UNSELECTED
The content has not been selected.
@ PACKET_CONTENT_CLIENT_INFO_ID
Queries the content server for information about a list of internal IDs.
void Send_uint8(uint8_t data)
Package a 8 bits integer in the packet.
static uint32_t BSWAP32(uint32_t x)
Perform a 32 bits endianness bitswap on x.
void OnFailure() override
Callback for when the connection attempt failed.
void Reopen()
Reopen the socket so we can send/receive stuff again.
static const uint NETWORK_CONTENT_DESC_LENGTH
The maximum length of a content's description, in bytes including '\0'.
ContentVector infos
All content info we received.
void DownloadContentInfo(ContentID cid)
Download information of a given Content ID if not already tried.
uint32_t Recv_uint32()
Read a 32 bits integer from the packet.
~ClientNetworkContentSocketHandler()
Clear up the mess ;)
void UnselectAll()
Unselect everything that we've not downloaded so far.
static ssize_t TransferOutFWrite(FILE *file, const char *buffer, size_t amount)
Simple wrapper around fwrite to be able to pass it to Packet's TransferOut.
Container for all important information about a piece of content.
void Unselect(ContentID cid)
Unselect a specific content id.
bool isCancelled
Whether the download has been cancelled.
virtual void OnDownloadComplete([[maybe_unused]] ContentID cid)
We have finished downloading a file.
static bool HasAI(const struct ContentInfo *ci, bool md5sum)
Wrapper function for AIScanner::HasAI.
void OnFailure() override
An error has occurred and the connection has been closed.
virtual void SendPacket(Packet *packet)
This function puts the packet in the send-queue and it is send as soon as possible.
const char * NetworkContentServerConnectionString()
Get the connection string for the content server from the environment variable OTTD_CONTENT_SERVER_CS...
virtual NetworkRecvStatus CloseConnection(bool error=true)
This will put this socket handler in a close state.
@ SELECTED
The content has been manually selected.
static constexpr std::chrono::seconds IDLE_TIMEOUT
The idle timeout; when to close the connection because it's idle.
ContentInfo * GetContent(ContentID cid) const
Get the content info based on a ContentID.
FILE * curFile
Currently downloaded file.
bool(* HasProc)(const ContentInfo *ci, bool md5sum)
Check whether a function piece of content is locally known.
@ PACKET_CONTENT_CLIENT_CONTENT
Request a content file given an internal ID.
StringList tags
Tags associated with the content.
Internal entity of a packet.
void DownloadSelectedContent(uint &files, uint &bytes, bool fallback=false)
Actually begin downloading the content we selected.
uint16_t PacketSize
Size of the whole packet.
std::vector< char > http_response
The HTTP response to the requests we've been doing.
const char * NetworkContentMirrorUriString()
Get the URI string for the content mirror from the environment variable OTTD_CONTENT_MIRROR_URI,...
std::vector< ContentID > dependencies
The dependencies (unique server side ids)
bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename={}) override
Add a file with the given filename.
static const uint NETWORK_CONTENT_FILENAME_LENGTH
The maximum length of a content's filename, in bytes including '\0'.
@ PACKET_CONTENT_CLIENT_INFO_EXTID
Queries the content server for information about a list of external IDs.
@ CONTENT_TYPE_AI
The content consists of an AI.
bool IsCancelled() const override
Check if there is a request to cancel the transfer.
ClientNetworkContentSocketHandler _network_content_client
The client we use to connect to the server.
std::vector< ContentID > ContentIDList
List of content IDs to (possibly) select.
@ CONTENT_TYPE_BASE_GRAPHICS
The content consists of base graphics.
SendPacketsState SendPackets(bool closing_down=false)
Sends all the buffered packets out for this client.
bool CanSendReceive()
Check whether this socket can send or receive something.
@ ALREADY_HERE
The content is already at the client side.
static const uint16_t NETWORK_CONTENT_SERVER_PORT
The default port of the content server (TCP)
void ReverseLookupTreeDependency(ConstContentVector &tree, const ContentInfo *child) const
Reverse lookup the dependencies of all parents over a given child.
void Connect()
Connect with the content server.
@ AUTOSELECTED
The content has been selected as dependency.
@ CONTENT_TYPE_AI_LIBRARY
The content consists of an AI library.
@ NO_DIRECTORY
A path without any base directory.
void ToggleSelectedState(const ContentInfo *ci)
Toggle the state of a content info and check its dependencies.
NetworkRecvStatus
Status of a network client; reasons why a client has quit.
@ WC_NETWORK_STATUS_WINDOW
Network status window; Window numbers:
ContentID
Unique identifier for the content.
std::string filename
Filename (for the .tar.gz; only valid on download)
std::vector< ContentCallback * > callbacks
Callbacks to notify "the world".
static bool HasGame(const struct ContentInfo *ci, bool md5sum)
Wrapper function for GameScanner::HasGame.
void Select(ContentID cid)
Select a specific content id.
static bool GunzipFile(const ContentInfo *ci)
Gunzip a given file and remove the .gz if successful.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
ContentIDList requested
ContentIDs we already requested (so we don't do it again)
Connect to the content server.
void DownloadSelectedContentFallback(const ContentIDList &content)
Initiate downloading the content over the fallback protocol.
@ WL_ERROR
Errors (eg. saving/loading failed)
State state
Whether the content info is selected (for download)
void Send_string(const std::string_view data)
Sends a string over the network.
@ CONTENT_TYPE_BASE_SOUNDS
The content consists of base sounds.
Helper for scanning for files with tar as extension.
NetworkSettings network
settings related to the network
void SelectAll()
Select everything we can select.
static const uint NETWORK_CONTENT_NAME_LENGTH
The maximum length of a content's name, in bytes including '\0'.
@ PACKET_CONTENT_CLIENT_INFO_LIST
Queries the content server for a list of info of a given content type.
@ NETWORK_RECV_STATUS_OKAY
Everything is okay.
static const uint16_t TCP_MTU
Number of bytes we can pack in a single TCP packet.
@ CONTENT_TYPE_SCENARIO
The content consists of a scenario.
bool BeforeDownload()
Handle the opening of the file before downloading.
@ FGCM_EXACT
Only find Grfs matching md5sum.
static const uint NETWORK_CONTENT_TAG_LENGTH
The maximum length of a content's tag, in bytes including '\0'.
bool Receive_SERVER_INFO(Packet *p) override
Server sending list of content info: byte type (invalid ID == does not exist) uint32_t id uint32_t fi...
NetworkRecvStatus CloseConnection(bool error=true) override
Disconnect from the content server.
static const uint NETWORK_CONTENT_URL_LENGTH
The maximum length of a content's url, in bytes including '\0'.
void SelectUpgrade()
Select everything that's an update for something we've got.
ContentID id
Unique (server side) ID for the content.
size_t RemainingBytesToTransfer() const
Get the amount of bytes that are still available for the Transfer functions.
void AfterDownload()
Handle the closing and extracting of a file after downloading it has been done.
std::string description
Description of the content.
const GRFConfig * FindGRFConfig(uint32_t grfid, FindGRFConfigMode mode, const MD5Hash *md5sum, uint32_t desired_version)
Find a NewGRF in the scanned list.
@ CONTENT_TYPE_HEIGHTMAP
The content consists of a heightmap.
ClientNetworkContentSocketHandler()
Create a socket handler to handle the connection.
virtual void OnDisconnect()
Callback for when the connection got disconnected.
@ SVS_REPLACE_WITH_QUESTION_MARK
Replace the unknown/bad bits with question marks.
std::vector< const ContentInfo * > ConstContentVector
Vector with constant content info.
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...
@ WN_NETWORK_STATUS_WINDOW_CONTENT_DOWNLOAD
Network content download status.
void CloseSocket()
Close the actual socket of the connection.
uint32_t unique_id
Unique ID; either GRF ID or shortname.
void Send_uint16(uint16_t data)
Package a 16 bits integer in the packet.
uint8_t Recv_uint8()
Read a 8 bits integer from the packet.
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames)
@ CONTENT_TYPE_BASE_MUSIC
The content consists of base music.