Author: christian
Date: Tue Mar 18 04:24:45 2008
New Revision: 638325

URL: http://svn.apache.org/viewvc?rev=638325&view=rev
Log:
- Fixed issue where resource processors could close the underlying deployment 
package stream by closing the resource specific stream
- Completed event now contains a Boolean instead of a String as defined in 
compendium 114.11
- A few cosmetic changes

Added:
    
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/NonCloseableStream.java
Modified:
    
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/AbstractDeploymentPackage.java
    
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/Constants.java
    
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/DeploymentAdminImpl.java
    
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/FileDeploymentPackage.java
    
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/StreamDeploymentPackage.java

Modified: 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/AbstractDeploymentPackage.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/AbstractDeploymentPackage.java?rev=638325&r1=638324&r2=638325&view=diff
==============================================================================
--- 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/AbstractDeploymentPackage.java
 (original)
+++ 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/AbstractDeploymentPackage.java
 Tue Mar 18 04:24:45 2008
@@ -309,9 +309,5 @@
      */
     public abstract InputStream getCurrentEntryStream();
 
-       public Bundle getBundle(Object symbolicName) {
-               // TODO Auto-generated method stub
-               return null;
-       }
 }
 

Modified: 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/Constants.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/Constants.java?rev=638325&r1=638324&r2=638325&view=diff
==============================================================================
--- 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/Constants.java
 (original)
+++ 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/Constants.java
 Tue Mar 18 04:24:45 2008
@@ -35,7 +35,7 @@
     public static final String EVENTTOPIC_UNINSTALL = 
"org/osgi/service/deployment/UNINSTALL";
     public static final String EVENTTOPIC_COMPLETE = 
"org/osgi/service/deployment/COMPLETE";
     public static final String EVENTPROPERTY_DEPLOYMENTPACKAGE_NAME = 
"deploymentpackage.name";
-    public static final String EVENTPROPERTY_SUCCESFUL = "succesful";
+    public static final String EVENTPROPERTY_SUCCESSFUL = "successful";
 
     // miscellaneous constants
     public static final String BUNDLE_LOCATION_PREFIX = "osgi-dp:";

Modified: 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/DeploymentAdminImpl.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/DeploymentAdminImpl.java?rev=638325&r1=638324&r2=638325&view=diff
==============================================================================
--- 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/DeploymentAdminImpl.java
 (original)
+++ 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/DeploymentAdminImpl.java
 Tue Mar 18 04:24:45 2008
@@ -25,6 +25,7 @@
 import java.util.Collection;
 import java.util.Dictionary;
 import java.util.HashMap;
+import java.util.Hashtable;
 import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
@@ -261,14 +262,14 @@
         }
     }
 
-    private void delete(File tempPackage) {
-       if (tempPackage.isDirectory()) {
-            File[] childs = tempPackage.listFiles();
+    private void delete(File target) {
+       if (target.isDirectory()) {
+            File[] childs = target.listFiles();
             for (int i = 0; i < childs.length; i++) {
                 delete(childs[i]);
             }
         }
-       tempPackage.delete();
+       target.delete();
        }
 
        public DeploymentPackage[] listDeploymentPackages() {
@@ -311,9 +312,9 @@
     }
 
     private void sendCompleteEvent(String name, boolean success) {
-        Dictionary props = new Properties();
+        Dictionary props = new Hashtable();
         props.put(Constants.EVENTPROPERTY_DEPLOYMENTPACKAGE_NAME, name);
-        props.put(Constants.EVENTPROPERTY_SUCCESFUL, String.valueOf(success));
+        props.put(Constants.EVENTPROPERTY_SUCCESSFUL, 
Boolean.valueOf(success));
         Event completeEvent = new Event(Constants.EVENTTOPIC_COMPLETE, props);
         m_eventAdmin.postEvent(completeEvent);
     }

Modified: 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/FileDeploymentPackage.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/FileDeploymentPackage.java?rev=638325&r1=638324&r2=638325&view=diff
==============================================================================
--- 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/FileDeploymentPackage.java
 (original)
+++ 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/FileDeploymentPackage.java
 Tue Mar 18 04:24:45 2008
@@ -43,7 +43,7 @@
      * Creates a new instance of a deployment package stored on disk.
      *
      * @param index Reference to the index file that contains the order in 
which all the resources of this deployment package were received
-     * @param packageDir Reference to the directory in which the index and 
package cotents are stored.
+     * @param packageDir Reference to the directory in which the index and 
package contents are stored.
      * @param bundleContext The bundle context
      * @throws DeploymentException Thrown if the disk contents do not resemble 
a valid deployment package.
      * @throws IOException Thrown if there was a problem reading the resources 
from disk.

Added: 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/NonCloseableStream.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/NonCloseableStream.java?rev=638325&view=auto
==============================================================================
--- 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/NonCloseableStream.java
 (added)
+++ 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/NonCloseableStream.java
 Tue Mar 18 04:24:45 2008
@@ -0,0 +1,105 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.deploymentadmin;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+/**
+ * Stream that does nothing when close() is invoked, calls to one of the read 
methods will throw an <code>IOException</code>
+ * after close() is called. Also, mark/reset is not supported. Deployment 
Admin can use this class to pass on as an <code>InputStream</code>
+ * to a resource processor.
+ * 
+ */
+public class NonCloseableStream extends InputStream {
+
+       private final InputStream m_input;
+       private boolean m_closed;
+
+       public NonCloseableStream(InputStream m_input) {
+               this.m_input = m_input;
+       }
+
+       
+       // stream should not be actually closed, subsequent calls to read 
methods will throw an exception though
+       
+       public void close() throws IOException {
+               if (m_closed) {
+                       throw new IOException("Unable to read, stream is 
closed.");
+               }
+               m_closed = true;
+       }
+       
+       public int read() throws IOException {
+               return m_input.read();
+       }
+       
+       public int read(byte[] b, int off, int len) throws IOException {
+               if (m_closed) {
+                       throw new IOException("Unable to read, stream is 
closed.");
+               }
+               return m_input.read(b, off, len);
+       }
+
+       public int read(byte[] b) throws IOException {
+               if (m_closed) {
+                       throw new IOException("Unable to read, stream is 
closed.");
+               }
+               return m_input.read(b);
+       }
+
+       
+       // No mark & reset support
+       
+       public boolean markSupported() {
+               return false;
+       }
+
+       public void mark(int readlimit) {
+               // do nothing
+       }
+
+       public void reset() throws IOException {
+               throw new IOException("Mark and reset are not available on this 
type of stream.");
+       }
+
+
+       // Unaffected methods
+
+       public int available() throws IOException {
+               return m_input.available();
+       }
+
+       public int hashCode() {
+               return m_input.hashCode();
+       }
+
+       public long skip(long n) throws IOException {
+               return m_input.skip(n);
+       }
+
+       public boolean equals(Object obj) {
+               return m_input.equals(obj);
+       }
+
+       public String toString() {
+               return m_input.toString();
+       }
+
+}

Modified: 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/StreamDeploymentPackage.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/StreamDeploymentPackage.java?rev=638325&r1=638324&r2=638325&view=diff
==============================================================================
--- 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/StreamDeploymentPackage.java
 (original)
+++ 
felix/trunk/deploymentadmin/src/main/java/org/apache/felix/deploymentadmin/StreamDeploymentPackage.java
 Tue Mar 18 04:24:45 2008
@@ -92,7 +92,7 @@
     }
 
     public InputStream getCurrentEntryStream() {
-        return m_input;
+        return new NonCloseableStream(m_input);
     }
 
 }


Reply via email to