* added __version__ to main.py * package name changed from io.lbry.lbrynet to io.lbry.browser * removed unnecessary WRITE_EXTERNAL_STORAGE permission from AndroidManifest template, buildozer.spec updates and some cleanup
123 lines
No EOL
3.8 KiB
Java
123 lines
No EOL
3.8 KiB
Java
package io.lbry.browser;
|
|
|
|
import android.content.Intent;
|
|
import android.os.Binder;
|
|
import android.os.IBinder;
|
|
import android.util.Log;
|
|
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.FileOutputStream;
|
|
import java.io.FileWriter;
|
|
import java.io.InputStream;
|
|
|
|
import org.kivy.android.PythonService;
|
|
import org.renpy.android.AssetExtract;
|
|
import org.renpy.android.ResourceManager;
|
|
|
|
public class LbrynetTestRunnerService extends PythonService {
|
|
|
|
public static String TAG = "LbrynetTestRunnerService";
|
|
|
|
public static LbrynetTestRunnerService serviceInstance;
|
|
|
|
@Override
|
|
public int onStartCommand(Intent intent, int flags, int startId) {
|
|
// Extract files
|
|
File app_root_file = new File(getAppRoot());
|
|
unpackData("private", app_root_file);
|
|
|
|
if (intent == null) {
|
|
intent = ServiceHelper.buildIntent(
|
|
getApplicationContext(), "", LbrynetTestRunnerService.class, "testrunnerservice");
|
|
}
|
|
|
|
serviceInstance = this;
|
|
return super.onStartCommand(intent, flags, startId);
|
|
}
|
|
|
|
@Override
|
|
public void onDestroy() {
|
|
serviceInstance = null;
|
|
super.onDestroy();
|
|
}
|
|
|
|
public void broadcastTestRunnerOutput(String output) {
|
|
Intent intent = new Intent();
|
|
intent.setAction(ServiceControlActivity.TEST_RUNNER_OUTPUT);
|
|
intent.putExtra("output", output);
|
|
sendBroadcast(intent);
|
|
}
|
|
|
|
public void unpackData(final String resource, File target) {
|
|
Log.v(TAG, "UNPACKING!!! " + resource + " " + target.getName());
|
|
|
|
// The version of data in memory and on disk.
|
|
ResourceManager resourceManager = new ResourceManager(getApplicationContext());
|
|
String data_version = resourceManager.getString(resource + "_version");
|
|
String disk_version = null;
|
|
|
|
Log.v(TAG, "Data version is " + data_version);
|
|
|
|
// If no version, no unpacking is necessary.
|
|
if (data_version == null) {
|
|
return;
|
|
}
|
|
|
|
// Check the current disk version, if any.
|
|
String filesDir = target.getAbsolutePath();
|
|
String disk_version_fn = filesDir + "/" + resource + ".version";
|
|
|
|
try {
|
|
byte buf[] = new byte[64];
|
|
InputStream is = new FileInputStream(disk_version_fn);
|
|
int len = is.read(buf);
|
|
disk_version = new String(buf, 0, len);
|
|
is.close();
|
|
} catch (Exception e) {
|
|
disk_version = "";
|
|
}
|
|
|
|
// If the disk data is out of date, extract it and write the
|
|
// version file.
|
|
// if (! data_version.equals(disk_version)) {
|
|
if (! data_version.equals(disk_version)) {
|
|
Log.v(TAG, "Extracting " + resource + " assets.");
|
|
|
|
recursiveDelete(target);
|
|
target.mkdirs();
|
|
|
|
AssetExtract ae = new AssetExtract(getApplicationContext());
|
|
if (!ae.extractTar(resource + ".mp3", target.getAbsolutePath())) {
|
|
//toastError("Could not extract " + resource + " data.");
|
|
Log.e(TAG, "Could not extract " + resource + " data.");
|
|
}
|
|
|
|
try {
|
|
// Write .nomedia.
|
|
new File(target, ".nomedia").createNewFile();
|
|
|
|
// Write version file.
|
|
FileOutputStream os = new FileOutputStream(disk_version_fn);
|
|
os.write(data_version.getBytes());
|
|
os.close();
|
|
} catch (Exception e) {
|
|
Log.w("python", e);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void recursiveDelete(File f) {
|
|
if (f.isDirectory()) {
|
|
for (File r : f.listFiles()) {
|
|
recursiveDelete(r);
|
|
}
|
|
}
|
|
f.delete();
|
|
}
|
|
|
|
public String getAppRoot() {
|
|
String app_root = getApplicationContext().getFilesDir().getAbsolutePath() + "/app";
|
|
return app_root;
|
|
}
|
|
} |