INTERNAL: bug fix for source viewing 17/26817/1
authorgreatim <jaewon81.lim@samsung.com>
Thu, 28 Aug 2014 17:45:07 +0000 (02:45 +0900)
committergreatim <jaewon81.lim@samsung.com>
Thu, 28 Aug 2014 17:45:07 +0000 (02:45 +0900)
source viewing bug is fixed, and directory to extract rpms is changed.
EFL app do not launch with launch_pad

Change-Id: I3d4d2137bf2996f9395e346bf3411e0172ab9874
Signed-off-by: greatim <jaewon81.lim@samsung.com>
org.tizen.dynamicanalyzer.workbench/src/org/tizen/dynamicanalyzer/common/path/PathManager.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/listeners/TableTooltipListener.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/swap/communicator/Communicator30.java

index 387e87d..fd95d70 100755 (executable)
@@ -61,7 +61,9 @@ public class PathManager {
                        + PathConstants.SAVE_FOLDER_NAME;
        public static final String DA_SETTING_PATH = DA_DATA_PATH + File.separator
                        + PathConstants.SETTING_FOLDER_NAME;
-       public static final String DA_RPM_PATH = DA_DATA_PATH + File.separator
+       public static final String DA_TEMP_FOLDER_PATH = DA_SAVE_PATH + File.separator
+                       + PathConstants.TEMP_FOLDER_NAME;
+       public static final String DA_RPM_PATH = DA_TEMP_FOLDER_PATH + File.separator
                        + PathConstants.RPM_FOLDER_NAME;
        public static final String DA_CONFIG_FOLDER_PATH = DA_INSTALL_PATH + File.separator
                        + PathConstants.CONFIG_FOLDER_NAME;
@@ -72,8 +74,6 @@ public class PathManager {
                        + File.separator + "data.log"; //$NON-NLS-1$
        public static final String DA_DEBUG_CONTROL_CHANNEL_LOG_FILE = DA_LOG_PATH
                        + File.separator + "control.log"; //$NON-NLS-1$
-       public static final String DA_TEMP_FOLDER_PATH = DA_SAVE_PATH + File.separator
-                       + PathConstants.TEMP_FOLDER_NAME;
        public static final String DA_BINARY_AUTO_SAVE_FILE = DA_SAVE_PATH + File.separator
                        + "BinarySettings.save";
 
index 02d55f3..39c2c20 100644 (file)
@@ -206,9 +206,9 @@ public class TableTooltipListener implements Listener {
                // TODO: change number to define
                case AnalyzerConstants.TYPE_TABLE_LEAK:
                        List<Object> leakData = tableData.getData();
-                       addr = (Long) leakData.get(4);
+                       addr = (Long) leakData.get(9);
                        pid = (Integer) leakData.get(2);
-                       time = (Long) leakData.get(8);
+                       time = (Long) leakData.get(4);
                        break;
                case AnalyzerConstants.TYPE_TABLE_WARNING:
                        data = tableData.getLogData();
index b39b9f0..265eb03 100755 (executable)
@@ -360,9 +360,9 @@ public class Communicator30 extends BaseCommunicator {
                                } else if (appType.contains(AppInfo.APPTYPE_WEB)) {
                                        appInst.setApplicationType(ApplicationInst.APPTYPE_WEB);
                                        appInst.setApplicationId(app.getAppId());
-                               } else if (appType.contains(AppInfo.APPTYPE_CAPP)) {
-                                       appInst.setApplicationType(ApplicationInst.APPTYPE_TIZEN);
-                                       appInst.setApplicationId(app.getAppId());
+//                             } else if (appType.contains(AppInfo.APPTYPE_CAPP)) {
+//                                     appInst.setApplicationType(ApplicationInst.APPTYPE_TIZEN);
+//                                     appInst.setApplicationId(app.getAppId());
                                } else {
                                        appInst.setApplicationType(ApplicationInst.APPTYPE_COMMON_EXEC);
                                        appInst.setApplicationId(CommonConstants.EMPTY);