From 6d4831c725223ce806095c9bb0bd3a2e0401522d Mon Sep 17 00:00:00 2001 From: Reiko Noetzold Date: Wed, 14 Dec 2016 20:06:44 +0100 Subject: [PATCH 01/26] first commit TouchRecorder for Android --- .gitignore | 9 +- .idea/.name | 1 + .idea/compiler.xml | 22 ++ .idea/copyright/profiles_settings.xml | 3 + .idea/encodings.xml | 6 + .idea/gradle.xml | 24 ++ .idea/misc.xml | 80 +++++ .idea/modules.xml | 9 + .idea/runConfigurations.xml | 12 + .idea/vcs.xml | 6 + AI-Experiment/.gitignore | 1 + app/.gitignore | 1 + app/build.gradle | 26 ++ app/hs_err_pid3480.log | 303 ++++++++++++++++++ app/hs_err_pid364.log | 176 ++++++++++ app/hs_err_pid3896.log | 163 ++++++++++ app/hs_err_pid8516.log | 150 +++++++++ app/hs_err_pid9056.log | 115 +++++++ app/proguard-rules.pro | 17 + .../de/reikodd/ddweki/ApplicationTest.java | 13 + app/src/main/AndroidManifest.xml | 18 ++ .../java/de/reikodd/ddweki/DrawingView.java | 248 ++++++++++++++ .../java/de/reikodd/ddweki/JSONCreate.java | 36 +++ .../java/de/reikodd/ddweki/MainActivity.java | 42 +++ .../java/de/reikodd/ddweki/URLConnection.java | 54 ++++ app/src/main/res/drawable/icon.png | Bin 0 -> 2574 bytes app/src/main/res/layout/activity_main.xml | 65 ++++ app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10486 bytes app/src/main/res/values/colors.xml | 6 + app/src/main/res/values/strings.xml | 3 + app/src/main/res/values/styles.xml | 11 + .../de/reikodd/ddweki/ExampleUnitTest.java | 15 + build.gradle | 23 ++ gradle.properties | 18 ++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 53636 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 160 +++++++++ gradlew.bat | 90 ++++++ settings.gradle | 1 + 43 files changed, 1932 insertions(+), 1 deletion(-) create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/vcs.xml create mode 100644 AI-Experiment/.gitignore create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/hs_err_pid3480.log create mode 100644 app/hs_err_pid364.log create mode 100644 app/hs_err_pid3896.log create mode 100644 app/hs_err_pid8516.log create mode 100644 app/hs_err_pid9056.log create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/de/reikodd/ddweki/ApplicationTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/de/reikodd/ddweki/DrawingView.java create mode 100644 app/src/main/java/de/reikodd/ddweki/JSONCreate.java create mode 100644 app/src/main/java/de/reikodd/ddweki/MainActivity.java create mode 100644 app/src/main/java/de/reikodd/ddweki/URLConnection.java create mode 100644 app/src/main/res/drawable/icon.png create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 app/src/test/java/de/reikodd/ddweki/ExampleUnitTest.java create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore index 9f11b75..c6cbe56 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,8 @@ -.idea/ +*.iml +.gradle +/local.properties +/.idea/workspace.xml +/.idea/libraries +.DS_Store +/build +/captures diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..0be1497 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +DDWEKI \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..7619e92 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,24 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f2b08e2 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..5102a91 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AI-Experiment/.gitignore b/AI-Experiment/.gitignore new file mode 100644 index 0000000..9f11b75 --- /dev/null +++ b/AI-Experiment/.gitignore @@ -0,0 +1 @@ +.idea/ diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..3b89496 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,26 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 23 + buildToolsVersion "24.0.1" + + defaultConfig { + applicationId "de.reikodd.ddweki" + minSdkVersion 22 + targetSdkVersion 23 + versionCode 1 + versionName "1.0.1" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + testCompile 'junit:junit:4.12' + compile 'com.android.support:appcompat-v7:23.4.0' +} diff --git a/app/hs_err_pid3480.log b/app/hs_err_pid3480.log new file mode 100644 index 0000000..ef87e54 --- /dev/null +++ b/app/hs_err_pid3480.log @@ -0,0 +1,303 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000005d792357, pid=3480, tid=3312 +# +# JRE version: Java(TM) SE Runtime Environment (8.0_05-b13) (build 1.8.0_05-b13) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.5-b02 mixed mode windows-amd64 compressed oops) +# Problematic frame: +# V [jvm.dll+0x1f2357] +# +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# +# If you would like to submit a bug report, please visit: +# http://bugreport.sun.com/bugreport/crash.jsp +# + +--------------- T H R E A D --------------- + +Current thread (0x0000000002338000): JavaThread "main" [_thread_in_vm, id=3312, stack(0x0000000002470000,0x0000000002570000)] + +siginfo: ExceptionCode=0xc0000005, writing address 0x0000000002562e50 + +Registers: +RAX=0x0000000002562e50, RBX=0x0000000000000007, RCX=0x0000000000006000, RDX=0x000000000000001e +RSP=0x0000000002568e50, RBP=0x0000000000000000, RSI=0x0000000002568e50, RDI=0x0000000000000007 +R8 =0x000000000000001e, R9 =0x00000000022f2c80, R10=0x00000000549340b8, R11=0x000000000247a158 +R12=0x00000000022f2c80, R13=0x0000000002338000, R14=0x0000000002568f18, R15=0x00000000549340b8 +RIP=0x000000005d792357, EFLAGS=0x0000000000010206 + +Top of Stack: (sp=0x0000000002568e50) +0x0000000002568e50: 0000000002338000 0000000054d3af38 +0x0000000002568e60: 0000000002338000 00000000022f2c80 +0x0000000002568e70: 00000000ffffffff 000000005d793287 +0x0000000002568e80: 0000000002568f80 00000000549340b8 +0x0000000002568e90: 0000000002338000 0000000000000000 +0x0000000002568ea0: 0000000000000000 0000000002338000 +0x0000000002568eb0: 00000000567cefc0 000000005d7c3518 +0x0000000002568ec0: 00000000549340b8 0000000002338000 +0x0000000002568ed0: 0000000002850780 0000000002300080 +0x0000000002568ee0: 00000000025690c0 0000000002300274 +0x0000000002568ef0: 0000000002300560 000000005671afe0 +0x0000000002568f00: 0000000014920f28 00000000549340b8 +0x0000000002568f10: 0000000002338000 000000005671aff0 +0x0000000002568f20: 00000000772603c8 0000000000000000 +0x0000000002568f30: 0000000002569100 00000000022f0000 +0x0000000002568f40: 0000000000000018 0000000000000018 + +Instructions: (pc=0x000000005d792357) +0x000000005d792337: 48 89 6c 24 30 33 ed 66 90 e8 fb 4d 08 00 ff c3 +0x000000005d792347: 48 63 c8 48 8b c6 48 0f af cf 48 ff c7 48 2b c1 +0x000000005d792357: 89 28 48 63 c3 48 3b 05 9d 68 55 00 7e db 48 8b +0x000000005d792367: 6c 24 30 48 8b 5c 24 38 48 8b 74 24 40 48 83 c4 + + +Register to memory mapping: + +RAX=0x0000000002562e50 is pointing into the stack for thread: 0x0000000002338000 +RBX=0x0000000000000007 is an unknown value +RCX=0x0000000000006000 is an unknown value +RDX=0x000000000000001e is an unknown value +RSP=0x0000000002568e50 is pointing into the stack for thread: 0x0000000002338000 +RBP=0x0000000000000000 is an unknown value +RSI=0x0000000002568e50 is pointing into the stack for thread: 0x0000000002338000 +RDI=0x0000000000000007 is an unknown value +R8 =0x000000000000001e is an unknown value +R9 =0x00000000022f2c80 is an unknown value +R10=0x00000000549340b8 is an unknown value +R11=0x000000000247a158 is pointing into the stack for thread: 0x0000000002338000 +R12=0x00000000022f2c80 is an unknown value +R13=0x0000000002338000 is a thread +R14=0x0000000002568f18 is pointing into the stack for thread: 0x0000000002338000 +R15=0x00000000549340b8 is an unknown value + + +Stack: [0x0000000002470000,0x0000000002570000], sp=0x0000000002568e50, free space=995k +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +j java.lang.ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+0 +j java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+27 +j java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;+12 +j java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+220 +j java.net.URLClassLoader.access$100(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+3 +j java.net.URLClassLoader$1.run()Ljava/lang/Class;+43 +j java.net.URLClassLoader$1.run()Ljava/lang/Object;+1 +v ~StubRoutines::call_stub +j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0 +j java.net.URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+13 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+70 +j sun.misc.Launcher$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+36 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+3 +v ~StubRoutines::call_stub +j java.lang.ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+0 +j java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+27 +j java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;+12 +j java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+220 +j java.net.URLClassLoader.access$100(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;+3 +j java.net.URLClassLoader$1.run()Ljava/lang/Class;+43 +j java.net.URLClassLoader$1.run()Ljava/lang/Object;+1 +v ~StubRoutines::call_stub +j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0 +j java.net.URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+13 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+70 +j sun.misc.Launcher$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+36 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+3 +v ~StubRoutines::call_stub +j com.android.dx.command.dexer.Main.createDexFile()V+0 +j com.android.dx.command.dexer.Main.processAllFiles()Z+0 +j com.android.dx.command.dexer.Main.runMultiDex()I+66 +j com.android.dx.command.dexer.Main.run(Lcom/android/dx/command/dexer/Main$Arguments;)I+66 +j com.android.dx.command.dexer.Main.main([Ljava/lang/String;)V+14 +j com.android.dx.command.Main.main([Ljava/lang/String;)V+61 +v ~StubRoutines::call_stub + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + 0x00000000566b7000 JavaThread "Service Thread" daemon [_thread_blocked, id=6088, stack(0x00000000572d0000,0x00000000573d0000)] + 0x00000000566b5800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=7780, stack(0x0000000056c40000,0x0000000056d40000)] + 0x00000000566b4800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=8972, stack(0x0000000057000000,0x0000000057100000)] + 0x0000000055316000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=1908, stack(0x0000000056e30000,0x0000000056f30000)] + 0x0000000055314800 JavaThread "Attach Listener" daemon [_thread_blocked, id=2580, stack(0x0000000056b40000,0x0000000056c40000)] + 0x0000000055311000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7176, stack(0x0000000056110000,0x0000000056210000)] + 0x00000000552ae000 JavaThread "Finalizer" daemon [_thread_blocked, id=5528, stack(0x00000000565b0000,0x00000000566b0000)] + 0x00000000552a9000 JavaThread "Reference Handler" daemon [_thread_blocked, id=9104, stack(0x0000000056430000,0x0000000056530000)] +=>0x0000000002338000 JavaThread "main" [_thread_in_vm, id=3312, stack(0x0000000002470000,0x0000000002570000)] + +Other Threads: + 0x00000000552a5800 VMThread [stack: 0x00000000562b0000,0x00000000563b0000] [id=8312] + 0x0000000055317000 WatcherThread [stack: 0x00000000573e0000,0x00000000574e0000] [id=9036] + +VM state:not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap: + PSYoungGen total 1536K, used 638K [0x00000000eab00000, 0x00000000ead00000, 0x0000000100000000) + eden space 1024K, 15% used [0x00000000eab00000,0x00000000eab27b10,0x00000000eac00000) + from space 512K, 93% used [0x00000000eac80000,0x00000000eacf8020,0x00000000ead00000) + to space 512K, 0% used [0x00000000eac00000,0x00000000eac00000,0x00000000eac80000) + ParOldGen total 129536K, used 139K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0022ce8,0x00000000c7e80000) + Metaspace used 3091K, capacity 4656K, committed 4864K, reserved 1056768K + class space used 338K, capacity 424K, committed 512K, reserved 1048576K + +Card table byte_map: [0x0000000011c00000,0x0000000011e10000] byte_map_base: 0x0000000011600000 + +Marking Bits: (ParMarkBitMap*) 0x000000005dd513b0 + Begin Bits: [0x0000000012720000, 0x0000000013720000) + End Bits: [0x0000000013720000, 0x0000000014720000) + +Polling page: 0x0000000000130000 + +CodeCache: size=245760Kb used=1201Kb max_used=1201Kb free=244559Kb + bounds [0x0000000002840000, 0x0000000002ab0000, 0x0000000011840000] + total_blobs=310 nmethods=68 adapters=156 + compilation: enabled + +Compilation events (10 events): +Event: 0.379 Thread 0x00000000566b5800 63 s! 3 sun.misc.URLClassPath::getLoader (154 bytes) +Event: 0.382 Thread 0x00000000566b5800 nmethod 63 0x00000000029661d0 code [0x00000000029665c0, 0x0000000002968cf8] +Event: 0.382 Thread 0x00000000566b5800 61 3 java.lang.AbstractStringBuilder::expandCapacity (50 bytes) +Event: 0.382 Thread 0x00000000566b5800 nmethod 61 0x000000000296a650 code [0x000000000296a7e0, 0x000000000296acf8] +Event: 0.382 Thread 0x00000000566b5800 66 1 sun.util.calendar.CalendarDate::isNormalized (5 bytes) +Event: 0.383 Thread 0x00000000566b5800 nmethod 66 0x000000000296aed0 code [0x000000000296b020, 0x000000000296b130] +Event: 0.383 Thread 0x00000000566b5800 65 1 java.net.URL::getPath (5 bytes) +Event: 0.383 Thread 0x00000000566b5800 nmethod 65 0x000000000296b190 code [0x000000000296b2e0, 0x000000000296b3f0] +Event: 0.383 Thread 0x00000000566b5800 64 1 java.net.URL::getAuthority (5 bytes) +Event: 0.383 Thread 0x00000000566b5800 nmethod 64 0x000000000296b450 code [0x000000000296b5a0, 0x000000000296b6b0] + +GC Heap History (4 events): +Event: 0.280 GC heap before +{Heap before GC invocations=1 (full 0): + PSYoungGen total 1024K, used 512K [0x00000000eab00000, 0x00000000eac80000, 0x0000000100000000) + eden space 512K, 100% used [0x00000000eab00000,0x00000000eab80000,0x00000000eab80000) + from space 512K, 0% used [0x00000000eac00000,0x00000000eac00000,0x00000000eac80000) + to space 512K, 0% used [0x00000000eab80000,0x00000000eab80000,0x00000000eac00000) + ParOldGen total 129536K, used 0K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c7e80000) + Metaspace used 2522K, capacity 4480K, committed 4480K, reserved 1056768K + class space used 273K, capacity 384K, committed 384K, reserved 1048576K +Event: 0.329 GC heap after +Heap after GC invocations=1 (full 0): + PSYoungGen total 1024K, used 432K [0x00000000eab00000, 0x00000000ead00000, 0x0000000100000000) + eden space 512K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eab80000) + from space 512K, 84% used [0x00000000eab80000,0x00000000eabec010,0x00000000eac00000) + to space 512K, 0% used [0x00000000eac80000,0x00000000eac80000,0x00000000ead00000) + ParOldGen total 129536K, used 0K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c7e80000) + Metaspace used 2522K, capacity 4480K, committed 4480K, reserved 1056768K + class space used 273K, capacity 384K, committed 384K, reserved 1048576K +} +Event: 0.367 GC heap before +{Heap before GC invocations=2 (full 0): + PSYoungGen total 1024K, used 942K [0x00000000eab00000, 0x00000000ead00000, 0x0000000100000000) + eden space 512K, 99% used [0x00000000eab00000,0x00000000eab7f818,0x00000000eab80000) + from space 512K, 84% used [0x00000000eab80000,0x00000000eabec010,0x00000000eac00000) + to space 512K, 0% used [0x00000000eac80000,0x00000000eac80000,0x00000000ead00000) + ParOldGen total 129536K, used 0K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c7e80000) + Metaspace used 2923K, capacity 4656K, committed 4864K, reserved 1056768K + class space used 319K, capacity 424K, committed 512K, reserved 1048576K +Event: 0.371 GC heap after +Heap after GC invocations=2 (full 0): + PSYoungGen total 1536K, used 480K [0x00000000eab00000, 0x00000000ead00000, 0x0000000100000000) + eden space 1024K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eac00000) + from space 512K, 93% used [0x00000000eac80000,0x00000000eacf8020,0x00000000ead00000) + to space 512K, 0% used [0x00000000eac00000,0x00000000eac00000,0x00000000eac80000) + ParOldGen total 129536K, used 139K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0022ce8,0x00000000c7e80000) + Metaspace used 2923K, capacity 4656K, committed 4864K, reserved 1056768K + class space used 319K, capacity 424K, committed 512K, reserved 1048576K +} + +Deoptimization events (0 events): +No events + +Internal exceptions (10 events): +Event: 0.364 Thread 0x0000000002338000 Exception (0x00000000eab730d0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.365 Thread 0x0000000002338000 Exception (0x00000000eab77a68) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.366 Thread 0x0000000002338000 Exception (0x00000000eab79be8) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.367 Thread 0x0000000002338000 Exception (0x00000000eab7baf0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.371 Thread 0x0000000002338000 Exception (0x00000000eab044d0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.377 Thread 0x0000000002338000 Exception (0x00000000eab08910) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.378 Thread 0x0000000002338000 Exception (0x00000000eab0b470) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.379 Thread 0x0000000002338000 Exception (0x00000000eab17140) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.387 Thread 0x0000000002338000 Exception (0x00000000eab1fca0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] +Event: 0.388 Thread 0x0000000002338000 Exception (0x00000000eab22408) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jvm.cpp, line 1248] + +Events (10 events): +Event: 0.377 loading class com/android/dx/dex/file/DexFile +Event: 0.377 loading class com/android/dx/dex/file/DexFile done +Event: 0.378 loading class com/android/dx/dex/file/Section +Event: 0.378 loading class com/android/dx/dex/file/Section done +Event: 0.379 loading class com/android/dx/dex/file/MixedItemSection +Event: 0.379 loading class com/android/dx/dex/file/MixedItemSection done +Event: 0.387 loading class com/android/dx/rop/cst/Constant +Event: 0.387 loading class com/android/dx/rop/cst/Constant done +Event: 0.388 loading class com/android/dx/util/ToHuman +Event: 0.388 loading class com/android/dx/util/ToHuman done + + +Dynamic libraries: +0x000000013ff10000 - 0x000000013ff44000 C:\Program Files\Java\jdk1.8.0_05\bin\java.exe +0x0000000077150000 - 0x00000000772fa000 C:\windows\SYSTEM32\ntdll.dll +0x0000000077030000 - 0x000000007714f000 C:\windows\system32\kernel32.dll +0x000007fefd1a0000 - 0x000007fefd20a000 C:\windows\system32\KERNELBASE.dll +0x000007fefe4d0000 - 0x000007fefe5ab000 C:\windows\system32\ADVAPI32.dll +0x000007fefe000000 - 0x000007fefe09f000 C:\windows\system32\msvcrt.dll +0x000007fefe280000 - 0x000007fefe29f000 C:\windows\SYSTEM32\sechost.dll +0x000007fefeb60000 - 0x000007fefec8d000 C:\windows\system32\RPCRT4.dll +0x0000000076f30000 - 0x000000007702a000 C:\windows\system32\USER32.dll +0x000007fefe410000 - 0x000007fefe477000 C:\windows\system32\GDI32.dll +0x000007fefd240000 - 0x000007fefd24e000 C:\windows\system32\LPK.dll +0x000007fefeea0000 - 0x000007fefef6a000 C:\windows\system32\USP10.dll +0x000007fefb350000 - 0x000007fefb544000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll +0x000007fefec90000 - 0x000007fefed01000 C:\windows\system32\SHLWAPI.dll +0x000007fefe910000 - 0x000007fefe93e000 C:\windows\system32\IMM32.DLL +0x000007fefe300000 - 0x000007fefe409000 C:\windows\system32\MSCTF.dll +0x000000005ddd0000 - 0x000000005dea2000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\msvcr100.dll +0x000000005d5a0000 - 0x000000005ddca000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\server\jvm.dll +0x000007fefc0a0000 - 0x000007fefc0a9000 C:\windows\system32\WSOCK32.dll +0x000007fefe480000 - 0x000007fefe4cd000 C:\windows\system32\WS2_32.dll +0x000007fefe900000 - 0x000007fefe908000 C:\windows\system32\NSI.dll +0x000007fefa780000 - 0x000007fefa7bb000 C:\windows\system32\WINMM.dll +0x0000000077320000 - 0x0000000077327000 C:\windows\system32\PSAPI.DLL +0x000000006dd30000 - 0x000000006dd3f000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\verify.dll +0x000000005e080000 - 0x000000005e0a8000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\java.dll +0x000000006ce60000 - 0x000000006ce76000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\zip.dll +0x000007fefd270000 - 0x000007fefdffa000 C:\windows\system32\SHELL32.dll +0x000007feff250000 - 0x000007feff453000 C:\windows\system32\ole32.dll +0x000007fefce80000 - 0x000007fefce8f000 C:\windows\system32\profapi.dll +0x000007feeb5f0000 - 0x000007feeb715000 C:\windows\system32\dbghelp.dll + +VM Arguments: +jvm_args: -Djava.awt.headless=true -Xmx1024M -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant +java_command: com.android.dx.command.Main --dex --force-jumbo --num-threads=4 --multi-dex --output C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\dex\debug\folders\1000\5\slice_1 C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\instantRunSlicer\debug\folders\1\5\slice_1 +java_class_path (initial): E:\Android\SDK\build-tools\24.0.1\lib\dx.jar +Launcher Type: SUN_STANDARD + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk1.8.0_05\ +CLASSPATH=.; +PATH=C:\RailsInstaller\Ruby2.1.0\bin;C:\RailsInstaller\Ruby2.0.0\bin;C:\Program Files (x86)\Google\Chrome\Application;C:\MinGW\bin;C:\MinGW\libexec\gcc\x86_64-pc-mingw32\4.9.2;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\x64\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files (x86)\Git\cmd;C:\Program Files\IVI Foundation\VISA\Win64\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files\doxygen\bin;C:\Program Files\Java\jdk1.8.0_05\\bin;C:\Programmierung\maven\bin;C:\MinGW\bin;C:\MinGW\msys\1.0\bin;C:\Program Files (x86)\CMake;C:\Program Files\Amazon\AWSCLI\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Tesseract-OCR;C:\Program Files\Anaconda3;C:\Program Files\Anaconda3\Scripts;C:\Program Files\Anaconda3\Library\bin;C:\Program Files (x86)\CMake\bin\;c:\Programmierung\AVR\bin\;E:\Programme\Boot2Docker for Windows +USERNAME=Reiko +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 7 , 64 bit Build 7601 Service Pack 1 + +CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit + +Memory: 4k page, physical 8265140k(682444k free), swap 12457584k(179848k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.5-b02) for windows-amd64 JRE (1.8.0_05-b13), built on Mar 18 2014 01:08:39 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Sun Dec 04 22:14:58 2016 +elapsed time: 0 seconds + diff --git a/app/hs_err_pid364.log b/app/hs_err_pid364.log new file mode 100644 index 0000000..bbac8fd --- /dev/null +++ b/app/hs_err_pid364.log @@ -0,0 +1,176 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 8192 bytes for AllocateHeap +# Possible reasons: +# The system is out of physical RAM or swap space +# In 32 bit mode, the process size limit was hit +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Use 64 bit Java on a 64 bit OS +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# This output file may be truncated or incomplete. +# +# Out of Memory Error (memory/allocation.inline.hpp:62), pid=364, tid=8708 +# +# JRE version: (8.0_05-b13) (build ) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.5-b02 mixed mode windows-amd64 compressed oops) +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# + +--------------- T H R E A D --------------- + +Current thread (0x0000000002198000): JavaThread "main" [_thread_in_vm, id=8708, stack(0x0000000002540000,0x0000000002640000)] + +Stack: [0x0000000002540000,0x0000000002640000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x308dea] + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +j java.lang.Class.getDeclaredFields0(Z)[Ljava/lang/reflect/Field;+0 +j java.lang.Class.access$100(Ljava/lang/Class;Z)[Ljava/lang/reflect/Field;+2 +j java.lang.Class$Atomic.()V+9 +v ~StubRoutines::call_stub +j java.lang.Class.newReflectionData(Ljava/lang/ref/SoftReference;I)Ljava/lang/Class$ReflectionData;+27 +j java.lang.Class.reflectionData()Ljava/lang/Class$ReflectionData;+45 +j java.lang.Class.privateGetDeclaredFields(Z)[Ljava/lang/reflect/Field;+4 +j java.lang.Class.getDeclaredField(Ljava/lang/String;)Ljava/lang/reflect/Field;+11 +j java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1.run()Ljava/lang/reflect/Field;+8 +j java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1.run()Ljava/lang/Object;+1 +v ~StubRoutines::call_stub +j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;+0 +j java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl.(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)V+14 +j java.util.concurrent.atomic.AtomicReferenceFieldUpdater.newUpdater(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;+10 +j java.io.BufferedInputStream.()V+17 +v ~StubRoutines::call_stub +j java.lang.System.initializeSystemClass()V+70 +v ~StubRoutines::call_stub + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + 0x00000000552a4800 JavaThread "Finalizer" daemon [_thread_blocked, id=5844, stack(0x0000000056410000,0x0000000056510000)] + 0x0000000055299800 JavaThread "Reference Handler" daemon [_thread_blocked, id=1128, stack(0x0000000056270000,0x0000000056370000)] +=>0x0000000002198000 JavaThread "main" [_thread_in_vm, id=8708, stack(0x0000000002540000,0x0000000002640000)] + +Other Threads: + 0x0000000055296000 VMThread [stack: 0x0000000056060000,0x0000000056160000] [id=5168] + +VM state:not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) +[0x000000000008d480] SymbolTable_lock - owner thread: 0x0000000002198000 + +Heap: + PSYoungGen total 1024K, used 72K [0x00000000eab00000, 0x00000000eac80000, 0x0000000100000000) + eden space 512K, 14% used [0x00000000eab00000,0x00000000eab12350,0x00000000eab80000) + from space 512K, 0% used [0x00000000eac00000,0x00000000eac00000,0x00000000eac80000) + to space 512K, 0% used [0x00000000eab80000,0x00000000eab80000,0x00000000eac00000) + ParOldGen total 129536K, used 0K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c7e80000) + Metaspace used 1112K, capacity 4480K, committed 4480K, reserved 1056768K + class space used 125K, capacity 384K, committed 384K, reserved 1048576K + +Card table byte_map: [0x0000000011cd0000,0x0000000011ee0000] byte_map_base: 0x00000000116d0000 + +Marking Bits: (ParMarkBitMap*) 0x000000005dd513b0 + Begin Bits: [0x0000000012710000, 0x0000000013710000) + End Bits: [0x0000000013710000, 0x0000000014710000) + +Polling page: 0x0000000000440000 + +CodeCache: size=245760Kb used=403Kb max_used=403Kb free=245356Kb + bounds [0x0000000002910000, 0x0000000002b80000, 0x0000000011910000] + total_blobs=102 nmethods=0 adapters=77 + compilation: enabled + +Compilation events (0 events): +No events + +GC Heap History (0 events): +No events + +Deoptimization events (0 events): +No events + +Internal exceptions (2 events): +Event: 0.043 Thread 0x0000000002198000 Exception (0x00000000eab0f550) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\srcS¦~$Û¦? +Event: 0.043 Thread 0x0000000002198000 Exception (0x00000000eab0f7e0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jn + +Events (10 events): +Event: 0.046 loading class java/lang/Class$Atomic done +Event: 0.046 loading class sun/reflect/generics/repository/ClassRepository +Event: 0.046 loading class sun/reflect/generics/repository/GenericDeclRepository +Event: 0.046 loading class sun/reflect/generics/repository/AbstractRepository +Event: 0.046 loading class sun/reflect/generics/repository/AbstractRepository done +Event: 0.046 loading class sun/reflect/generics/repository/GenericDeclRepository done +Event: 0.046 loading class sun/reflect/generics/repository/ClassRepository done +Event: 0.046 loading class java/lang/Class$AnnotationData +Event: 0.046 loading class java/lang/Class$AnnotationData done +Event: 0.046 loading class sun/reflect/annotation/AnnotationType + + +Dynamic libraries: +0x000000013ff10000 - 0x000000013ff44000 C:\Program Files\Java\jdk1.8.0_05\bin\java.exe +0x0000000077150000 - 0x00000000772fa000 C:\windows\SYSTEM32\ntdll.dll +0x0000000077030000 - 0x000000007714f000 C:\windows\system32\kernel32.dll +0x000007fefd1a0000 - 0x000007fefd20a000 C:\windows\system32\KERNELBASE.dll +0x000007fefe4d0000 - 0x000007fefe5ab000 C:\windows\system32\ADVAPI32.dll +0x000007fefe000000 - 0x000007fefe09f000 C:\windows\system32\msvcrt.dll +0x000007fefe280000 - 0x000007fefe29f000 C:\windows\SYSTEM32\sechost.dll +0x000007fefeb60000 - 0x000007fefec8d000 C:\windows\system32\RPCRT4.dll +0x0000000076f30000 - 0x000000007702a000 C:\windows\system32\USER32.dll +0x000007fefe410000 - 0x000007fefe477000 C:\windows\system32\GDI32.dll +0x000007fefd240000 - 0x000007fefd24e000 C:\windows\system32\LPK.dll +0x000007fefeea0000 - 0x000007fefef6a000 C:\windows\system32\USP10.dll +0x000007fefb350000 - 0x000007fefb544000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll +0x000007fefec90000 - 0x000007fefed01000 C:\windows\system32\SHLWAPI.dll +0x000007fefe910000 - 0x000007fefe93e000 C:\windows\system32\IMM32.DLL +0x000007fefe300000 - 0x000007fefe409000 C:\windows\system32\MSCTF.dll +0x000000005ddd0000 - 0x000000005dea2000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\msvcr100.dll +0x000000005d5a0000 - 0x000000005ddca000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\server\jvm.dll +0x000007fefc0a0000 - 0x000007fefc0a9000 C:\windows\system32\WSOCK32.dll +0x000007fefe480000 - 0x000007fefe4cd000 C:\windows\system32\WS2_32.dll +0x000007fefe900000 - 0x000007fefe908000 C:\windows\system32\NSI.dll +0x000007fefa780000 - 0x000007fefa7bb000 C:\windows\system32\WINMM.dll +0x0000000077320000 - 0x0000000077327000 C:\windows\system32\PSAPI.DLL +0x000000006dd30000 - 0x000000006dd3f000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\verify.dll +0x000000005e080000 - 0x000000005e0a8000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\java.dll +0x000000006ce60000 - 0x000000006ce76000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\zip.dll +0x000007fefd270000 - 0x000007fefdffa000 C:\windows\system32\SHELL32.dll +0x000007feff250000 - 0x000007feff453000 C:\windows\system32\ole32.dll +0x000007fefce80000 - 0x000007fefce8f000 C:\windows\system32\profapi.dll + +VM Arguments: +jvm_args: -Djava.awt.headless=true -Xmx1024M -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant +java_command: com.android.dx.command.Main --dex --force-jumbo --num-threads=4 --multi-dex --output C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\dex\debug\folders\1000\5\slice_5 C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\instantRunSlicer\debug\folders\1\5\slice_5 +java_class_path (initial): E:\Android\SDK\build-tools\24.0.1\lib\dx.jar +Launcher Type: SUN_STANDARD + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk1.8.0_05\ +CLASSPATH=.; +PATH=C:\RailsInstaller\Ruby2.1.0\bin;C:\RailsInstaller\Ruby2.0.0\bin;C:\Program Files (x86)\Google\Chrome\Application;C:\MinGW\bin;C:\MinGW\libexec\gcc\x86_64-pc-mingw32\4.9.2;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\x64\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files (x86)\Git\cmd;C:\Program Files\IVI Foundation\VISA\Win64\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files\doxygen\bin;C:\Program Files\Java\jdk1.8.0_05\\bin;C:\Programmierung\maven\bin;C:\MinGW\bin;C:\MinGW\msys\1.0\bin;C:\Program Files (x86)\CMake;C:\Program Files\Amazon\AWSCLI\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Tesseract-OCR;C:\Program Files\Anaconda3;C:\Program Files\Anaconda3\Scripts;C:\Program Files\Anaconda3\Library\bin;C:\Program Files (x86)\CMake\bin\;c:\Programmierung\AVR\bin\;E:\Programme\Boot2Docker for Windows +USERNAME=Reiko +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 7 , 64 bit Build 7601 Service Pack 1 + +CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit + +Memory: 4k page, physical 8265140k(681992k free), swap 12457584k(5060k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.5-b02) for windows-amd64 JRE (1.8.0_05-b13), built on Mar 18 2014 01:08:39 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Sun Dec 04 22:14:58 2016 +elapsed time: 0 seconds + diff --git a/app/hs_err_pid3896.log b/app/hs_err_pid3896.log new file mode 100644 index 0000000..671ae42 --- /dev/null +++ b/app/hs_err_pid3896.log @@ -0,0 +1,163 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 1048576 bytes for AllocateHeap +# Possible reasons: +# The system is out of physical RAM or swap space +# In 32 bit mode, the process size limit was hit +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Use 64 bit Java on a 64 bit OS +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# This output file may be truncated or incomplete. +# +# Out of Memory Error (memory/allocation.inline.hpp:62), pid=3896, tid=7604 +# +# JRE version: (8.0_05-b13) (build ) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.5-b02 mixed mode windows-amd64 compressed oops) +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# + +--------------- T H R E A D --------------- + +Current thread (0x00000000021a8000): JavaThread "Unknown thread" [_thread_in_vm, id=7604, stack(0x00000000025a0000,0x00000000026a0000)] + +Stack: [0x00000000025a0000,0x00000000026a0000] +[error occurred during error reporting (printing stack bounds), id 0xc0000005] + +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x308dea] +V [jvm.dll+0x25def1] +V [jvm.dll+0x25eb0f] +V [jvm.dll+0x27e924] +C [kernel32.dll+0x9bc10] +C [ntdll.dll+0x80108] +C [ntdll.dll+0x17958] +C [ntdll.dll+0x2812d] +C [ntdll.dll+0x1855f] +C [ntdll.dll+0x4bcb8] +V [jvm.dll+0x1fdd91] + + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + +Other Threads: + +=>0x00000000021a8000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=7604, stack(0x00000000025a0000,0x00000000026a0000)] + +VM state:not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap: + PSYoungGen total 1024K, used 20K [0x00000000eab00000, 0x00000000eac80000, 0x0000000100000000) + eden space 512K, 4% used [0x00000000eab00000,0x00000000eab05288,0x00000000eab80000) + from space 512K, 0% used [0x00000000eac00000,0x00000000eac00000,0x00000000eac80000) + to space 512K, 0% used [0x00000000eab80000,0x00000000eab80000,0x00000000eac00000) + ParOldGen total 129536K, used 0K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c7e80000) + Metaspace used 673K, capacity 4480K, committed 4480K, reserved 1056768K + class space used 66K, capacity 384K, committed 384K, reserved 1048576K + +Card table byte_map: [0x0000000011d30000,0x0000000011f40000] byte_map_base: 0x0000000011730000 + +Marking Bits: (ParMarkBitMap*) 0x000000005dd513b0 + Begin Bits: [0x0000000012540000, 0x0000000013540000) + End Bits: [0x0000000013540000, 0x0000000014540000) + +Polling page: 0x0000000000330000 + +CodeCache: size=245760Kb used=327Kb max_used=327Kb free=245432Kb + bounds [0x0000000002970000, 0x0000000002be0000, 0x0000000011970000] + total_blobs=56 nmethods=0 adapters=37 + compilation: enabled + +Compilation events (0 events): +No events + +GC Heap History (0 events): +No events + +Deoptimization events (0 events): +No events + +Internal exceptions (0 events): +No events + +Events (10 events): +Event: 0.027 loading class java/lang/Short +Event: 0.027 loading class java/lang/Short done +Event: 0.027 loading class java/lang/Integer +Event: 0.027 loading class java/lang/Integer done +Event: 0.027 loading class java/lang/Long +Event: 0.028 loading class java/lang/Long done +Event: 0.028 loading class java/lang/NullPointerException +Event: 0.028 loading class java/lang/NullPointerException done +Event: 0.028 loading class java/lang/ArithmeticException +Event: 0.028 loading class java/lang/ArithmeticException done + + +Dynamic libraries: +0x000000013ff10000 - 0x000000013ff44000 C:\Program Files\Java\jdk1.8.0_05\bin\java.exe +0x0000000077150000 - 0x00000000772fa000 C:\windows\SYSTEM32\ntdll.dll +0x0000000077030000 - 0x000000007714f000 C:\windows\system32\kernel32.dll +0x000007fefd1a0000 - 0x000007fefd20a000 C:\windows\system32\KERNELBASE.dll +0x000007fefe4d0000 - 0x000007fefe5ab000 C:\windows\system32\ADVAPI32.dll +0x000007fefe000000 - 0x000007fefe09f000 C:\windows\system32\msvcrt.dll +0x000007fefe280000 - 0x000007fefe29f000 C:\windows\SYSTEM32\sechost.dll +0x000007fefeb60000 - 0x000007fefec8d000 C:\windows\system32\RPCRT4.dll +0x0000000076f30000 - 0x000000007702a000 C:\windows\system32\USER32.dll +0x000007fefe410000 - 0x000007fefe477000 C:\windows\system32\GDI32.dll +0x000007fefd240000 - 0x000007fefd24e000 C:\windows\system32\LPK.dll +0x000007fefeea0000 - 0x000007fefef6a000 C:\windows\system32\USP10.dll +0x000007fefb350000 - 0x000007fefb544000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll +0x000007fefec90000 - 0x000007fefed01000 C:\windows\system32\SHLWAPI.dll +0x000007fefe910000 - 0x000007fefe93e000 C:\windows\system32\IMM32.DLL +0x000007fefe300000 - 0x000007fefe409000 C:\windows\system32\MSCTF.dll +0x000000005ddd0000 - 0x000000005dea2000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\msvcr100.dll +0x000000005d5a0000 - 0x000000005ddca000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\server\jvm.dll +0x000007fefc0a0000 - 0x000007fefc0a9000 C:\windows\system32\WSOCK32.dll +0x000007fefe480000 - 0x000007fefe4cd000 C:\windows\system32\WS2_32.dll +0x000007fefe900000 - 0x000007fefe908000 C:\windows\system32\NSI.dll +0x000007fefa780000 - 0x000007fefa7bb000 C:\windows\system32\WINMM.dll +0x0000000077320000 - 0x0000000077327000 C:\windows\system32\PSAPI.DLL +0x000000006dd30000 - 0x000000006dd3f000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\verify.dll +0x000000005e080000 - 0x000000005e0a8000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\java.dll +0x000000006ce60000 - 0x000000006ce76000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\zip.dll +0x000007feeb5f0000 - 0x000007feeb715000 C:\windows\system32\dbghelp.dll + +VM Arguments: +jvm_args: -Djava.awt.headless=true -Xmx1024M -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant +java_command: com.android.dx.command.Main --dex --force-jumbo --num-threads=4 --multi-dex --output C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\dex\debug\folders\1000\10\support-annotations-23.4.0_fd57ea405e00eb8e20e973229c9b8ae7fcd3efee E:\Android\SDK\extras\android\m2repository\com\android\support\support-annotations\23.4.0\support-annotations-23.4.0.jar +java_class_path (initial): E:\Android\SDK\build-tools\24.0.1\lib\dx.jar +Launcher Type: SUN_STANDARD + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk1.8.0_05\ +CLASSPATH=.; +PATH=C:\RailsInstaller\Ruby2.1.0\bin;C:\RailsInstaller\Ruby2.0.0\bin;C:\Program Files (x86)\Google\Chrome\Application;C:\MinGW\bin;C:\MinGW\libexec\gcc\x86_64-pc-mingw32\4.9.2;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\x64\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files (x86)\Git\cmd;C:\Program Files\IVI Foundation\VISA\Win64\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files\doxygen\bin;C:\Program Files\Java\jdk1.8.0_05\\bin;C:\Programmierung\maven\bin;C:\MinGW\bin;C:\MinGW\msys\1.0\bin;C:\Program Files (x86)\CMake;C:\Program Files\Amazon\AWSCLI\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Tesseract-OCR;C:\Program Files\Anaconda3;C:\Program Files\Anaconda3\Scripts;C:\Program Files\Anaconda3\Library\bin;C:\Program Files (x86)\CMake\bin\;c:\Programmierung\AVR\bin\;E:\Programme\Boot2Docker for Windows +USERNAME=Reiko +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 7 , 64 bit Build 7601 Service Pack 1 + +CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit + +Memory: 4k page, physical 8265140k(705736k free), swap 12457584k(400720k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.5-b02) for windows-amd64 JRE (1.8.0_05-b13), built on Mar 18 2014 01:08:39 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Sun Dec 04 22:14:58 2016 +elapsed time: 0 seconds + diff --git a/app/hs_err_pid8516.log b/app/hs_err_pid8516.log new file mode 100644 index 0000000..f1ef550 --- /dev/null +++ b/app/hs_err_pid8516.log @@ -0,0 +1,150 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 1048576 bytes for AllocateHeap +# Possible reasons: +# The system is out of physical RAM or swap space +# In 32 bit mode, the process size limit was hit +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Use 64 bit Java on a 64 bit OS +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# This output file may be truncated or incomplete. +# +# Out of Memory Error (memory/allocation.inline.hpp:62), pid=8516, tid=6008 +# +# JRE version: (8.0_05-b13) (build ) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.5-b02 mixed mode windows-amd64 compressed oops) +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# + +--------------- T H R E A D --------------- + +Current thread (0x0000000002268000): JavaThread "Unknown thread" [_thread_in_vm, id=6008, stack(0x0000000002690000,0x0000000002790000)] + +Stack: [0x0000000002690000,0x0000000002790000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x308dea] + + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + +Other Threads: + +=>0x0000000002268000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=6008, stack(0x0000000002690000,0x0000000002790000)] + +VM state:not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap: + PSYoungGen total 1024K, used 20K [0x00000000eab00000, 0x00000000eac80000, 0x0000000100000000) + eden space 512K, 4% used [0x00000000eab00000,0x00000000eab05288,0x00000000eab80000) + from space 512K, 0% used [0x00000000eac00000,0x00000000eac00000,0x00000000eac80000) + to space 512K, 0% used [0x00000000eab80000,0x00000000eab80000,0x00000000eac00000) + ParOldGen total 129536K, used 0K [0x00000000c0000000, 0x00000000c7e80000, 0x00000000eab00000) + object space 129536K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c7e80000) + Metaspace used 673K, capacity 4480K, committed 4480K, reserved 1056768K + class space used 66K, capacity 384K, committed 384K, reserved 1048576K + +Card table byte_map: [0x0000000011e20000,0x0000000012030000] byte_map_base: 0x0000000011820000 + +Marking Bits: (ParMarkBitMap*) 0x000000005dd513b0 + Begin Bits: [0x00000000126d0000, 0x00000000136d0000) + End Bits: [0x00000000136d0000, 0x00000000146d0000) + +Polling page: 0x0000000000130000 + +CodeCache: size=245760Kb used=327Kb max_used=327Kb free=245432Kb + bounds [0x0000000002a60000, 0x0000000002cd0000, 0x0000000011a60000] + total_blobs=56 nmethods=0 adapters=37 + compilation: enabled + +Compilation events (0 events): +No events + +GC Heap History (0 events): +No events + +Deoptimization events (0 events): +No events + +Internal exceptions (0 events): +No events + +Events (10 events): +Event: 0.027 loading class java/lang/Short +Event: 0.027 loading class java/lang/Short done +Event: 0.027 loading class java/lang/Integer +Event: 0.027 loading class java/lang/Integer done +Event: 0.027 loading class java/lang/Long +Event: 0.027 loading class java/lang/Long done +Event: 0.028 loading class java/lang/NullPointerException +Event: 0.028 loading class java/lang/NullPointerException done +Event: 0.028 loading class java/lang/ArithmeticException +Event: 0.028 loading class java/lang/ArithmeticException done + + +Dynamic libraries: +0x000000013ff10000 - 0x000000013ff44000 C:\Program Files\Java\jdk1.8.0_05\bin\java.exe +0x0000000077150000 - 0x00000000772fa000 C:\windows\SYSTEM32\ntdll.dll +0x0000000077030000 - 0x000000007714f000 C:\windows\system32\kernel32.dll +0x000007fefd1a0000 - 0x000007fefd20a000 C:\windows\system32\KERNELBASE.dll +0x000007fefe4d0000 - 0x000007fefe5ab000 C:\windows\system32\ADVAPI32.dll +0x000007fefe000000 - 0x000007fefe09f000 C:\windows\system32\msvcrt.dll +0x000007fefe280000 - 0x000007fefe29f000 C:\windows\SYSTEM32\sechost.dll +0x000007fefeb60000 - 0x000007fefec8d000 C:\windows\system32\RPCRT4.dll +0x0000000076f30000 - 0x000000007702a000 C:\windows\system32\USER32.dll +0x000007fefe410000 - 0x000007fefe477000 C:\windows\system32\GDI32.dll +0x000007fefd240000 - 0x000007fefd24e000 C:\windows\system32\LPK.dll +0x000007fefeea0000 - 0x000007fefef6a000 C:\windows\system32\USP10.dll +0x000007fefb350000 - 0x000007fefb544000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll +0x000007fefec90000 - 0x000007fefed01000 C:\windows\system32\SHLWAPI.dll +0x000007fefe910000 - 0x000007fefe93e000 C:\windows\system32\IMM32.DLL +0x000007fefe300000 - 0x000007fefe409000 C:\windows\system32\MSCTF.dll +0x000000005ddd0000 - 0x000000005dea2000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\msvcr100.dll +0x000000005d5a0000 - 0x000000005ddca000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\server\jvm.dll +0x000007fefc0a0000 - 0x000007fefc0a9000 C:\windows\system32\WSOCK32.dll +0x000007fefe480000 - 0x000007fefe4cd000 C:\windows\system32\WS2_32.dll +0x000007fefe900000 - 0x000007fefe908000 C:\windows\system32\NSI.dll +0x000007fefa780000 - 0x000007fefa7bb000 C:\windows\system32\WINMM.dll +0x0000000077320000 - 0x0000000077327000 C:\windows\system32\PSAPI.DLL +0x000000006dd30000 - 0x000000006dd3f000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\verify.dll +0x000000005e080000 - 0x000000005e0a8000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\java.dll +0x000000006ce60000 - 0x000000006ce76000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\zip.dll + +VM Arguments: +jvm_args: -Djava.awt.headless=true -Xmx1024M -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant +java_command: com.android.dx.command.Main --dex --force-jumbo --num-threads=4 --multi-dex --output C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\dex\debug\folders\1000\5\slice_4 C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\instantRunSlicer\debug\folders\1\5\slice_4 +java_class_path (initial): E:\Android\SDK\build-tools\24.0.1\lib\dx.jar +Launcher Type: SUN_STANDARD + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk1.8.0_05\ +CLASSPATH=.; +PATH=C:\RailsInstaller\Ruby2.1.0\bin;C:\RailsInstaller\Ruby2.0.0\bin;C:\Program Files (x86)\Google\Chrome\Application;C:\MinGW\bin;C:\MinGW\libexec\gcc\x86_64-pc-mingw32\4.9.2;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\x64\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files (x86)\Git\cmd;C:\Program Files\IVI Foundation\VISA\Win64\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files\doxygen\bin;C:\Program Files\Java\jdk1.8.0_05\\bin;C:\Programmierung\maven\bin;C:\MinGW\bin;C:\MinGW\msys\1.0\bin;C:\Program Files (x86)\CMake;C:\Program Files\Amazon\AWSCLI\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Tesseract-OCR;C:\Program Files\Anaconda3;C:\Program Files\Anaconda3\Scripts;C:\Program Files\Anaconda3\Library\bin;C:\Program Files (x86)\CMake\bin\;c:\Programmierung\AVR\bin\;E:\Programme\Boot2Docker for Windows +USERNAME=Reiko +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 7 , 64 bit Build 7601 Service Pack 1 + +CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit + +Memory: 4k page, physical 8265140k(694152k free), swap 12457584k(4700k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.5-b02) for windows-amd64 JRE (1.8.0_05-b13), built on Mar 18 2014 01:08:39 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Sun Dec 04 22:14:58 2016 +elapsed time: 0 seconds + diff --git a/app/hs_err_pid9056.log b/app/hs_err_pid9056.log new file mode 100644 index 0000000..d102781 --- /dev/null +++ b/app/hs_err_pid9056.log @@ -0,0 +1,115 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 480104 bytes for AllocateHeap +# Possible reasons: +# The system is out of physical RAM or swap space +# In 32 bit mode, the process size limit was hit +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Use 64 bit Java on a 64 bit OS +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# This output file may be truncated or incomplete. +# +# Out of Memory Error (memory/allocation.inline.hpp:62), pid=9056, tid=8264 +# +# JRE version: (8.0_05-b13) (build ) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.5-b02 mixed mode windows-amd64 compressed oops) +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# + +--------------- T H R E A D --------------- + +Current thread (0x00000000021c8000): JavaThread "Unknown thread" [_thread_in_vm, id=8264, stack(0x00000000023c0000,0x00000000024c0000)] + +Stack: [0x00000000023c0000,0x00000000024c0000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x308dea] + + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + +Other Threads: + +=>0x00000000021c8000 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=8264, stack(0x00000000023c0000,0x00000000024c0000)] + +VM state:not at safepoint (not fully initialized) + +VM Mutex/Monitor currently owned by a thread: None + +GC Heap History (0 events): +No events + +Deoptimization events (0 events): +No events + +Internal exceptions (0 events): +No events + +Events (0 events): +No events + + +Dynamic libraries: +0x000000013ff10000 - 0x000000013ff44000 C:\Program Files\Java\jdk1.8.0_05\bin\java.exe +0x0000000077150000 - 0x00000000772fa000 C:\windows\SYSTEM32\ntdll.dll +0x0000000077030000 - 0x000000007714f000 C:\windows\system32\kernel32.dll +0x000007fefd1a0000 - 0x000007fefd20a000 C:\windows\system32\KERNELBASE.dll +0x000007fefe4d0000 - 0x000007fefe5ab000 C:\windows\system32\ADVAPI32.dll +0x000007fefe000000 - 0x000007fefe09f000 C:\windows\system32\msvcrt.dll +0x000007fefe280000 - 0x000007fefe29f000 C:\windows\SYSTEM32\sechost.dll +0x000007fefeb60000 - 0x000007fefec8d000 C:\windows\system32\RPCRT4.dll +0x0000000076f30000 - 0x000000007702a000 C:\windows\system32\USER32.dll +0x000007fefe410000 - 0x000007fefe477000 C:\windows\system32\GDI32.dll +0x000007fefd240000 - 0x000007fefd24e000 C:\windows\system32\LPK.dll +0x000007fefeea0000 - 0x000007fefef6a000 C:\windows\system32\USP10.dll +0x000007fefb350000 - 0x000007fefb544000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll +0x000007fefec90000 - 0x000007fefed01000 C:\windows\system32\SHLWAPI.dll +0x000007fefe910000 - 0x000007fefe93e000 C:\windows\system32\IMM32.DLL +0x000007fefe300000 - 0x000007fefe409000 C:\windows\system32\MSCTF.dll +0x000000005ddd0000 - 0x000000005dea2000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\msvcr100.dll +0x000000005d5a0000 - 0x000000005ddca000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\server\jvm.dll +0x000007fefc0a0000 - 0x000007fefc0a9000 C:\windows\system32\WSOCK32.dll +0x000007fefe480000 - 0x000007fefe4cd000 C:\windows\system32\WS2_32.dll +0x000007fefe900000 - 0x000007fefe908000 C:\windows\system32\NSI.dll +0x000007fefa780000 - 0x000007fefa7bb000 C:\windows\system32\WINMM.dll +0x0000000077320000 - 0x0000000077327000 C:\windows\system32\PSAPI.DLL +0x000000006dd30000 - 0x000000006dd3f000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\verify.dll +0x000000005e080000 - 0x000000005e0a8000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\java.dll +0x000000006ce60000 - 0x000000006ce76000 C:\Program Files\Java\jdk1.8.0_05\jre\bin\zip.dll + +VM Arguments: +jvm_args: -Djava.awt.headless=true -Xmx1024M -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant +java_command: com.android.dx.command.Main --dex --force-jumbo --num-threads=4 --multi-dex --output C:\Daten\Android\DDWEKI\app\build\intermediates\transforms\dex\debug\folders\1000\10\com.android.support-appcompat-v7-23.4.0_d6031936cfe8cbb527f227684adfe99fd64db94c C:\Daten\Android\DDWEKI\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.4.0\jars\classes.jar +java_class_path (initial): E:\Android\SDK\build-tools\24.0.1\lib\dx.jar +Launcher Type: SUN_STANDARD + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk1.8.0_05\ +CLASSPATH=.; +PATH=C:\RailsInstaller\Ruby2.1.0\bin;C:\RailsInstaller\Ruby2.0.0\bin;C:\Program Files (x86)\Google\Chrome\Application;C:\MinGW\bin;C:\MinGW\libexec\gcc\x86_64-pc-mingw32\4.9.2;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files (x86)\Toshiba\Bluetooth Toshiba Stack\sys\x64\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files (x86)\Git\cmd;C:\Program Files\IVI Foundation\VISA\Win64\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files\doxygen\bin;C:\Program Files\Java\jdk1.8.0_05\\bin;C:\Programmierung\maven\bin;C:\MinGW\bin;C:\MinGW\msys\1.0\bin;C:\Program Files (x86)\CMake;C:\Program Files\Amazon\AWSCLI\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Tesseract-OCR;C:\Program Files\Anaconda3;C:\Program Files\Anaconda3\Scripts;C:\Program Files\Anaconda3\Library\bin;C:\Program Files (x86)\CMake\bin\;c:\Programmierung\AVR\bin\;E:\Programme\Boot2Docker for Windows +USERNAME=Reiko +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 7 , 64 bit Build 7601 Service Pack 1 + +CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit + +Memory: 4k page, physical 8265140k(682268k free), swap 12457584k(5120k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.5-b02) for windows-amd64 JRE (1.8.0_05-b13), built on Mar 18 2014 01:08:39 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Sun Dec 04 22:14:58 2016 +elapsed time: 0 seconds + diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..f727142 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,17 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in E:\Android\SDK/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/app/src/androidTest/java/de/reikodd/ddweki/ApplicationTest.java b/app/src/androidTest/java/de/reikodd/ddweki/ApplicationTest.java new file mode 100644 index 0000000..1c2efa8 --- /dev/null +++ b/app/src/androidTest/java/de/reikodd/ddweki/ApplicationTest.java @@ -0,0 +1,13 @@ +package de.reikodd.ddweki; + +import android.app.Application; +import android.test.ApplicationTestCase; + +/** + * Testing Fundamentals + */ +public class ApplicationTest extends ApplicationTestCase { + public ApplicationTest() { + super(Application.class); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..84d08b6 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/de/reikodd/ddweki/DrawingView.java b/app/src/main/java/de/reikodd/ddweki/DrawingView.java new file mode 100644 index 0000000..2b50e45 --- /dev/null +++ b/app/src/main/java/de/reikodd/ddweki/DrawingView.java @@ -0,0 +1,248 @@ +package de.reikodd.ddweki; + +import android.app.Activity; +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.Paint; +import android.graphics.Path; +import android.graphics.PorterDuff; +import android.os.Build; +import android.util.AttributeSet; +import android.util.Log; +import android.view.MotionEvent; +import android.view.View; +import android.widget.EditText; +import android.widget.TextView; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.PrintWriter; +import java.text.DecimalFormat; +import java.text.SimpleDateFormat; +import java.util.Calendar; + +/** + * zeichnet eine Linie in ein Canvas + */ +public class DrawingView extends View { + + private Path drawPath; + private Paint drawPaint, canvasPaint; + private Canvas drawCanvas; + private Bitmap canvasBitmap; + static long startTime = 0; + static long lastTime = 0; + static long showTime = 0; + static boolean newStroke = true; + static String DeviceModel = Build.MODEL; + int recordcount=0; + int strokecount=1; + int recordSize=0; + int recordOutputSize=0; + + + DecimalFormat decimalFormat = new DecimalFormat("0.00000"); + JSONCreate jsonCreate = new JSONCreate(); + Context context; + + public DrawingView(Context context) { + super(context); + this.context = context; + setUpDrawing(); + } + + public DrawingView(Context context, AttributeSet attrs) { + super(context, attrs); + this.context = context; + setUpDrawing(); + } + + public DrawingView(Context context, AttributeSet attrs, int defStyleAttr) { + super(context, attrs, defStyleAttr); + this.context = context; + setUpDrawing(); + } + + private void setUpDrawing() { + drawPath = new Path(); + drawPaint = new Paint(); + drawPaint.setAntiAlias(true); + drawPaint.setColor(Color.BLACK); + drawPaint.setStrokeWidth(3); + drawPaint.setStrokeCap(Paint.Cap.ROUND); + drawPaint.setStrokeJoin(Paint.Join.ROUND); + drawPaint.setStyle(Paint.Style.STROKE); + canvasPaint = new Paint(Paint.DITHER_FLAG); + } + + public void startNew() { + drawCanvas.drawColor(0, PorterDuff.Mode.CLEAR); + TextView txtView = (TextView) ((Activity) context).findViewById(R.id.Data); + txtView.setText(""); + recordcount=0; + recordSize=0; + recordOutputSize=0; + strokecount=1; + jsonCreate.clear(); + invalidate(); + } + + + @Override + protected void onDraw(Canvas canvas) { + super.onDraw(canvas); + canvas.drawBitmap(canvasBitmap, 0, 0, canvasPaint); + canvas.drawPath(drawPath, drawPaint); + } + + @Override + protected void onSizeChanged(int w, int h, int oldw, int oldh) { + super.onSizeChanged(w, h, oldw, oldh); + canvasBitmap = Bitmap.createBitmap(w, h, + Bitmap.Config.ARGB_8888); + drawCanvas = new Canvas(canvasBitmap); + drawCanvas.drawColor(Color.WHITE); + } + + @Override + public boolean onTouchEvent(MotionEvent event) { + + float touchX = event.getX(); + float touchY = event.getY(); + + switch (event.getAction()) { + case MotionEvent.ACTION_DOWN: + drawPath.moveTo(touchX, touchY); + break; + + case MotionEvent.ACTION_MOVE: + recordcount++; + recordSize++; + startTime = System.currentTimeMillis(); + if (newStroke == true) { + showTime = 0; + newStroke = false; + } else { + showTime = (showTime + (System.currentTimeMillis() - lastTime)); + } + + double showTimeDouble = (double) showTime / 10000; + TextView txtView = (TextView) ((Activity) context).findViewById(R.id.Data); + drawPath.lineTo(touchX, touchY); + + String jsonOutput = "{" + + "\"x\":" + decimalFormat.format(event.getX()).replace(",", ".") + "," + + "\"y\":" + decimalFormat.format(event.getY()).replace(",", ".") + "," + + "\"t\":" + decimalFormat.format(showTimeDouble).replace(",", ".") + "," + + "\"p\":" + decimalFormat.format(event.getPressure()).replace(",", ".") + "}"; + + txtView.setText(jsonOutput); + jsonCreate.put(strokecount, recordcount, jsonOutput); + + Log.i("Reiko", jsonOutput); + lastTime = startTime; + break; + + case MotionEvent.ACTION_UP: + drawPath.lineTo(touchX, touchY); + drawCanvas.drawPath(drawPath, drawPaint); + drawPath.reset(); + newStroke = true; + recordcount=0; + strokecount++; + Log.i("Reiko", "neuer Stroke"); + break; + default: + return false; + } + invalidate(); + return true; + } + + public void writeToSDFile(){ + + File root = android.os.Environment.getExternalStorageDirectory(); + File dir = new File (root.getAbsolutePath() + "/Reiko"); + dir.mkdirs(); + Calendar c = Calendar.getInstance(); + SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss"); + String filename = sdf.format(c.getTimeInMillis()) + ".txt"; + EditText desctxt = (EditText) ((Activity)context).findViewById(R.id.Description); + File file = new File(dir, filename); + int stroke = 1; + String description = desctxt.getText().toString(); + + try { + FileOutputStream f = new FileOutputStream(file); + PrintWriter pw = new PrintWriter(f); + StringBuilder sb = new StringBuilder(); + if (jsonCreate.sizex(stroke) == 0) { + pw.write("keine Daten" + "\r\n"); + sb.append("keine Daten"); + } else { + pw.write("[{" + "\r\n"); + sb.append("[{\n"); + pw.write("\"strokes\":[" + "\r\n"); + sb.append("\"strokes\":[\n"); + + for (int i = 1; i <= jsonCreate.sizex(stroke); i++) { + recordOutputSize++; + + if(i==1) + { + pw.write("["); + sb.append("["); + } + + if(i> data = new HashMap>(); + + static JSONCreate jSONCreate=new JSONCreate(); + + public void put(int x, int y, String value) { + HashMap m = data.get(x); + if (m == null) + m = new HashMap(); + m.put(y, value); + data.put(x, m); + } + + public String get(int x, int y) { + HashMap m = data.get(x); + if (m == null) + return null; + return m.get(y); + } + + public int sizex(int x) { + HashMap m = data.get(x); + if (m == null) + return 0; + return m.size(); + } + + public void clear() { + data.clear(); + } + +} \ No newline at end of file diff --git a/app/src/main/java/de/reikodd/ddweki/MainActivity.java b/app/src/main/java/de/reikodd/ddweki/MainActivity.java new file mode 100644 index 0000000..a227b9c --- /dev/null +++ b/app/src/main/java/de/reikodd/ddweki/MainActivity.java @@ -0,0 +1,42 @@ +package de.reikodd.ddweki; + +import android.app.Activity; +import android.os.Bundle; +import android.view.View; +import android.widget.Button; +import android.widget.Toast; + +public class MainActivity extends Activity implements View.OnClickListener { + + private DrawingView drawView; + private Button clearButton,saveButton; + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + drawView = (DrawingView)findViewById(R.id.drawing); + clearButton = (Button)findViewById(R.id.clear); + clearButton.setOnClickListener(this); + saveButton = (Button) findViewById(R.id.save); + saveButton.setOnClickListener(this); + getActionBar().setTitle("DDWEKI Version:" + BuildConfig.VERSION_NAME); + } + + @Override + public void onClick(View view) + { + if(view.getId()==R.id.clear) + { + drawView.startNew(); + } + + if(view.getId()==R.id.save) + { + drawView.writeToSDFile(); + Toast.makeText(MainActivity.this, + "JSON gespeichert", Toast.LENGTH_LONG).show(); + drawView.startNew(); + } + } +} \ No newline at end of file diff --git a/app/src/main/java/de/reikodd/ddweki/URLConnection.java b/app/src/main/java/de/reikodd/ddweki/URLConnection.java new file mode 100644 index 0000000..2a4c373 --- /dev/null +++ b/app/src/main/java/de/reikodd/ddweki/URLConnection.java @@ -0,0 +1,54 @@ +package de.reikodd.ddweki; + +import android.os.AsyncTask; +import android.util.Log; + +import java.io.OutputStream; +import java.net.HttpURLConnection; +import java.net.MalformedURLException; +import java.net.URL; + +public class URLConnection extends AsyncTask { + + @Override + protected String doInBackground(String... urls) { + + try { + URL url = new URL(urls[0]); + String input = urls[1]; + HttpURLConnection conn = (HttpURLConnection) url.openConnection(); + conn.setDoOutput(true); + conn.setRequestMethod("POST"); + conn.setRequestProperty("connection", "close"); + OutputStream os = conn.getOutputStream(); + os.write(input.getBytes()); + os.flush(); + int resp = conn.getResponseCode(); + if(conn.getResponseCode() == 200) { + Log.i("Reiko", "" + urls[0] + " - POST Success " + resp); + } + else + { + Log.i("Reiko", "Fehler: " + resp); + } + conn.disconnect(); + + return null; + + } catch (MalformedURLException rat) { + rat.printStackTrace(); + Log.i("Reiko", ""+rat); + return null; + } catch (Exception rat) { + Log.i("Reiko", ""+rat); + return null; + } + } + + @Override + protected void onPostExecute(String result) { + + } + + +} \ No newline at end of file diff --git a/app/src/main/res/drawable/icon.png b/app/src/main/res/drawable/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a07c69fa5a0f4da5d5efe96eea12a543154dbab6 GIT binary patch literal 2574 zcmV+p3i0)cP)Q`Og{P|8RRXpj5bgrSmEzSMfBn+{{vpNxw?;5UX;iv9sYxy_`IQHs$i<61a_iv^L>h8s-`D(`e@|IgS*Fj zNGM876Gf;3D8*1UX9a%v>yJKD*QkCwW2AirU(L{qNA)JghmGItc;(H<$!ABY&gBy1vJIEUj-b8%el*o|VkG)LqNx#TG>Jvj^jIte!!+RY z)T4j$7+PoF1AkRBf}R#^T=-q|PaK1$c<4UH)Hpq3$4WA|xtr!ZQLC=*vNE>O6E9kp+5X0eKB$6>C(lPwI@3#oY zhS_%x7e|j!$yG?ECXmh~EH~^OeuK}+sWoJse3Z3?ha3n`MM9KvA?uqpEnBg4Q46)7 zM$p%a$@l;+O}vfvx%XjH`}a{(-HHth9!JaUwV0*VqGR48^gWNYN<&~7x)y$e!X>e` zZ5!6KZoxbKuV9XUDI%#M1~IVh?pNSdeb~6@$y`v|yk=XK+fHxnDqnUK4&=QRNyIVf zYbDM*cI>~qIy*a7=z7uqkw@agd(<=y-Q7L!ty_23SGdXmahO<;N=wB+j;lNm%=OHC zy zU|>La6h%92y4IPufI$9>Xu!@y`TaNgtg&41@PwMwBdmSm7)xAWDLoqjZ==P2#*k7! z3o1)cVSI3KP_!?d8G^Lg0FtLXC~JYdxi|c%h~lXEixY=%VSFF@!*3&&9>(Rb|iK54Cx5;s~PY5iaV1het%w`dgQFBAJ;aFK zImQC}(|QaCFYUm1JVfzSc)ebv=)ObI)0jwJb``}Zj9J0n0Xgn*Zc(rFM9$xh_makZbm-at_v5^SW zM1y1SW@%+FuIy*WR)i3A2N_q;(YO`O!A|Ts^%z}9ZepCj3ytlw#x%N_fNrKKtPh`< z|1{UqF`4LxHaCQ79+E=uUXCOZ35jAMRz%R%0(P!0FMv=sk>Nr8%+OzY^c-M9@+fz=G`qa@v4sF5u-2289-#$**LWnyNNDwDf1( zkUiMnw|y$tn>pQP=Vn!#|17L^5AGrjtBkN$D@v)Z7LXc5EFhLB4<;7Wehh)CMqX|W zqsiZaO^benJ_hwa&V0ub$-_HUk**?g6fm9|!@kguU6*zhK)$qn-<3*kFrYPIaqR=V zUaUvk>@F_89b@tHs8R!*QKY;INJ<2_U+K6Ca3e9Gsl2{qY0%a7J?uICWgHuLfj+MB z=GkAN1&ifT#2u}B+2S#~$5jA(Qn^;H%CCmIae4AE-Dsng|Hl*Ov!z72k3ZnJs{pp| z+pW`DDueC#mEWOf=ucJ!dTL}hzOeiS-i?m2E;`EKz4<&Lu~NnW?peqVU^@<+T3KKu z{yrI%Qy-Z%HEvLUz}n^~m?7x`xuCtNR#L2En!T>dQtIKdS#V-Hzt3RtwTeYtmQ&dR z6qXZvac*oc@BUYEH%@Ylv_1&tSjkbzzU6*h1(3^C`;1z;g_SmOtclS?KWk2VYE zM*oS<=C483XckW?GN|1jfh3Ro(h + + + + +