-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathFileTool.h
119 lines (103 loc) · 3.29 KB
/
FileTool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2017-3-20
* Update : 2019-1-8
* Author : scott.cgi
*/
#ifndef FILE_TOOL_H
#define FILE_TOOL_H
#include <stddef.h>
#include <stdio.h>
/**
* A tool for access file by file string path.
*/
struct AFileTool
{
/**
* Get file directory length in file path string, include last slash '/' or '\\'.
* return 0 when no directory.
*/
int (*GetDirLength) (const char* filePath);
/**
* Read all file data into malloc buffer, and close file.
*
* outSize: the create data size.
*
* if file not exist
* return NULL
* else
* return buffer ptr, and need to free it after using.
*/
void* (*CreateDataFromAbsolute) (const char* absoluteFilePath, long* outSize);
/**
* Read all file data into malloc buffer, end with '\0', and close file.
*
* if file not exist
* return NULL
* else
* return buffer ptr, and need to free it after using.
*/
char* (*CreateStringFromAbsolute)(const char* absoluteFilePath);
/**
* Indirect use AFile, read all file data into malloc buffer, and close file.
*
* outSize: the create data size.
*
* resourceFilePath:
* Android: assets
* IOS : NSBundle
*
* return buffer ptr, and need to free it after using.
*/
void* (*CreateDataFromResource) (const char* resourceFilePath, long* outSize);
/**
* Indirect use AFile, read all file data into malloc buffer, end with '\0', and close file.
*
* resourceFilePath:
* Android: assets
* IOS : NSBundle
*
* return buffer ptr, and need to free it after using.
*/
char* (*CreateStringFromResource)(const char* resourceFilePath);
/**
* Read all file data into malloc buffer, and close file.
* the relativeFilePath is relative internalDataPath from AFile->GetInternalDataPath().
*
* internalDataPath:
* Android: internal data directory
* IOS : document data directory
*
* outSize: the create data size.
*
* if file not exist
* return NULL
* else
* return buffer ptr, and need to free it after using.
*/
void* (*CreateDataFromRelative) (const char* relativeFilePath, long* outSize);
/**
* Write data into relativeDirFilePath, and close file.
* the relativeFilePath is relative internalDataPath from AFile->GetInternalDataPath().
*
* internalDataPath:
* Android: internal data directory
* IOS : document data directory
*
* data: will be write to relativeFilePath
* size: the write data size
*
* if file not exist will created.
*/
void (*WriteDataToRelative) (const char* relativeFilePath, void* data, size_t size);
};
extern struct AFileTool AFileTool[1];
#endif