You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2011/05/11 16:42:50 UTC

svn commit: r1101898 - /tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java

Author: antelder
Date: Wed May 11 14:42:50 2011
New Revision: 1101898

URL: http://svn.apache.org/viewvc?rev=1101898&view=rev
Log:
Update Shell installed and start commands to work with the latest Node/registry changes

Modified:
    tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java

Modified: tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java?rev=1101898&r1=1101897&r2=1101898&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java Wed May 11 14:42:50 2011
@@ -209,31 +209,23 @@ public class Shell {
     }
 
     boolean installed(final List<String> toks) {
-        List<String> curis;
-        if (toks.size() > 1) {
-            curis = Arrays.asList(new String[] {toks.get(1)});
-        } else {
-            if (getNode() == null) {
-                return true;
-            }
-            curis = getNode().getInstalledContributionURIs();
+        if (getNode() == null) {
+            return true;
         }
-        boolean full = false;
-        for (String curi : curis) {
-            out.println("   " + curi);
-            if (full) { 
+        if (toks.size() > 1) {
+            String curi = toks.get(1);
+            Contribution c = getNode().getInstalledContribution(toks.get(1));
+            if (c == null) {
+                out.println("Contribution " + curi + " not installed");
+            } else {
+                out.println("Contribution " + curi);
+                out.println("   URL: " + c.getLocation());
                 // TODO: add full detail view of contribution showing
-                // uri, url, dependent cintrubutions, deployables, exports
-                out.println(curi + " " + getNode().getInstalledContribution(curi).getLocation());
-                Contribution c = getNode().getInstalledContribution(curi);
-                List<String> deployeds = getNode().getStartedCompositeURIs(curi);
-                for (Artifact a : c.getArtifacts()) {
-                    if (a.getModel() instanceof Composite) {
-                        Composite composite = (Composite)a.getModel();
-                        String running = deployeds.contains(composite.getURI()) ? "***running***" : "";
-                        out.println("   " + composite.getURI() + " " + composite.getName() + " " + running);
-                    }
-                }
+                // uri, url, dependent contrubutions, deployables, exports
+            }
+        } else {
+            for (String curi : getNode().getInstalledContributionURIs()) {
+                out.println("   " + curi);
             }
         }
         return true;
@@ -390,22 +382,24 @@ public class Shell {
     }
 
     boolean start(String curi, String compositeURI) throws ActivationException, ValidationException, ContributionReadException {
-        Contribution c = getNode().getInstalledContribution(curi);
-        for (Artifact a : c.getArtifacts()) {
-            if (compositeURI.equals(a.getURI())) {
-                getNode().start(curi, compositeURI);
-                return true;
-            }
-        }
-        // external composite file ('composite by value')
-        try {
-            URL url = IOHelper.getLocationAsURL(compositeURI);
-            InputStream is = IOHelper.openStream(url);
-            BufferedReader br = new BufferedReader(new InputStreamReader(is, "UTF-8"));
-            getNode().start(curi, br);
-        } catch (Exception e) {
-            System.out.println(e);
-        }
+        getNode().start(curi, compositeURI);
+
+//        Contribution c = getNode().getInstalledContribution(curi);
+//        for (Artifact a : c.getArtifacts()) {
+//            if (compositeURI.equals(a.getURI())) {
+//                getNode().start(curi, compositeURI);
+//                return true;
+//            }
+//        }
+//        // external composite file ('composite by value')
+//        try {
+//            URL url = IOHelper.getLocationAsURL(compositeURI);
+//            InputStream is = IOHelper.openStream(url);
+//            BufferedReader br = new BufferedReader(new InputStreamReader(is, "UTF-8"));
+//            getNode().start(curi, br);
+//        } catch (Exception e) {
+//            System.out.println(e);
+//        }
 
         return true;
     }