Skip to content

Commit 68574e9

Browse files
hamcorebuilder: Use libhamcore to build archive
https://github.com/SoftEtherVPN/libhamcore
1 parent de03b3e commit 68574e9

8 files changed

+36
-328
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
[submodule "3rdparty/BLAKE2"]
88
path = 3rdparty/BLAKE2
99
url = https://github.com/BLAKE2/BLAKE2.git
10+
[submodule "src/libhamcore"]
11+
path = src/libhamcore
12+
url = https://github.com/SoftEtherVPN/libhamcore.git

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ else()
2525
endif()
2626

2727
# Check that submodules are present only if source was downloaded with git
28-
if(EXISTS "${TOP_DIRECTORY}/.git" AND NOT EXISTS "${TOP_DIRECTORY}/src/Mayaqua/3rdparty/cpu_features/CMakeLists.txt")
28+
if(EXISTS "${TOP_DIRECTORY}/.git" AND NOT EXISTS "${TOP_DIRECTORY}/src/libhamcore/CMakeLists.txt")
2929
message (FATAL_ERROR "Submodules are not initialized. Run\n\tgit submodule update --init --recursive")
3030
endif()
3131

src/CMakeLists.txt

+6-3
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@ add_subdirectory(Cedar)
123123
# Mayaqua kernel
124124
add_subdirectory(Mayaqua)
125125

126-
# hamcorebuilder utility
127-
add_subdirectory(hamcorebuilder)
128-
129126
# vpnserver
130127
add_subdirectory(vpnserver)
131128

@@ -141,6 +138,12 @@ add_subdirectory(vpncmd)
141138
# vpntest
142139
add_subdirectory(vpntest)
143140

141+
# libhamcore
142+
add_subdirectory(libhamcore)
143+
144+
# hamcorebuilder utility
145+
add_subdirectory(hamcorebuilder)
146+
144147
# hamcore.se2 archive file
145148
add_custom_target(hamcore-archive-build
146149
ALL

src/hamcorebuilder/CMakeLists.txt

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
include(TestBigEndian)
2-
31
add_executable(hamcorebuilder
42
main.c
53
FileSystem.c
@@ -10,12 +8,6 @@ if(WIN32)
108
target_compile_definitions(hamcorebuilder PRIVATE "OS_WINDOWS")
119
endif()
1210

13-
test_big_endian(BIG_ENDIAN)
14-
if(BIG_ENDIAN)
15-
target_compile_definitions(hamcorebuilder PRIVATE "BYTE_ORDER_BIG_ENDIAN")
16-
endif()
17-
1811
target_include_directories(hamcorebuilder PRIVATE "${TOP_DIRECTORY}/3rdparty/tinydir")
1912

20-
find_package(ZLIB REQUIRED)
21-
target_link_libraries(hamcorebuilder PRIVATE ZLIB::ZLIB)
13+
target_link_libraries(hamcorebuilder PRIVATE libhamcore)

src/hamcorebuilder/FileSystem.c

+1-80
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include "FileSystem.h"
22

3-
#include <string.h>
4-
5-
#include <sys/stat.h>
3+
#include <stdio.h>
64

75
ENTRIES *EnumEntries(const char *path)
86
{
@@ -121,83 +119,6 @@ void FreeEntries(ENTRIES *entries)
121119
free(entries);
122120
}
123121

124-
FILE *FileOpen(const char *path, const bool write)
125-
{
126-
if (!path)
127-
{
128-
return NULL;
129-
}
130-
131-
return fopen(path, write ? "wb" : "rb");
132-
}
133-
134-
bool FileClose(FILE *file)
135-
{
136-
if (!file)
137-
{
138-
return false;
139-
}
140-
141-
return fclose(file) == 0;
142-
}
143-
144-
bool FileRead(FILE *file, void *dst, const size_t size)
145-
{
146-
if (!file || !dst || size == 0)
147-
{
148-
return false;
149-
}
150-
151-
return fread(dst, 1, size, file) == size;
152-
}
153-
154-
bool FileWrite(FILE *file, const void *src, const size_t size)
155-
{
156-
if (!file || !src || size == 0)
157-
{
158-
return false;
159-
}
160-
161-
return fwrite(src, 1, size, file) == size;
162-
}
163-
164-
size_t FileSize(const char *path)
165-
{
166-
if (!path)
167-
{
168-
return 0;
169-
}
170-
171-
struct stat st;
172-
if (stat(path, &st) == -1)
173-
{
174-
return 0;
175-
}
176-
177-
return st.st_size;
178-
}
179-
180-
char *PathRelativeToBase(char *full, const char *base)
181-
{
182-
if (!full || !base)
183-
{
184-
return NULL;
185-
}
186-
187-
if (strstr(full, base) != &full[0])
188-
{
189-
return NULL;
190-
}
191-
192-
full += strlen(base);
193-
if (full[0] == '/')
194-
{
195-
++full;
196-
}
197-
198-
return full;
199-
}
200-
201122
#ifndef OS_WINDOWS
202123
bool IsWindowsExtension(const char *extension)
203124
{

src/hamcorebuilder/FileSystem.h

-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#define FILESYSTEM_H
33

44
#include <stdbool.h>
5-
#include <stdio.h>
65

76
#include <tinydir.h>
87

@@ -24,14 +23,6 @@ ENTRIES *EnumEntries(const char *path);
2423
ENTRIES *EnumEntriesRecursively(const char *path, const bool files_only);
2524
void FreeEntries(ENTRIES *entries);
2625

27-
FILE *FileOpen(const char *path, const bool write);
28-
bool FileClose(FILE *file);
29-
bool FileRead(FILE *file, void *dst, const size_t size);
30-
bool FileWrite(FILE *file, const void *src, const size_t size);
31-
size_t FileSize(const char *path);
32-
33-
char *PathRelativeToBase(char *full, const char *base);
34-
3526
#ifndef OS_WINDOWS
3627
bool IsWindowsExtension(const char *extension);
3728
#endif

0 commit comments

Comments
 (0)