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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
#include "file_access_jandroid.h"
#include "os/os.h"
#include <unistd.h>
jobject FileAccessJAndroid::io=NULL;
jclass FileAccessJAndroid::cls;
jmethodID FileAccessJAndroid::_file_open=0;
jmethodID FileAccessJAndroid::_file_get_size=0;
jmethodID FileAccessJAndroid::_file_seek=0;
jmethodID FileAccessJAndroid::_file_read=0;
jmethodID FileAccessJAndroid::_file_tell=0;
jmethodID FileAccessJAndroid::_file_eof=0;
jmethodID FileAccessJAndroid::_file_close=0;
JNIEnv * FileAccessJAndroid::env=NULL;
void FileAccessJAndroid::make_default() {
create_func=create_jandroid;
}
FileAccess* FileAccessJAndroid::create_jandroid() {
return memnew(FileAccessJAndroid);
}
Error FileAccessJAndroid::open(const String& p_path, int p_mode_flags) {
if (is_open())
close();
String path=fix_path(p_path).simplify_path();
if (path.begins_with("/"))
path=path.substr(1,path.length());
else if (path.begins_with("res://"))
path=path.substr(6,path.length());
//OS::get_singleton()->print("env: %p, io %p, fo: %p\n",env,io,_file_open);
jstring js = env->NewStringUTF(path.utf8().get_data());
int res = env->CallIntMethod(io,_file_open,js,p_mode_flags&WRITE?true:false);
if (res<=0)
return ERR_FILE_CANT_OPEN;
id=res;
return OK;
}
void FileAccessJAndroid::close() {
if (io==0)
return;
env->CallVoidMethod(io,_file_close,id);
id=0;
}
bool FileAccessJAndroid::is_open() const {
return id!=0;
}
void FileAccessJAndroid::seek(size_t p_position) {
ERR_FAIL_COND(!is_open());
env->CallVoidMethod(io,_file_seek,id,p_position);
}
void FileAccessJAndroid::seek_end(int64_t p_position) {
ERR_FAIL_COND(!is_open());
seek(get_len());
}
size_t FileAccessJAndroid::get_pos() const {
ERR_FAIL_COND_V(!is_open(),0);
return env->CallIntMethod(io,_file_tell,id);
}
size_t FileAccessJAndroid::get_len() const {
ERR_FAIL_COND_V(!is_open(),0);
return env->CallIntMethod(io,_file_get_size,id);
}
bool FileAccessJAndroid::eof_reached() const {
ERR_FAIL_COND_V(!is_open(),0);
return env->CallIntMethod(io,_file_eof,id);
}
uint8_t FileAccessJAndroid::get_8() const {
ERR_FAIL_COND_V(!is_open(),0);
uint8_t byte;
get_buffer(&byte,1);
return byte;
}
int FileAccessJAndroid::get_buffer(uint8_t *p_dst, int p_length) const {
ERR_FAIL_COND_V(!is_open(),0);
if (p_length==0)
return 0;
jbyteArray jca = (jbyteArray)env->CallObjectMethod(io,_file_read,id,p_length);
int len = env->GetArrayLength(jca);
env->GetByteArrayRegion(jca,0,len,(jbyte*)p_dst);
env->DeleteLocalRef((jobject)jca);
return len;
}
Error FileAccessJAndroid::get_error() const {
if (eof_reached())
return ERR_FILE_EOF;
return OK;
}
void FileAccessJAndroid::store_8(uint8_t p_dest) {
}
bool FileAccessJAndroid::file_exists(const String& p_path) {
jstring js = env->NewStringUTF(p_path.utf8().get_data());
int res = env->CallIntMethod(io,_file_open,js,false);
if (res<=0)
return false;
env->CallVoidMethod(io,_file_close,res);
return true;
}
void FileAccessJAndroid::setup( JNIEnv *p_env, jobject p_io) {
io=p_io;
env=p_env;
__android_log_print(ANDROID_LOG_INFO,"godot","STEP5");
jclass c = env->GetObjectClass(io);
__android_log_print(ANDROID_LOG_INFO,"godot","STEP6");
cls=(jclass)env->NewGlobalRef(c);
_file_open = env->GetMethodID(cls, "file_open", "(Ljava/lang/String;Z)I");
if(_file_open != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_open ok!!");
}
_file_get_size = env->GetMethodID(cls, "file_get_size", "(I)I");
if(_file_get_size != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_get_size ok!!");
}
_file_tell = env->GetMethodID(cls, "file_tell", "(I)I");
if(_file_tell != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_tell ok!!");
}
_file_eof = env->GetMethodID(cls, "file_eof", "(I)Z");
if(_file_eof != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_eof ok!!");
}
_file_seek = env->GetMethodID(cls, "file_seek", "(II)V");
if(_file_seek != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_seek ok!!");
}
_file_read = env->GetMethodID(cls, "file_read", "(II)[B");
if(_file_read != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_read ok!!");
}
_file_close = env->GetMethodID(cls, "file_close", "(I)V");
if(_file_close != 0) {
__android_log_print(ANDROID_LOG_INFO,"godot","*******GOT METHOD _file_close ok!!");
}
// (*env)->CallVoidMethod(env,obj,aMethodID, myvar);
}
FileAccessJAndroid::FileAccessJAndroid()
{
id=0;
}
FileAccessJAndroid::~FileAccessJAndroid()
{
if (is_open())
close();
}
|