lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / stubs / org / eclipse / linuxtools / internal / lttng2 / stubs / shells / LTTngToolsFileShell.java
index 79ebc27bf359b2cc6c75ee21b9fb7898f295458f..0f7227b569692568dff8dcd36d643c8cc01e6383 100644 (file)
@@ -1,5 +1,5 @@
 /**********************************************************************
- * Copyright (c) 2012, 2013 Ericsson
+ * Copyright (c) 2012, 2014 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
@@ -53,8 +53,8 @@ public class LTTngToolsFileShell extends TestCommandShell {
     private String fScenariofile;
     private String fScenario;
 
-    private final Map<String, Map<String, ICommandResult>> fScenarioMap = new HashMap<String, Map<String, ICommandResult>>();
-    private final Map<String, Integer> fSessionNameMap = new HashMap<String, Integer>();
+    private final Map<String, Map<String, ICommandResult>> fScenarioMap = new HashMap<>();
+    private final Map<String, Integer> fSessionNameMap = new HashMap<>();
 
     /**
      * Parse a scenario file with the format:
@@ -101,118 +101,117 @@ public class LTTngToolsFileShell extends TestCommandShell {
         // load from file
 
         // Open the file
-        FileInputStream fstream = new FileInputStream(fScenariofile);
+        try (FileInputStream fstream = new FileInputStream(fScenariofile);
+                DataInputStream in = new DataInputStream(fstream);
+                BufferedReader br = new BufferedReader(new InputStreamReader(in));) {
+            String strLine;
 
-        // Get the object of DataInputStream
-        DataInputStream in = new DataInputStream(fstream);
-        BufferedReader br = new BufferedReader(new InputStreamReader(in));
-        String strLine;
+            // Read File Line by Line
 
-        // Read File Line by Line
-
-        // Temporary map for generating instance numbers for lttng list <session> commands.
-        // The numbers are per scenario.
-        Map<String, Integer> tmpSessionNameMap = new HashMap<String, Integer>();
-        while ((strLine = br.readLine()) != null) {
-
-            // Ignore comments
-            if(isComment(strLine)) {
-                continue;
-            }
-
-            if (SCENARIO_KEY.equals(strLine)) {
-                // scenario start
+            // Temporary map for generating instance numbers for lttng list
+            // <session> commands.
+            // The numbers are per scenario.
+            Map<String, Integer> tmpSessionNameMap = new HashMap<>();
+            while ((strLine = br.readLine()) != null) {
 
                 // Ignore comments
-                strLine = br.readLine();
-                while (isComment(strLine)) {
-                    strLine = br.readLine();
+                if (isComment(strLine)) {
+                    continue;
                 }
 
-                String scenario = strLine;
-                Map<String, ICommandResult> commandMap = new HashMap<String, ICommandResult>();
-                fScenarioMap.put(scenario, commandMap);
-                List<String> output = null;
-                String input = null;
-                boolean inOutput = false;
-                int result = 0;
-                tmpSessionNameMap.clear();
-                while ((strLine = br.readLine()) != null) {
+                if (SCENARIO_KEY.equals(strLine)) {
+                    // scenario start
+
                     // Ignore comments
-                    if(isComment(strLine)) {
-                        continue;
+                    strLine = br.readLine();
+                    while (isComment(strLine)) {
+                        strLine = br.readLine();
                     }
 
-                    if (SCENARIO_END_KEY.equals(strLine)) {
-                        // Scenario is finished
-                        break;
-                    }
-                    if (INPUT_KEY.equals(strLine)) {
-                        strLine = br.readLine();
+                    String scenario = strLine;
+                    Map<String, ICommandResult> commandMap = new HashMap<>();
+                    fScenarioMap.put(scenario, commandMap);
+                    List<String> output = null;
+                    String input = null;
+                    boolean inOutput = false;
+                    int result = 0;
+                    tmpSessionNameMap.clear();
+                    while ((strLine = br.readLine()) != null) {
                         // Ignore comments
-                        while (isComment(strLine)) {
-                            strLine = br.readLine();
+                        if (isComment(strLine)) {
+                            continue;
                         }
-                        // Read command
-                        input = strLine;
 
-                        // Handle instances of 'lttng list <session"-comamand
-                        Matcher matcher = LTTNG_LIST_SESSION_PATTERN.matcher(strLine);
-                        if (matcher.matches() && !input.matches(LTTNG_LIST_PROVIDER_PATTERN)) {
-                            String sessionName = matcher.group(1).trim();
-                            Integer i = tmpSessionNameMap.get(sessionName);
-                            if (i != null) {
-                                i++;
-                            } else {
-                                i = 0;
-                            }
-                            tmpSessionNameMap.put(sessionName, i);
-                            input += String.valueOf(i);
+                        if (SCENARIO_END_KEY.equals(strLine)) {
+                            // Scenario is finished
+                            break;
                         }
-                    } else if (INPUT_END_KEY.equals(strLine)) {
-                        // Initialize output array
-                        output = new ArrayList<String>();
-                    } else if (RESULT_KEY.equals(strLine)) {
-                        strLine = br.readLine();
-                        // Ignore comments
-                        while (isComment(strLine)) {
+                        if (INPUT_KEY.equals(strLine)) {
                             strLine = br.readLine();
-                        }
-                        // Save result value
-                        result = Integer.parseInt(strLine);
-                    }  else if (OUTPUT_END_KEY.equals(strLine)) {
-                        // Save output/result in command map
-                        if (output != null) {
-                            commandMap.put(input, new CommandResult(result, output.toArray(new String[output.size()])));
-                        }
-                        inOutput = false;
-                    } else if (OUTPUT_KEY.equals(strLine)) {
-                        // first line of output
-                        inOutput = true;
-                        strLine = br.readLine();
+                            // Ignore comments
+                            while (isComment(strLine)) {
+                                strLine = br.readLine();
+                            }
+                            // Read command
+                            input = strLine;
 
-                        // Ignore comments
-                        while (isComment(strLine)) {
+                            // Handle instances of 'lttng list
+                            // <session"-comamand
+                            Matcher matcher = LTTNG_LIST_SESSION_PATTERN.matcher(strLine);
+                            if (matcher.matches() && !input.matches(LTTNG_LIST_PROVIDER_PATTERN)) {
+                                String sessionName = matcher.group(1).trim();
+                                Integer i = tmpSessionNameMap.get(sessionName);
+                                if (i != null) {
+                                    i++;
+                                } else {
+                                    i = 0;
+                                }
+                                tmpSessionNameMap.put(sessionName, i);
+                                input += String.valueOf(i);
+                            }
+                        } else if (INPUT_END_KEY.equals(strLine)) {
+                            // Initialize output array
+                            output = new ArrayList<>();
+                        } else if (RESULT_KEY.equals(strLine)) {
                             strLine = br.readLine();
+                            // Ignore comments
+                            while (isComment(strLine)) {
+                                strLine = br.readLine();
+                            }
+                            // Save result value
+                            result = Integer.parseInt(strLine);
+                        } else if (OUTPUT_END_KEY.equals(strLine)) {
+                            // Save output/result in command map
+                            if (output != null) {
+                                commandMap.put(input, new CommandResult(result, output.toArray(new String[output.size()])));
+                            }
+                            inOutput = false;
+                        } else if (OUTPUT_KEY.equals(strLine)) {
+                            // first line of output
+                            inOutput = true;
+                            strLine = br.readLine();
+
+                            // Ignore comments
+                            while (isComment(strLine)) {
+                                strLine = br.readLine();
+                            }
+                            if (output != null) {
+                                output.add(strLine);
+                            }
+                        } else if (inOutput) {
+                            // subsequent lines of output
+                            if (output != null) {
+                                output.add(strLine);
+                            }
                         }
-                        if (output != null) {
-                            output.add(strLine);
-                        }
-                    } else if (inOutput) {
-                        // subsequent lines of output
-                        if (output != null) {
-                            output.add(strLine);
-                        }
-                    }
-//                    else {
-//                        if (RESULT_END_KEY.equals(strLine)) {
+                        // else {
+                        // if (RESULT_END_KEY.equals(strLine)) {
                         // nothing to do
-//                    }
+                        // }
+                    }
                 }
             }
         }
-        //Close the input stream
-        in.close();
     }
 
     // Set the scenario to consider in executeCommand()
This page took 0.027469 seconds and 5 git commands to generate.