forked from organicmaps/organicmaps-tmp
fixes according to code review.
This commit is contained in:
parent
afdc3a38a2
commit
939431e46e
14 changed files with 61 additions and 76 deletions
|
@ -10,7 +10,6 @@ void InitNVEvent(JavaVM * jvm);
|
|||
|
||||
extern "C"
|
||||
{
|
||||
|
||||
JNIEXPORT jint JNICALL
|
||||
JNI_OnLoad(JavaVM * jvm, void *)
|
||||
{
|
||||
|
@ -27,7 +26,6 @@ extern "C"
|
|||
{
|
||||
g_jvm = 0;
|
||||
}
|
||||
|
||||
} // extern "C"
|
||||
|
||||
|
||||
|
@ -44,8 +42,9 @@ namespace jni
|
|||
return mid;
|
||||
}
|
||||
|
||||
string ToString(JNIEnv * env, jstring str)
|
||||
string ToString(jstring str)
|
||||
{
|
||||
JNIEnv * env = GetEnv();
|
||||
string result;
|
||||
char const * utfBuffer = env->GetStringUTFChars(str, 0);
|
||||
if (utfBuffer)
|
||||
|
|
|
@ -11,7 +11,7 @@ namespace jni
|
|||
// "()V" - void function returning void;
|
||||
// "(Ljava/lang/String;)V" - String function returning void;
|
||||
jmethodID GetJavaMethodID(JNIEnv * env, jobject obj, char const * fn, char const * sig);
|
||||
string ToString(JNIEnv * env, jstring str);
|
||||
string ToString(jstring str);
|
||||
JNIEnv * GetEnv();
|
||||
JavaVM * GetJVM();
|
||||
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
|
||||
#include "../../../../../coding/zip_reader.hpp"
|
||||
#include "../../../../../coding/url_encode.hpp"
|
||||
#include "../../../../../coding/reader_streambuf.hpp"
|
||||
#include "../../../../../coding/internal/file_data.hpp"
|
||||
|
||||
#include "../../../../../platform/platform.hpp"
|
||||
#include "../../../../../platform/http_request.hpp"
|
||||
|
@ -68,26 +70,14 @@ extern "C"
|
|||
Java_com_mapswithme_maps_DownloadResourcesActivity_nativeGetBytesToDownload(JNIEnv * env, jobject thiz,
|
||||
jstring apkPath, jstring sdcardPath)
|
||||
{
|
||||
{
|
||||
char const * strApkPath = env->GetStringUTFChars(apkPath, 0);
|
||||
if (!strApkPath)
|
||||
return ERR_NOT_ENOUGH_MEMORY;
|
||||
g_apkPath = strApkPath;
|
||||
env->ReleaseStringUTFChars(apkPath, strApkPath);
|
||||
|
||||
char const * strSdcardPath = env->GetStringUTFChars(sdcardPath, 0);
|
||||
if (!strSdcardPath)
|
||||
return ERR_NOT_ENOUGH_MEMORY;
|
||||
g_sdcardPath = strSdcardPath;
|
||||
env->ReleaseStringUTFChars(sdcardPath, strSdcardPath);
|
||||
}
|
||||
g_apkPath = jni::ToString(apkPath);
|
||||
g_sdcardPath = jni::ToString(sdcardPath);
|
||||
|
||||
jint totalBytesToDownload = 0;
|
||||
|
||||
string buffer;
|
||||
ReaderPtr<Reader>(GetPlatform().GetReader("external_resources.txt")).ReadAsString(buffer);
|
||||
ReaderStreamBuf buffer(GetPlatform().GetReader("external_resources.txt"));
|
||||
|
||||
stringstream in(buffer);
|
||||
istream in(&buffer);
|
||||
|
||||
string name;
|
||||
int size;
|
||||
|
@ -144,7 +134,7 @@ extern "C"
|
|||
{
|
||||
int errorCode = 0;
|
||||
|
||||
CHECK(req.Status() != downloader::HttpRequest::EInProgress, ("should be either Completed or Failed"));
|
||||
ASSERT(req.Status() != downloader::HttpRequest::EInProgress, ("should be either Completed or Failed"));
|
||||
|
||||
switch (req.Status())
|
||||
{
|
||||
|
@ -158,7 +148,7 @@ extern "C"
|
|||
|
||||
FileToDownload & curFile = g_filesToDownload.back();
|
||||
|
||||
LOG(LINFO, ("finished downloading", curFile.m_fileName, "sized", curFile.m_fileSize, "bytes"));
|
||||
LOG(LDEBUG, ("finished downloading", curFile.m_fileName, "sized", curFile.m_fileSize, "bytes"));
|
||||
|
||||
/// slight hack, check manually for Maps extension and AddMap accordingly
|
||||
if (curFile.m_fileName.find(".mwm") != string::npos)
|
||||
|
@ -169,26 +159,26 @@ extern "C"
|
|||
|
||||
g_totalDownloadedBytes += curFile.m_fileSize;
|
||||
|
||||
LOG(LINFO, ("totalDownloadedBytes:", g_totalDownloadedBytes));
|
||||
LOG(LDEBUG, ("totalDownloadedBytes:", g_totalDownloadedBytes));
|
||||
|
||||
g_filesToDownload.pop_back();
|
||||
|
||||
JNIEnv * env = jni::GetEnv();
|
||||
|
||||
jmethodID onFinishMethod = env->GetMethodID(env->GetObjectClass(*obj.get()), "onDownloadFinished", "(I)V");
|
||||
CHECK(onFinishMethod, ("Not existing method: void onDownloadFinished(int)"));
|
||||
ASSERT(onFinishMethod, ("Not existing method: void onDownloadFinished(int)"));
|
||||
|
||||
env->CallVoidMethod(*obj.get(), onFinishMethod, errorCode);
|
||||
}
|
||||
|
||||
void DownloadFileProgress(shared_ptr<jobject> obj, downloader::HttpRequest & req)
|
||||
{
|
||||
LOG(LINFO, (req.Progress().first, "bytes for", g_filesToDownload.back().m_fileName, "was downloaded"));
|
||||
LOG(LDEBUG, (req.Progress().first, "bytes for", g_filesToDownload.back().m_fileName, "was downloaded"));
|
||||
|
||||
JNIEnv * env = jni::GetEnv();
|
||||
|
||||
jmethodID onProgressMethod = env->GetMethodID(env->GetObjectClass(*obj.get()), "onDownloadProgress", "(IIII)V");
|
||||
CHECK(onProgressMethod, ("Not existing method: void onDownloadProgress(int, int, int, int)"));
|
||||
ASSERT(onProgressMethod, ("Not existing method: void onDownloadProgress(int, int, int, int)"));
|
||||
|
||||
FileToDownload & curFile = g_filesToDownload.back();
|
||||
|
||||
|
@ -212,7 +202,7 @@ extern "C"
|
|||
{
|
||||
FileToDownload & curFile = g_filesToDownload.back();
|
||||
|
||||
LOG(LINFO, ("finished URL list download for", curFile.m_fileName));
|
||||
LOG(LDEBUG, ("finished URL list download for", curFile.m_fileName));
|
||||
|
||||
downloader::ParseServerList(req.Data(), curFile.m_urls);
|
||||
|
||||
|
@ -221,7 +211,7 @@ extern "C"
|
|||
curFile.m_urls[i] = curFile.m_urls[i] + OMIM_OS_NAME "/"
|
||||
+ strings::to_string(g_framework->Storage().GetCurrentVersion()) + "/"
|
||||
+ UrlEncode(curFile.m_fileName);
|
||||
LOG(LINFO, (curFile.m_urls[i]));
|
||||
LOG(LDEBUG, (curFile.m_urls[i]));
|
||||
}
|
||||
|
||||
downloader::HttpRequest::GetFile(curFile.m_urls,
|
||||
|
@ -262,20 +252,8 @@ extern "C"
|
|||
Java_com_mapswithme_maps_DownloadResourcesActivity_nativeMoveMaps(JNIEnv * env, jobject thiz,
|
||||
jstring fromPath, jstring toPath)
|
||||
{
|
||||
string from, to;
|
||||
{
|
||||
char const * strFrom = env->GetStringUTFChars(fromPath, 0);
|
||||
if (!strFrom)
|
||||
return;
|
||||
from = strFrom;
|
||||
env->ReleaseStringUTFChars(fromPath, strFrom);
|
||||
|
||||
char const * strTo = env->GetStringUTFChars(toPath, 0);
|
||||
if (!strTo)
|
||||
return;
|
||||
to = strTo;
|
||||
env->ReleaseStringUTFChars(toPath, strTo);
|
||||
}
|
||||
string from = jni::ToString(fromPath);
|
||||
string to = jni::ToString(toPath);
|
||||
|
||||
Platform & pl = GetPlatform();
|
||||
Platform::FilesList files;
|
||||
|
@ -283,8 +261,8 @@ extern "C"
|
|||
pl.GetFilesInDir(from, "*" DATA_FILE_EXTENSION, files);
|
||||
for (size_t i = 0; i < files.size(); ++i)
|
||||
{
|
||||
LOG(LINFO, (from + files[i], to + files[i]));
|
||||
rename((from + files[i]).c_str(), (to + files[i]).c_str());
|
||||
LOG(LDEBUG, ("moving map from:", from + files[i], ", to:", to + files[i]));
|
||||
my::RenameFileX((from + files[i]).c_str(), (to + files[i]).c_str());
|
||||
}
|
||||
|
||||
// Delete not finished *.downloading files
|
||||
|
@ -292,7 +270,7 @@ extern "C"
|
|||
pl.GetFilesInDir(from, "*" DOWNLOADING_FILE_EXTENSION, files);
|
||||
pl.GetFilesInDir(from, "*" RESUME_FILE_EXTENSION, files);
|
||||
for (size_t i = 0; i < files.size(); ++i)
|
||||
remove((from + files[i]).c_str());
|
||||
my::DeleteFileX((from + files[i]).c_str());
|
||||
}
|
||||
|
||||
JNIEXPORT jstring JNICALL
|
||||
|
|
|
@ -33,6 +33,6 @@ extern "C"
|
|||
if (!g_framework)
|
||||
g_framework = new android::Framework();
|
||||
|
||||
g_framework->SetEmptyModelMessage(jni::ToString(env, emptyModelMessage));
|
||||
g_framework->SetEmptyModelMessage(jni::ToString(emptyModelMessage));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,12 +35,12 @@ extern "C"
|
|||
|
||||
int country() const
|
||||
{
|
||||
return jni::GetEnv()->GetIntField(*m_self.get(), m_groupID);
|
||||
return jni::GetEnv()->GetIntField(*m_self.get(), m_countryID);
|
||||
}
|
||||
|
||||
int region() const
|
||||
{
|
||||
return jni::GetEnv()->GetIntField(*m_self.get(), m_groupID);
|
||||
return jni::GetEnv()->GetIntField(*m_self.get(), m_regionID);
|
||||
}
|
||||
|
||||
storage::TIndex const toNative() const
|
||||
|
@ -50,15 +50,15 @@ extern "C"
|
|||
|
||||
static jobject toJava(storage::TIndex const & idx)
|
||||
{
|
||||
LOG(LINFO, ("constructing Java Index object from ", idx.m_group, idx.m_country, idx.m_region));
|
||||
LOG(LDEBUG, ("constructing Java Index object from ", idx.m_group, idx.m_country, idx.m_region));
|
||||
|
||||
JNIEnv * env = jni::GetEnv();
|
||||
|
||||
jclass klass = env->FindClass("com/mapswithme/maps/MapStorage$Index");
|
||||
CHECK(klass, ("Can't find java class com/mapswithme/maps/MapStorage$Index"));
|
||||
ASSERT(klass, ("Can't find java class com/mapswithme/maps/MapStorage$Index"));
|
||||
|
||||
jmethodID methodId = env->GetMethodID(klass, "<init>", "(III)V");
|
||||
CHECK(methodId, ("Can't find java constructor in com/mapswithme/maps/MapStorage$Index"));
|
||||
ASSERT(methodId, ("Can't find java constructor in com/mapswithme/maps/MapStorage$Index"));
|
||||
|
||||
return env->NewObject(klass, methodId, idx.m_group, idx.m_country, idx.m_region);
|
||||
}
|
||||
|
|
|
@ -12,10 +12,8 @@ class Platform::PlatformImpl
|
|||
{
|
||||
public:
|
||||
|
||||
PlatformImpl()
|
||||
{
|
||||
m_preCachingDepth = 3;
|
||||
}
|
||||
PlatformImpl() : m_preCachingDepth(3)
|
||||
{}
|
||||
|
||||
size_t m_preCachingDepth;
|
||||
};
|
||||
|
@ -87,12 +85,12 @@ namespace android
|
|||
|
||||
m_impl = new PlatformImpl();
|
||||
|
||||
m_resourcesDir = jni::ToString(env, apkPath);
|
||||
m_writableDir = jni::ToString(env, storagePath);
|
||||
m_settingsDir = jni::ToString(env, settingsPath);
|
||||
m_resourcesDir = jni::ToString(apkPath);
|
||||
m_writableDir = jni::ToString(storagePath);
|
||||
m_settingsDir = jni::ToString(settingsPath);
|
||||
|
||||
m_localTmpPath = jni::ToString(env, tmpPath);
|
||||
m_externalTmpPath = jni::ToString(env, extTmpPath);
|
||||
m_localTmpPath = jni::ToString(tmpPath);
|
||||
m_externalTmpPath = jni::ToString(extTmpPath);
|
||||
// By default use external temporary folder
|
||||
m_tmpDir = m_externalTmpPath;
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
android:layout_gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Download"
|
||||
android:text="@string/download"
|
||||
android:onClick="onDownloadClicked"
|
||||
/>
|
||||
|
||||
|
@ -64,7 +64,7 @@
|
|||
android:layout_gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Cancel"
|
||||
android:text="@string/cancel"
|
||||
android:onClick="onCancelClicked"
|
||||
android:visibility="gone"
|
||||
/>
|
||||
|
@ -88,7 +88,7 @@
|
|||
android:textSize="12sp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Try Again"
|
||||
android:text="@string/try_again"
|
||||
android:onClick="onTryAgainClicked"
|
||||
android:visibility="gone"
|
||||
/>
|
||||
|
@ -119,7 +119,7 @@
|
|||
android:id="@+id/download_country_checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/download_country"
|
||||
android:text="@string/download_country_ask"
|
||||
android:visibility="gone"
|
||||
/>
|
||||
|
||||
|
|
|
@ -23,4 +23,5 @@
|
|||
<string name="empty_model">Um die Karte dieses Ortes\nherunterzuladen, berühren Sie\n bitte die Taste in der unteren\n Hälfte des Bildschirms</string>
|
||||
<string name="unsupported_phone">Das Programm braucht OpenGL um funktionnieren zu können. Leider wird ihr Gerät nicht unterschtüzt.</string>
|
||||
<string name="map">Karte</string>
|
||||
<string name="download">Herunterladen</string>
|
||||
</resources>
|
||||
|
|
|
@ -24,4 +24,5 @@
|
|||
<string name="unsupported_phone">Un hardware aceleró OpenGL se requiere. Desgraciadamente, el dispositivo móvil no es compatible.</string>
|
||||
<string name="loading">Carga de MapsWithMe...</string>
|
||||
<string name="map">Mapa</string>
|
||||
<string name="download">Descargar</string>
|
||||
</resources>
|
||||
|
|
|
@ -24,4 +24,5 @@
|
|||
<string name="unsupported_phone">Le programme a besoin d`OpenGL pour travailler. Votre appareil n`est pas appuyé maleuresement.</string>
|
||||
<string name="loading">Chargement MapsWithMe...</string>
|
||||
<string name="map">Carte</string>
|
||||
<string name="download">Charger</string>
|
||||
</resources>
|
||||
|
|
|
@ -32,7 +32,11 @@
|
|||
<string name="free_space_for_country">Для загрузки %2$s нужно %1$s свободного места</string>
|
||||
<string name="map">Карта</string>
|
||||
<string name="download_resources">Для запуска программы нужно загрузить\n %1$.3f%2$s необходимых ресурсов.</string>
|
||||
<string name="download_country">Загрузить ?</string>
|
||||
<string name="getting_position">Получаем местоположение</string>
|
||||
<string name="download_resources_continue">Перейти на карту</string>
|
||||
<string name="downloading_country_can_proceed">Пока загружается %s \nвы можете пользоваться приложением.</string>
|
||||
<string name="download_country_ask">Загрузить %d?</string>
|
||||
<string name="download">Загрузить</string>
|
||||
<string name="cancel">Отменить</string>
|
||||
<string name="try_again">Попробовать еще раз</string>
|
||||
</resources>
|
||||
|
|
|
@ -32,8 +32,11 @@
|
|||
<string name="free_space_for_country">Please free %1$s on your device first in order to download %2$s</string>
|
||||
<string name="map">Map</string>
|
||||
<string name="download_resources">Program needs to download \n%1$.1f%2$s of mandatory resources.</string>
|
||||
<string name="download_country">Download %s?</string>
|
||||
<string name="download_location_map"/>
|
||||
<string name="getting_position">Getting current position</string>
|
||||
<string name="download_resources_continue">Go to map</string>
|
||||
<string name="downloading_country_can_proceed">Downloading %s. You can now\n"proceed to the map.</string>
|
||||
<string name="download_country_ask">Download %s?</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="try_again">Try again</string>
|
||||
</resources>
|
||||
|
|
|
@ -82,7 +82,7 @@ public class DownloadResourcesActivity extends Activity implements LocationServi
|
|||
|
||||
private void setDownloadMessage(int bytesToDownload)
|
||||
{
|
||||
Log.w(TAG, "prepareFilesDownload, bytesToDownload:" + bytesToDownload);
|
||||
Log.d(TAG, "prepareFilesDownload, bytesToDownload:" + bytesToDownload);
|
||||
|
||||
if (bytesToDownload < 1024 * 1024)
|
||||
mMsgView.setText(String.format(getString(R.string.download_resources),
|
||||
|
@ -181,13 +181,13 @@ public class DownloadResourcesActivity extends Activity implements LocationServi
|
|||
enableAutomaticStandby();
|
||||
if (result == ERR_NO_MORE_FILES)
|
||||
{
|
||||
Log.w(TAG, "finished files download");
|
||||
Log.i(TAG, "finished files download");
|
||||
|
||||
if (mHasLocation && mDownloadCountryCheckBox.isChecked())
|
||||
{
|
||||
mDownloadCountryCheckBox.setVisibility(View.GONE);
|
||||
mMsgView.setText("Downloading " + mCountryName + ". You can now\n" +
|
||||
"proceed to the map");
|
||||
mMsgView.setText(String.format(getString(R.string.downloading_country_can_proceed),
|
||||
mCountryName));
|
||||
|
||||
MapStorage.Index idx = mMapStorage.findIndexByName(mCountryName);
|
||||
|
||||
|
@ -281,7 +281,7 @@ public class DownloadResourcesActivity extends Activity implements LocationServi
|
|||
|
||||
public void onDownloadProgress(int currentTotal, int currentProgress, int globalTotal, int globalProgress)
|
||||
{
|
||||
Log.w(TAG, "curTotal:" + currentTotal + ", curProgress:" + currentProgress
|
||||
Log.d(TAG, "curTotal:" + currentTotal + ", curProgress:" + currentProgress
|
||||
+ ", glbTotal:" + globalTotal + ", glbProgress:" + globalProgress);
|
||||
|
||||
if (mProgress != null)
|
||||
|
@ -322,18 +322,18 @@ public class DownloadResourcesActivity extends Activity implements LocationServi
|
|||
|
||||
CheckBox checkBox = (CheckBox)findViewById(R.id.download_country_checkbox);
|
||||
|
||||
Log.w(TAG, "Location : " + lat + ", " + lon);
|
||||
Log.i(TAG, "Searching for country name at location lat=" + lat + ", lon=" + lon);
|
||||
|
||||
checkBox.setVisibility(View.VISIBLE);
|
||||
mCountryName = nativeGetCountryName(lat, lon);
|
||||
mHasLocation = true;
|
||||
checkBox.setText(String.format(getString(R.string.download_country), mCountryName));
|
||||
checkBox.setText(String.format(getString(R.string.download_country_ask), mCountryName));
|
||||
|
||||
mLocationService.stopUpdate(this);
|
||||
mLocationService = null;
|
||||
}
|
||||
|
||||
Log.w(TAG, "tryCount:" + mLocationsCount);
|
||||
Log.d(TAG, "tryCount:" + mLocationsCount);
|
||||
++mLocationsCount;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -108,7 +108,7 @@ string Platform::DeviceName() const
|
|||
|
||||
void Platform::GetFontNames(FilesList & res) const
|
||||
{
|
||||
LOG(LINFO, ("searching for font in", WritableDir()));
|
||||
LOG(LDEBUG, ("searching for fonts in:", WritableDir()));
|
||||
GetFilesInDir(WritableDir(), "*.ttf", res);
|
||||
sort(res.begin(), res.end());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue