sedMR00v0 2.76 KB
package org.freedesktop.gstreamer;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import android.content.Context;
import android.content.res.AssetManager;

public class GStreamer {
    private static native void nativeInit(Context context) throws Exception;

    public static void init(Context context) throws Exception {
        nativeInit(context);
        copyFonts(context);
        copyCaCertificates(context);
    }

    private static void copyFonts(Context context) {
        AssetManager assetManager = context.getAssets();
        File filesDir = context.getFilesDir();
        File fontsFCDir = new File (filesDir, "fontconfig");
        File fontsDir = new File (fontsFCDir, "fonts");
        File fontsCfg = new File (fontsFCDir, "fonts.conf");

        fontsDir.mkdirs();

        try {
            /* Copy the config file */
            copyFile (assetManager, "fontconfig/fonts.conf", fontsCfg);
            /* Copy the fonts */
            for(String filename : assetManager.list("fontconfig/fonts/truetype")) {
                File font = new File(fontsDir, filename);
                copyFile (assetManager, "fontconfig/fonts/truetype/" + filename, font);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private static void copyCaCertificates(Context context) {
        AssetManager assetManager = context.getAssets();
        File filesDir = context.getFilesDir();
        File sslDir = new File (filesDir, "ssl");
        File certsDir = new File (sslDir, "certs");
        File certs = new File (certsDir, "ca-certificates.crt");

        certsDir.mkdirs();

        try {
            /* Copy the certificates file */
            copyFile (assetManager, "ssl/certs/ca-certificates.crt", certs);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

@INCLUDE_COPY_FILE@    private static void copyFile(AssetManager assetManager, String assetPath, File outFile) throws IOException {
@INCLUDE_COPY_FILE@        InputStream in;
@INCLUDE_COPY_FILE@        OutputStream out;
@INCLUDE_COPY_FILE@        byte[] buffer = new byte[1024];
@INCLUDE_COPY_FILE@        int read;
@INCLUDE_COPY_FILE@
@INCLUDE_COPY_FILE@        if (outFile.exists())
@INCLUDE_COPY_FILE@            outFile.delete();
@INCLUDE_COPY_FILE@
@INCLUDE_COPY_FILE@        in = assetManager.open(assetPath);
@INCLUDE_COPY_FILE@        out = new FileOutputStream (outFile);
@INCLUDE_COPY_FILE@        while((read = in.read(buffer)) != -1){
@INCLUDE_COPY_FILE@          out.write(buffer, 0, read);
@INCLUDE_COPY_FILE@        }
@INCLUDE_COPY_FILE@        in.close();
@INCLUDE_COPY_FILE@        out.flush();
@INCLUDE_COPY_FILE@        out.close();
@INCLUDE_COPY_FILE@   }
}