project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Downloader/DownloadAssets.java
author Medo <smaxein@googlemail.com>
Thu, 19 Jul 2012 22:53:39 +0200
changeset 7344 25b8906f901a
parent 7330 867e4fda496e
child 7476 2fb781bbdd51
permissions -rw-r--r--
Hedgeroid: Modified detection of assets on SD card (should be more reliable)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     1
package org.hedgewars.hedgeroid.Downloader;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     2
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     3
import java.io.File;
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
     4
import java.io.FileNotFoundException;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     5
import java.io.IOException;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     6
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     7
import org.hedgewars.hedgeroid.MainActivity;
6724
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
     8
import org.hedgewars.hedgeroid.R;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     9
import org.hedgewars.hedgeroid.Utils;
6724
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
    10
import org.hedgewars.hedgeroid.Datastructures.Scheme;
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
    11
import org.hedgewars.hedgeroid.Datastructures.Team;
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
    12
import org.hedgewars.hedgeroid.Datastructures.Weapon;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    13
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    14
import android.content.res.AssetManager;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    15
import android.os.AsyncTask;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    16
import android.util.Log;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    17
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    18
public class DownloadAssets extends AsyncTask<Object, Long, Boolean> {
7344
25b8906f901a Hedgeroid: Modified detection of assets on SD card (should be more reliable)
Medo <smaxein@googlemail.com>
parents: 7330
diff changeset
    19
	private static final String VERSION_FILENAME = "assetsversion.txt";
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    20
	private final MainActivity act;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    21
	
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    22
	public DownloadAssets(MainActivity act){
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    23
		this.act = act;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    24
	}
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    25
	
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    26
	private void copyFileOrDir(AssetManager assetManager, File target, String assetPath) throws IOException {
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    27
		try {
7326
1fae07363938 Hedgeroid: Simplified some code
Medo <smaxein@googlemail.com>
parents: 7318
diff changeset
    28
			Utils.writeStreamToFile(assetManager.open(assetPath), target);
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    29
		} catch(FileNotFoundException e) {
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    30
			/*
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    31
			 * I can't find a better way to figure out whether an asset entry is
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    32
			 * a file or a directory. Checking if assetManager.list(assetPath)
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    33
			 * is empty is a bit cleaner, but SLOW.
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    34
			 */
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    35
			if (!target.isDirectory() && !target.mkdir()) {
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    36
				throw new IOException("Unable to create directory "+target);
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    37
			}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    38
			for (String asset : assetManager.list(assetPath)) {
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    39
				copyFileOrDir(assetManager, new File(target, asset), assetPath + "/" + asset);
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    40
			}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    41
		}
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    42
	}
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    43
	
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    44
	@Override
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    45
	protected Boolean doInBackground(Object... params) {
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    46
		try {
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    47
			Utils.resRawToFilesDir(act, R.array.schemes, Scheme.DIRECTORY_SCHEME);
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    48
			Utils.resRawToFilesDir(act, R.array.weapons, Weapon.DIRECTORY_WEAPON);
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    49
			Utils.resRawToFilesDir(act, R.array.teams, Team.DIRECTORY_TEAMS);
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    50
			copyFileOrDir(act.getAssets(), Utils.getDataPathFile(act), "Data");
7344
25b8906f901a Hedgeroid: Modified detection of assets on SD card (should be more reliable)
Medo <smaxein@googlemail.com>
parents: 7330
diff changeset
    51
			copyFileOrDir(act.getAssets(), new File(Utils.getCachePath(act), VERSION_FILENAME), VERSION_FILENAME);
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    52
			return Boolean.TRUE;
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    53
		} catch(IOException e) {
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    54
			Log.e("DownloadAssets", e.getMessage(), e);
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    55
			return Boolean.FALSE;
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    56
		}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    57
	}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    58
	
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    59
	@Override
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    60
	protected void onPostExecute(Boolean result){
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    61
		act.onAssetsDownloaded(result);
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    62
	}
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    63
}