This commit is contained in:
Adrian Frühwirth 2022-05-16 13:54:10 +02:00 committed by GitHub
commit 22cfdc2b70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 23 additions and 21 deletions

View File

@ -7,6 +7,7 @@
cmake_minimum_required(VERSION 3.2) cmake_minimum_required(VERSION 3.2)
project(maconv) project(maconv)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
# Compile vendor libraries. # Compile vendor libraries.
add_subdirectory("vendors/libhfs") add_subdirectory("vendors/libhfs")

View File

@ -27,7 +27,7 @@ namespace conv {
// Return true if a file is in BinHex format. // Return true if a file is in BinHex format.
bool IsFileBinHex(fs::FileReader &reader) bool IsFileBinHex(fs::FileReader &/* reader */)
{ {
// TODO. // TODO.
@ -37,7 +37,7 @@ bool IsFileBinHex(fs::FileReader &reader)
// Read and decode a BinHex file. // Read and decode a BinHex file.
void ReadBinHex(fs::FileReader &reader, fs::File &file) void ReadBinHex(fs::FileReader &/* reader */, fs::File &/* file */)
{ {
// TODO. // TODO.
} }
@ -45,7 +45,7 @@ void ReadBinHex(fs::FileReader &reader, fs::File &file)
// Write a BinHex file. // Write a BinHex file.
void WriteBinHex(fs::File &file, fs::FileWriter &writer) void WriteBinHex(fs::File &/* file */, fs::FileWriter &/* writer */)
{ {
// TODO. // TODO.
} }

View File

@ -38,7 +38,7 @@ static void ExtractFork(hfsfile *hfile, const hfsdirent &ent, fs::File &file,
bool is_res) bool is_res)
{ {
// Allocate buffer. // Allocate buffer.
int size = is_res ? ent.u.file.rsize : ent.u.file.dsize; long unsigned int size = is_res ? ent.u.file.rsize : ent.u.file.dsize;
auto buffer = std::make_unique<uint8_t[]>(size); auto buffer = std::make_unique<uint8_t[]>(size);
// Read the data. // Read the data.

View File

@ -59,10 +59,11 @@ SignToMac signs_to_mac[] = {
// File signature array. // File signature array.
/*
SignToUnix signs_to_unix[] = { SignToUnix signs_to_unix[] = {
}; };
*/
// Call Unix "file" command on a path. // Call Unix "file" command on a path.

View File

@ -33,14 +33,14 @@ struct SignToMac {
// Maching type: extension or file command. // Maching type: extension or file command.
enum Type { Extension, FileCmd } type; enum Type { Extension, FileCmd } type;
// Help strings (and count)
int help_len;
const char **helps;
// MAC creator and type. // MAC creator and type.
const char *creator; const char *creator;
const char *mac; const char *mac;
// Help strings (and count)
int help_len;
const char **helps;
constexpr SignToMac(Type t, const char *c, const char *m, const char **hs, int hl) constexpr SignToMac(Type t, const char *c, const char *m, const char **hs, int hl)
: type{t}, creator{c}, mac{m}, help_len{hl}, helps{hs} {} : type{t}, creator{c}, mac{m}, help_len{hl}, helps{hs} {}
}; };
@ -57,8 +57,9 @@ struct SignToUnix {
extern SignToMac signs_to_mac[]; extern SignToMac signs_to_mac[];
// File signature array. // File signature array.
/*
extern SignToUnix signs_to_unix[]; extern SignToUnix signs_to_unix[];
*/
// Get the MAC type (and creator) for a specific file. // Get the MAC type (and creator) for a specific file.

View File

@ -34,7 +34,7 @@ namespace maconv {
// Prefered conversion format. // Prefered conversion format.
ConvData prefered_conv = { ConvData::NotFound }; ConvData prefered_conv = { ConvData::NotFound, NULL };
// All available converters. // All available converters.
@ -69,7 +69,7 @@ ConvData GetConverter(const std::string &name)
return ConvData { ConvData::Double, &format }; return ConvData { ConvData::Double, &format };
} }
return ConvData { ConvData::NotFound }; return ConvData { ConvData::NotFound, NULL };
} }

View File

@ -71,13 +71,12 @@ int ReadLocalFile(const std::string &filename, fs::DataPtr &ptr)
// Get file infotmation from a local file. // Get file infotmation from a local file.
void GetLocalInfo(const std::string &filename, fs::File &file, bool is_res) void GetLocalInfo(const std::string & /*filename */, fs::File &/* file */, bool /* is_res */)
{ {
// TODO. // TODO.
} }
// Set file infotmation to a local file. // Set file infotmation to a local file.
void SetLocalInfo(fs::File &file, const std::string &filename, bool is_res) void SetLocalInfo(fs::File &file, const std::string &filename, bool is_res)
{ {

View File

@ -71,10 +71,10 @@ struct FileReader {
uint8_t *data; // Input data. uint8_t *data; // Input data.
uint32_t file_size; // Total size of the file. uint32_t file_size; // Total size of the file.
std::string filename; // Name of the file to read.
utils::RawDataStreamBuf stream_buf; // Stream buffer from raw data buffer. utils::RawDataStreamBuf stream_buf; // Stream buffer from raw data buffer.
std::istream stream; // Stream for reading data. std::istream stream; // Stream for reading data.
std::string filename; // Name of the file to read.
}; };

View File

@ -68,7 +68,7 @@ void CompressionMethod::Extract(const StuffitCompInfo &info, uint8_t *data,
total_size = 0; total_size = 0;
// Uncompress the data chunk by chunks. // Uncompress the data chunk by chunks.
for (uint32_t len = 0; true;) { for (int32_t len = 0; true;) {
len = ReadBytes(buffer.get() + total_size, capacity - total_size); len = ReadBytes(buffer.get() + total_size, capacity - total_size);
if (len == -1) if (len == -1)
break; break;
@ -89,7 +89,7 @@ void CompressionMethod::Extract(const StuffitCompInfo &info, uint8_t *data,
// Extract data from the compressed fork. // Extract data from the compressed fork.
void NoneMethod::Extract(const StuffitCompInfo &info, uint8_t *data, void NoneMethod::Extract(const StuffitCompInfo &info, uint8_t *data,
std::vector<fs::DataPtr> &mem_pool) std::vector<fs::DataPtr> &/* mem_pool */)
{ {
total_size = info.size ? info.size : info.comp_size; total_size = info.size ? info.size : info.comp_size;
uncompressed = data + info.offset; uncompressed = data + info.offset;

View File

@ -47,7 +47,7 @@ struct CompressionMethod {
// Read the next bytes. // Read the next bytes.
virtual int32_t ReadBytes(uint8_t *data, uint32_t length) { return -1; } virtual int32_t ReadBytes(uint8_t * /* data */, uint32_t /* length */) { return -1; }
// Initialize the algorithm. // Initialize the algorithm.
virtual void Initialize() {} virtual void Initialize() {}

View File

@ -409,7 +409,7 @@ fail:
* DESCRIPTION: recursively locate a node and insert a record * DESCRIPTION: recursively locate a node and insert a record
*/ */
static static
int insertx(node *np, byte *record, int *reclen) int insertx(node *np, byte *record, unsigned int *reclen)
{ {
node child; node child;
byte *rec; byte *rec;

View File

@ -758,7 +758,7 @@ fail:
* DESCRIPTION: translate a pathname; return catalog information * DESCRIPTION: translate a pathname; return catalog information
*/ */
int v_resolve(hfsvol **vol, const char *path, int v_resolve(hfsvol **vol, const char *path,
CatDataRec *data, long *parid, char *fname, node *np) CatDataRec *data, unsigned long *parid, char *fname, node *np)
{ {
unsigned long dirid; unsigned long dirid;
char name[HFS_MAX_FLEN + 1], *nptr; char name[HFS_MAX_FLEN + 1], *nptr;

View File

@ -54,7 +54,7 @@ int v_putextrec(const ExtDataRec *, node *);
int v_allocblocks(hfsvol *, ExtDescriptor *); int v_allocblocks(hfsvol *, ExtDescriptor *);
int v_freeblocks(hfsvol *, const ExtDescriptor *); int v_freeblocks(hfsvol *, const ExtDescriptor *);
int v_resolve(hfsvol **, const char *, CatDataRec *, long *, char *, node *); int v_resolve(hfsvol **, const char *, CatDataRec *, unsigned long *, char *, node *);
int v_adjvalence(hfsvol *, unsigned long, int, int); int v_adjvalence(hfsvol *, unsigned long, int, int);
int v_mkdir(hfsvol *, unsigned long, const char *); int v_mkdir(hfsvol *, unsigned long, const char *);