1
0
Fork 0
cuberite-2a/Tools/MCADefrag/MCADefrag.h

158 lines
4.4 KiB
C
Raw Normal View History

// MCADefrag.h
// Interfaces to the cMCADefrag class encapsulating the entire app
#pragma once
#include "OSSupport/IsThread.h"
#include "StringCompression.h"
class cMCADefrag
{
public:
enum
{
MAX_COMPRESSED_CHUNK_DATA_SIZE = (1 MiB),
MAX_RAW_CHUNK_DATA_SIZE = (100 MiB),
} ;
2017-12-23 12:49:08 +00:00
cMCADefrag(void);
2017-12-23 12:49:08 +00:00
/** Reads the cmdline params and initializes the app.
Returns true if the app should continue, false if not. */
bool Init(int argc, char ** argv);
2017-12-23 12:49:08 +00:00
/** Runs the entire app. */
void Run(void);
2017-12-23 12:49:08 +00:00
protected:
/** A single thread processing MCA files from the queue */
class cThread :
public cIsThread
{
typedef cIsThread super;
2017-12-23 12:49:08 +00:00
public:
cThread(cMCADefrag & a_Parent);
2017-12-23 12:49:08 +00:00
protected:
/** The compression methods, as specified by the MCA compression method byte. */
enum
{
COMPRESSION_GZIP = 1,
COMPRESSION_ZLIB = 2,
} ;
2017-12-23 12:49:08 +00:00
cMCADefrag & m_Parent;
2017-12-23 12:49:08 +00:00
/** The current compressed chunk data. Valid after a successful ReadChunk().
This contains only the compression method byte and the compressed data,
but not the exact-length preceding the data in the MCA file. */
unsigned char m_CompressedChunkData[MAX_COMPRESSED_CHUNK_DATA_SIZE];
2017-12-23 12:49:08 +00:00
/** Size of the actual current compressed chunk data, excluding the 4 exact-length bytes.
This is the amount of bytes in m_CompressedChunkData[] that are valid. */
int m_CompressedChunkDataSize;
2017-12-23 12:49:08 +00:00
/** The current raw chunk data. Valid after a successful ReadChunk(), if recompression is active. */
unsigned char m_RawChunkData[MAX_RAW_CHUNK_DATA_SIZE];
2017-12-23 12:49:08 +00:00
/** Size of the actual current raw chunk data. */
int m_RawChunkDataSize;
2017-12-23 12:49:08 +00:00
/** Number of the sector where the next chunk will be written by WriteChunk(). */
int m_CurrentSectorOut;
2017-12-23 12:49:08 +00:00
/** Set to true when the chunk has been successfully uncompressed. Only used if recompression is active.
WriteChunk() tests this flag to decide whether to call Compress(). */
bool m_IsChunkUncompressed;
2017-12-23 12:49:08 +00:00
/** An instance of the compressor. */
Compression::Compressor m_Compressor;
/** An instance of the extractor. */
Compression::Extractor m_Extractor;
2017-12-23 12:49:08 +00:00
/** Processes the specified file. */
void ProcessFile(const AString & a_FileName);
2017-12-23 12:49:08 +00:00
/** Reads the chunk data into m_CompressedChunkData.
Calls DecompressChunkData() if recompression is active.
a_LocationRaw is the pointer to the first byte of the Location data in the MCA header.
Returns true if successful. */
bool ReadChunk(cFile & a_File, const Byte * a_LocationRaw);
/** Writes the chunk data from m_CompressedData or m_RawChunkData (performing recompression) into file.
Calls CompressChunkData() for the actual compression, if recompression is active.
a_LocationRaw is the pointer to the first byte of the Location data to be put into the MCA header,
the chunk's location is stored in that memory area. Updates m_CurrentSectorOut.
Returns true if successful. */
2017-12-23 12:49:08 +00:00
bool WriteChunk(cFile & a_File, Byte * a_LocationRaw);
/** Uncompresses the chunk data from m_CompressedChunkData into m_RawChunkData.
Returns true if successful, false on failure. */
bool UncompressChunk(void);
2017-12-23 12:49:08 +00:00
/** Uncompresses the chunk data from m_CompressedChunkData into m_RawChunkData, using Gzip.
Returns true if successful, false on failure. */
bool UncompressChunkGzip(void);
2017-12-23 12:49:08 +00:00
/** Uncompresses the chunk data from m_CompressedChunkData into m_RawChunkData, using Zlib.
Returns true if successful, false on failure. */
bool UncompressChunkZlib(void);
2017-12-23 12:49:08 +00:00
/** Compresses the chunk data from m_RawChunkData into m_CompressedChunkData.
Returns true if successful, false on failure. */
bool CompressChunk(void);
2017-12-23 12:49:08 +00:00
// cIsThread overrides:
virtual void Execute(void) override;
} ;
2017-12-23 12:49:08 +00:00
typedef std::list<cThread *> cThreads;
2017-12-23 12:49:08 +00:00
/** The mutex protecting m_Files agains multithreaded access. */
cCriticalSection m_CS;
2017-12-23 12:49:08 +00:00
/** The queue of MCA files to be processed by the threads. Protected by m_CS. */
AStringVector m_Queue;
2017-12-23 12:49:08 +00:00
/** List of threads that the server has running. */
cThreads m_Threads;
2017-12-23 12:49:08 +00:00
/** The number of threads that should be started. Configurable on the command line. */
int m_NumThreads;
2017-12-23 12:49:08 +00:00
/** If set to true, the chunk data is recompressed while saving each MCA file. */
bool m_ShouldRecompress;
2017-12-23 12:49:08 +00:00
/** Starts a new processing thread and adds it to cThreads. */
void StartThread(void);
2017-12-23 12:49:08 +00:00
/** Retrieves one file from the queue (and removes it from the queue).
Returns an empty string when queue empty. */
AString GetNextFileName(void);
} ;