Merge pull request #51 from lioncash/include

General: Include headers that are necessary
This commit is contained in:
Phillip Stephens 2019-08-26 15:59:54 -07:00 committed by GitHub
commit e8d6c2abe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 125 additions and 88 deletions

View File

@ -1,6 +1,6 @@
#pragma once
#include "LZBase.hpp"
#include "LZ77/LZBase.hpp"
class LZType10 : public LZBase {
public:

View File

@ -1,6 +1,6 @@
#pragma once
#include "LZBase.hpp"
#include "LZ77/LZBase.hpp"
class LZType11 : public LZBase {
public:

View File

@ -1,6 +1,6 @@
#pragma once
#include "athena/Global.hpp"
#include "athena/Types.hpp"
namespace athena::checksums {
atUint64 crc64(const atUint8* data, atUint64 length, atUint64 seed = 0xFFFFFFFFFFFFFFFF,

View File

@ -1,6 +1,6 @@
#pragma once
#include "athena/Global.hpp"
#include "athena/Types.hpp"
namespace athena::io::Compression {
// Zlib compression

View File

@ -6,12 +6,16 @@
* Any changes to the types or namespacing must be reflected in 'atdna/main.cpp'
*/
#include "Global.hpp"
#include "IStreamReader.hpp"
#include "IStreamWriter.hpp"
#include "DNAOp.hpp"
#include <vector>
#include <memory>
#include <string>
#include <vector>
#include <sys/types.h>
#include "athena/DNAOp.hpp"
#include "athena/Global.hpp"
#include "athena/IStreamReader.hpp"
#include "athena/IStreamWriter.hpp"
namespace athena::io {

View File

@ -1,11 +1,16 @@
#pragma once
#include "IStreamReader.hpp"
#include "IStreamWriter.hpp"
#include "YAMLDocReader.hpp"
#include "YAMLDocWriter.hpp"
#include "ChecksumsLiterals.hpp"
#include <cstddef>
#include <cstdint>
#include <string>
#include <type_traits>
#include <vector>
#include "athena/ChecksumsLiterals.hpp"
#include "athena/IStreamReader.hpp"
#include "athena/IStreamWriter.hpp"
#include "athena/YAMLDocReader.hpp"
#include "athena/YAMLDocWriter.hpp"
namespace athena::io {

View File

@ -1,10 +1,13 @@
#pragma once
#include "YAMLDocReader.hpp"
#include "YAMLDocWriter.hpp"
#include "DNA.hpp"
#include "FileReader.hpp"
#include "FileWriter.hpp"
#include <string>
#include <type_traits>
#include "athena/DNA.hpp"
#include "athena/FileReader.hpp"
#include "athena/FileWriter.hpp"
#include "athena/YAMLDocReader.hpp"
#include "athena/YAMLDocWriter.hpp"
namespace athena::io {

View File

@ -1,11 +1,9 @@
#pragma once
#include "athena/FileInfo.hpp"
#include <cstdio>
#include <vector>
#include <string>
#if _WIN32
typedef int mode_t;
using mode_t = int;
#endif
namespace athena {
@ -19,8 +17,6 @@ public:
bool isDir() const;
static bool isDir(std::string_view dir) { return Dir(dir).isDir(); }
std::vector<FileInfo> files() const;
bool cd(std::string_view path);
bool rm(std::string_view path);
bool touch();

View File

@ -2,7 +2,7 @@
#include <string>
#include "athena/Global.hpp"
#include "athena/Types.hpp"
namespace athena {
class FileInfo {

View File

@ -9,9 +9,11 @@
#include <cstdio>
#endif
#include <string>
#include <memory>
#include <string>
#include "athena/IStreamReader.hpp"
#include "athena/Types.hpp"
namespace athena::io {
class FileReader : public IStreamReader {

View File

@ -8,7 +8,9 @@
#else
#include <cstdio>
#endif
#include "athena/IStreamWriter.hpp"
#include "athena/Types.hpp"
namespace athena::io {
class FileWriter : public IStreamWriter {

View File

@ -1,6 +1,6 @@
#pragma once
#include "Global.hpp"
#include "athena/Global.hpp"
namespace athena::io {
std::ostream& operator<<(std::ostream& os, Endian& endian);

View File

@ -1,10 +1,12 @@
#pragma once
#include <memory>
#include <functional>
#include "utf8proc.h"
#include "Utility.hpp"
#include "IStream.hpp"
#include <memory>
#include <type_traits>
#include <vector>
#include "athena/IStream.hpp"
#include "athena/Utility.hpp"
namespace athena::io {
/** @brief The IStreamReader class defines a basic API for reading from streams, Implementors are provided with one pure

View File

@ -1,11 +1,14 @@
#pragma once
#include "utf8proc.h"
#include "IStream.hpp"
#include "Utility.hpp"
#include <memory>
#include <string>
#include <type_traits>
#include <vector>
#include "utf8proc.h"
#include "athena/IStream.hpp"
#include "athena/Utility.hpp"
namespace athena::io {
class IStreamWriter : public IStream {
public:

View File

@ -1,8 +1,8 @@
#pragma once
#include <string>
#include <memory>
#include <functional>
#include <string>
#include "athena/IStreamWriter.hpp"
namespace athena::io {

View File

@ -1,15 +1,12 @@
#pragma once
#include <sys/types.h>
#include <fcntl.h>
#include <cstddef>
#include <cstdint>
#include <string>
#include <memory.h>
#include "Global.hpp"
#ifdef _WIN32
#include <BaseTsd.h>
typedef UINT_PTR SOCKET;
using SOCKET = UINT_PTR;
#endif
struct sockaddr_in;

View File

@ -1,11 +1,11 @@
#ifndef __UTILITY_H__
#define __UTILITY_H__
#include <cstring>
#include <string>
#include <string_view>
#include <vector>
#include <cstdarg>
#include <cstring>
#include "athena/Global.hpp"
#include "athena/Types.hpp"

View File

@ -1,10 +1,10 @@
#pragma once
#include <string>
#include <memory>
#include <functional>
#include <cstdint>
#include <vector>
#include "athena/IStreamWriter.hpp"
#include "athena/Types.hpp"
namespace athena::io {

View File

@ -4,13 +4,13 @@
#pragma once
#include <cstring>
#include <yaml.h>
#include <utf8proc.h>
#include <vector>
#include <memory>
#include <functional>
#include "Global.hpp"
#include <string>
#include <vector>
#include <yaml.h>
#include "athena/Types.hpp"
namespace athena::io {
class IStreamReader;

View File

@ -1,6 +1,14 @@
#pragma once
#include "YAMLCommon.hpp"
#include <cstddef>
#include <functional>
#include <memory>
#include <string>
#include <type_traits>
#include <vector>
#include "athena/Types.hpp"
#include "athena/YAMLCommon.hpp"
namespace athena::io {

View File

@ -1,6 +1,13 @@
#pragma once
#include "YAMLCommon.hpp"
#include <cstddef>
#include <memory>
#include <string>
#include <type_traits>
#include <vector>
#include "athena/Types.hpp"
#include "athena/YAMLCommon.hpp"
namespace athena::io {

View File

@ -1,7 +1,4 @@
#include "athena/Checksums.hpp"
#include "athena/FileReader.hpp"
#include <iostream>
#include <iomanip>
namespace athena::checksums {
atUint64 crc64(const atUint8* data, atUint64 length, atUint64 seed, atUint64 final) {

View File

@ -1,8 +1,9 @@
#include "athena/Compression.hpp"
#if AT_LZOKAY
#include <lzokay.hpp>
#endif
#include <iostream>
#include <zlib.h>
#include "LZ77/LZType10.hpp"
#include "LZ77/LZType11.hpp"

View File

@ -1,5 +1,10 @@
#include "athena/DNAYaml.hpp"
#include <cctype>
#include <cstdlib>
#include "athena/YAMLCommon.hpp"
namespace athena::io {
template <>

View File

@ -1,10 +1,14 @@
#include "athena/Dir.hpp"
#include <sys/stat.h>
#include <climits>
#include <cstdlib>
#include <ctime>
#include <sys/stat.h>
#define __STDC_FORMAT_MACROS
#include <cinttypes>
#include "athena/FileInfo.hpp"
#include "athena/Utility.hpp"
#ifndef _WIN32

View File

@ -1,11 +1,13 @@
#include "athena/FileInfo.hpp"
#include "athena/Utility.hpp"
#include "athena/FileWriter.hpp"
#include "athena/FileReader.hpp"
#include <ctime>
#include <climits>
#include <cstdio>
#include <limits.h>
#include <cstdlib>
#include <ctime>
#include "athena/FileReader.hpp"
#include "athena/FileWriter.hpp"
#include "athena/Utility.hpp"
#ifndef _WIN32
#include <sys/time.h>

View File

@ -1,5 +1,7 @@
#include "athena/FileWriter.hpp"
#include <cstring>
namespace athena::io {
void TransactionalFileWriter::seek(atInt64 pos, SeekOrigin origin) {
switch (origin) {

View File

@ -1,11 +1,8 @@
#include "athena/MemoryReader.hpp"
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <cstring>
#ifdef HW_RVL
#include <malloc.h>

View File

@ -2,8 +2,6 @@
#include <cstdio>
#include <cstring>
#include <vector>
#include <iostream>
#ifdef HW_RVL
#include <malloc.h>

View File

@ -1,18 +1,21 @@
#include "athena/Socket.hpp"
#ifndef _WIN32
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <cerrno>
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <unistd.h>
#include <cerrno>
#else
#include <WinSock2.h>
#include <Ws2tcpip.h>
#endif
#include "athena/Global.hpp"
namespace athena::net {
/* Define the low-level send/receive flags, which depend on the OS */

View File

@ -1,15 +1,16 @@
#include "athena/Utility.hpp"
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <sstream>
#include <algorithm>
#include <cstdarg>
#include <iterator>
#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>
#include <cstdlib>
#include <cstring>
#include <iterator>
#include <random>
#include <sstream>
#include <sys/stat.h>
#include <sys/types.h>
#include "utf8proc.h"
#ifdef _MSC_VER

View File

@ -1,10 +1,8 @@
#include "athena/VectorWriter.hpp"
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
#include <iostream>
#include <algorithm>
namespace athena::io {