Added Platform::TmpPathForFile() and Platform::SettingsPathForFile()

Closed #492 - Save viewport on Android when external memory is ejected
This commit is contained in:
Alex Zolotarev 2012-01-06 22:13:29 +03:00 committed by Alex Zolotarev
parent 99a00dda73
commit 3932615f2a
10 changed files with 80 additions and 13 deletions

View file

@ -36,11 +36,13 @@ extern "C"
}
JNIEXPORT void JNICALL
Java_com_mapswithme_maps_MWMActivity_nativeInit(JNIEnv * env, jobject thiz, jstring apkPath, jstring storagePath)
Java_com_mapswithme_maps_MWMActivity_nativeInit(JNIEnv * env, jobject thiz,
jstring apkPath, jstring storagePath, jstring tmpPath, jstring settingsPath)
{
if (!g_framework)
{
android::Platform::Instance().Initialize(env, apkPath, storagePath);
android::Platform::Instance().Initialize(env, apkPath, storagePath,
tmpPath, settingsPath);
g_framework = new android::Framework(g_jvm);
}
}

View file

@ -6,10 +6,14 @@
namespace android
{
void Platform::Initialize(JNIEnv * env, jstring apkPath, jstring storagePath)
void Platform::Initialize(JNIEnv * env, jstring apkPath, jstring storagePath,
jstring tmpPath, jstring settingsPath)
{
m_resourcesDir = jni::ToString(env, apkPath);
m_writableDir = jni::ToString(env, storagePath);
m_tmpDir = jni::ToString(env, tmpPath);
m_settingsDir = jni::ToString(env, settingsPath);
LOG(LDEBUG, ("Apk path = ", m_resourcesDir));
LOG(LDEBUG, ("Writable path = ", m_writableDir));
}

View file

@ -9,7 +9,8 @@ namespace android
class Platform : public ::Platform
{
public:
void Initialize(JNIEnv * env, jstring apkPath, jstring storagePath);
void Initialize(JNIEnv * env, jstring apkPath, jstring storagePath,
jstring tmpPath, jstring settingsPath);
static Platform & Instance();
};

View file

@ -53,11 +53,20 @@ public class MWMActivity extends NvEventQueueActivity implements
private String getDataStoragePath()
{
String storagePath = Environment.getExternalStorageDirectory()
.getAbsolutePath();
final String storagePath = Environment.getExternalStorageDirectory().getAbsolutePath();
return storagePath.concat(String.format("/Android/data/%s/files/", PACKAGE_NAME));
}
private String getTmpPath()
{
return getCacheDir().getAbsolutePath() + "/";
}
private String getSettingsPath()
{
return getFilesDir().getAbsolutePath() + "/";
}
private void checkMeasurementSystem()
{
int u;
@ -157,7 +166,7 @@ public class MWMActivity extends NvEventQueueActivity implements
final File f = new File(storagePath);
f.mkdirs();
nativeInit(getAppBundlePath(), storagePath);
nativeInit(getAppBundlePath(), storagePath, getTmpPath(), getSettingsPath());
setupLanguages();
@ -352,7 +361,7 @@ public class MWMActivity extends NvEventQueueActivity implements
private native void nativeStorageConnected();
private native void nativeStorageDisconnected();
private native void nativeInit(String apkPath, String storagePath);
private native void nativeInit(String apkPath, String storagePath, String tmpPath, String settingsPath);
private native void nativeLocationStatusChanged(int newStatus);
private native void nativeLocationUpdated(long time, double lat, double lon, float accuracy);
private native void nativeCompassUpdated(long time, double magneticNorth, double trueNorth, float accuracy);

View file

@ -16,14 +16,24 @@ DECLARE_EXCEPTION(NotImplementedException, RootException);
class Platform
{
protected:
string m_writableDir, m_resourcesDir;
/// Usually read-only directory for application resources
string m_resourcesDir;
/// Writable directory to store downloaded map data
/// @note on some systems it can point to external ejectable storage
string m_writableDir;
/// Temporary directory, can be cleaned up by the system
string m_tmpDir;
/// Writable directory to store persistent application data
string m_settingsDir;
class PlatformImpl;
/// Used only on those platforms where needed
PlatformImpl * m_impl;
static bool IsFileExistsByFullPath(string const & filePath);
/// Internal function to use files from writable dir if they override the same in the resources
/// Internal function to use files from writable dir
/// if they override the same file in the resources dir
string ReadPathForFile(string const & file) const
{
string fullPath = m_writableDir + file;
@ -48,6 +58,17 @@ public:
/// @return resource dir (on some platforms it's differ from Writable dir)
string ResourcesDir() const { return m_resourcesDir; }
/// @return path for directory with temporary files with slash at the end
string TmpDir() const { return m_tmpDir; }
/// @return full path to file in the temporary directory
string TmpPathForFile(string const & file) const { return TmpDir() + file; }
/// @return path for directory in the persistent memory, can be the same
/// as WritableDir, but on some platforms it's different
string SettingsDir() const { return m_settingsDir; }
/// @return full path to file in the settings directory
string SettingsPathForFile(string const & file) const { return SettingsDir() + file; }
/// @return reader for file decriptor.
/// @throws FileAbsentException
/// @param[in] file descriptor which we want to read

View file

@ -50,6 +50,9 @@ Platform::Platform()
NSString * docsDir = [dirPaths objectAtIndex:0];
m_writableDir = [docsDir UTF8String];
m_writableDir += '/';
m_settingsDir = m_writableDir;
m_tmpDir = [NSHomeDirectory() UTF8String];
m_tmpDir += '/tmp/';
// Hardcoding screen resolution depending on the device we are running.
m_impl->m_visualScale = 1.0;

View file

@ -41,9 +41,17 @@ Platform::Platform()
// @TODO implement correct resources and writable directories for public releases
m_resourcesDir = path + "../../data/";
m_writableDir = m_resourcesDir;
m_settingsDir = m_writableDir;
char * tmpDir = ::getenv("TMPDIR");
if (tmpDir)
m_tmpDir = tmpDir;
else
m_tmpDir = P_tmpdir;
LOG(LDEBUG, ("Resources directory:", m_resourcesDir));
LOG(LDEBUG, ("Writable directory:", m_writableDir));
LOG(LDEBUG, ("Tmp directory:", m_tmpDir));
LOG(LDEBUG, ("Settings directory:", m_settingsDir));
}
Platform::~Platform()
@ -58,7 +66,7 @@ bool Platform::IsFileExistsByFullPath(string const & filePath)
int Platform::CpuCores() const
{
long numCPU = sysconf(_SC_NPROCESSORS_ONLN);
const long numCPU = sysconf(_SC_NPROCESSORS_ONLN);
if (numCPU >= 1)
return static_cast<int>(numCPU);
return 1;

View file

@ -54,8 +54,18 @@ Platform::Platform()
}
[pool release];
m_settingsDir = m_writableDir;
NSString * tempDir = NSTemporaryDirectory();
if (tempDir == nil)
tempDir = @"/tmp";
m_tmpDir = [tempDir UTF8String];
m_tmpDir += '/';
LOG(LDEBUG, ("Resources Directory:", m_resourcesDir));
LOG(LDEBUG, ("Writable Directory:", m_writableDir));
LOG(LDEBUG, ("Tmp Directory:", m_tmpDir));
LOG(LDEBUG, ("Settings Directory:", m_settingsDir));
}
Platform::~Platform()

View file

@ -73,8 +73,15 @@ Platform::Platform()
}
FileWriter::DeleteFileX(m_resourcesDir + "mapswithmetmptestfile");
m_settingsDir = m_writableDir;
char pathBuf[MAX_PATH] = {0};
GetTempPathA(MAX_PATH, pathBuf);
m_tmpDir = pathBuf;
LOG(LDEBUG, ("Resources Directory:", m_resourcesDir));
LOG(LDEBUG, ("Writable Directory:", m_writableDir));
LOG(LDEBUG, ("Tmp Directory:", m_tmpDir));
LOG(LDEBUG, ("Settings Directory:", m_settingsDir));
}
Platform::~Platform()

View file

@ -23,7 +23,9 @@ namespace Settings
try
{
string str;
ReaderPtr<Reader>(GetPlatform().GetReader(SETTINGS_FILE_NAME)).ReadAsString(str);
{
FileReader(GetPlatform().SettingsPathForFile(SETTINGS_FILE_NAME)).ReadAsString(str);
}
istringstream stream(str);
string line;
while (stream.good())
@ -53,7 +55,7 @@ namespace Settings
// @TODO add mutex
try
{
FileWriter file(GetPlatform().WritablePathForFile(SETTINGS_FILE_NAME));
FileWriter file(GetPlatform().SettingsPathForFile(SETTINGS_FILE_NAME));
for (ContainerT::const_iterator it = m_values.begin(); it != m_values.end(); ++it)
{
string line(it->first);