[Title] bug fix. active_ide
authorHyunjongPark <hyunjongpark@hyunjongpark-Samsung-Desktop-System.(none)>
Wed, 26 Jun 2013 23:51:00 +0000 (08:51 +0900)
committerHyunjongPark <hyunjongpark@hyunjongpark-Samsung-Desktop-System.(none)>
Wed, 26 Jun 2013 23:51:00 +0000 (08:51 +0900)
[Desc.] make file
[Issue] -

org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/communication/DAServerManager.java
package/pkginfo.manifest

index 7874a50..5a23524 100644 (file)
@@ -333,11 +333,23 @@ public class DAServerManager extends Thread {
                FileChannel fchannel = null;
 
                StringBuffer savePortPath = new StringBuffer();
+//             savePortPath.append(InstallPathConfig.getUserDataPath())
+//                             .append(File.separatorChar).append(DANAIC_ANALYZER)
+//                             .append(File.separatorChar).append(SAVE)
+//                             .append(File.separatorChar).append(ACTIVE_DA_PLUGIN);
+               
                savePortPath.append(InstallPathConfig.getUserDataPath())
-                               .append(File.separatorChar).append(DANAIC_ANALYZER)
-                               .append(File.separatorChar).append(SAVE)
-                               .append(File.separatorChar).append(ACTIVE_DA_PLUGIN);
+                       .append(File.separatorChar).append(DANAIC_ANALYZER)
+                       .append(File.separatorChar).append(SAVE);
+               
+               file = new File(savePortPath.toString());
+               if (!file.exists()) {
+                       file.mkdirs();
+               }
+               savePortPath.append(File.separatorChar).append(ACTIVE_DA_PLUGIN);
+               
                file = new File(savePortPath.toString());
+               
                try {
                        fchannel = new RandomAccessFile(file, "rw").getChannel();//$NON-NLS-1$
                } catch (FileNotFoundException e) {
index 2e95546..016a415 100644 (file)
@@ -1,4 +1,4 @@
-Version:2.1.26
+Version:2.1.27
 Source:dynamic-analysis-ide-eplugin
 Maintainer:Juyoung Kim <j0.kim@samsung.com>, Sanghyun Lee <sanghyunnim.lee@samsung.com>