blob: 4bbc74f34ad269c773e81a21e32f2a483516eab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package cgeo.geocaching.utils;
import cgeo.geocaching.CgeoApplication;
import cgeo.geocaching.R;
import org.eclipse.jdt.annotation.NonNull;
import android.content.Context;
import android.os.Environment;
import android.widget.Toast;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class DebugUtils {
private DebugUtils() {
// utility class
}
public static void createMemoryDump(final @NonNull Context context) {
try {
final Date now = new Date();
final SimpleDateFormat fileNameDateFormat = new SimpleDateFormat(
"yyyy-MM-dd_hh-mm", Locale.US);
File file = FileUtils.getUniqueNamedFile(Environment
.getExternalStorageDirectory().getPath()
+ File.separatorChar
+ "cgeo_dump_"
+ fileNameDateFormat.format(now) + ".hprof");
android.os.Debug.dumpHprofData(file.getPath());
Toast.makeText(CgeoApplication.getInstance()
.getApplicationContext(),
context.getString(R.string.init_memory_dumped,
file.getAbsolutePath()),
Toast.LENGTH_LONG).show();
ShareUtils.share(context, file, R.string.init_memory_dump);
} catch (IOException e) {
Log.e("createMemoryDump", e);
}
}
}
|