godot/core/io
Pedro J. Estébanez 817ffc01e1
Make all file access 64-bit (uint64_t)
This changes the types of a big number of variables.

General rules:
- Using `uint64_t` in general. We also considered `int64_t` but eventually
  settled on keeping it unsigned, which is also closer to what one would expect
  with `size_t`/`off_t`.
- We only keep `int64_t` for `seek_end` (takes a negative offset from the end)
  and for the `Variant` bindings, since `Variant::INT` is `int64_t`. This means
  we only need to guard against passing negative values in `core_bind.cpp`.
- Using `uint32_t` integers for concepts not needing such a huge range, like
  pages, blocks, etc.

In addition:
- Improve usage of integer types in some related places; namely, `DirAccess`,
  core binds.

Note:
- On Windows, `_ftelli64` reports invalid values when using 32-bit MinGW with
  version < 8.0. This was an upstream bug fixed in 8.0. It breaks support for
  big files on 32-bit Windows builds made with that toolchain. We might add a
  workaround.

Fixes #44363.
Fixes godotengine/godot-proposals#400.

Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
2021-05-16 17:52:31 +02:00
..
compression.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
compression.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
config_file.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
config_file.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
dtls_server.cpp Style: Replaces uses of 0/NULL by nullptr (C++11) 2021-05-04 16:30:23 +02:00
dtls_server.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00
file_access_compressed.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_compressed.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_encrypted.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_encrypted.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_memory.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_memory.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_network.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_network.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_pack.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_pack.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_zip.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
file_access_zip.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
http_client.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
http_client.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
image_loader.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
image_loader.h Style: Replaces uses of 0/NULL by nullptr (C++11) 2021-05-04 16:30:23 +02:00
ip.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
ip.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00
ip_address.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
ip_address.h Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
json.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
json.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
logger.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
logger.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
marshalls.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
marshalls.h Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
multiplayer_api.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
multiplayer_api.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
net_socket.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
net_socket.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
networked_multiplayer_peer.cpp Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
networked_multiplayer_peer.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
packet_peer.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
packet_peer.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
packet_peer_dtls.cpp Style: Replaces uses of 0/NULL by nullptr (C++11) 2021-05-04 16:30:23 +02:00
packet_peer_dtls.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00
packet_peer_udp.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
packet_peer_udp.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00
pck_packer.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
pck_packer.h Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
resource_format_binary.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
resource_format_binary.h Style: Replaces uses of 0/NULL by nullptr (C++11) 2021-05-04 16:30:23 +02:00
resource_importer.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
resource_importer.h Style: Replaces uses of 0/NULL by nullptr (C++11) 2021-05-04 16:30:23 +02:00
resource_loader.cpp Fix crash with user-defined ResourceFormatLoader.load 2021-05-05 15:44:42 +02:00
resource_loader.h Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
resource_saver.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
resource_saver.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
SCsub
stream_peer.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
stream_peer.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
stream_peer_ssl.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
stream_peer_ssl.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00
stream_peer_tcp.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
stream_peer_tcp.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
tcp_server.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
tcp_server.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
translation_loader_po.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
translation_loader_po.h Style: Replaces uses of 0/NULL by nullptr (C++11) 2021-05-04 16:30:23 +02:00
udp_server.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
udp_server.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00
xml_parser.cpp Style: Enforce braces around if blocks and loops 2021-05-05 15:02:01 +02:00
xml_parser.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2021-05-04 14:45:16 +02:00
zip_io.cpp Make all file access 64-bit (uint64_t) 2021-05-16 17:52:31 +02:00
zip_io.h Update copyright statements to 2021 2021-01-13 16:17:06 +01:00