[jboss-svn-commits] JBL Code SVN: r18489 - in labs/jbossrules/trunk/drools-repository/src/main/java/org: apache and 2 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Feb 17 22:38:18 EST 2008


Author: fmeyer
Date: 2008-02-17 22:38:17 -0500 (Sun, 17 Feb 2008)
New Revision: 18489

Added:
   labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/
   labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/jackrabbit/
   labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/jackrabbit/value/
   labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/jackrabbit/value/BinaryValue.java
Log:
JBRULES-1468 a little hack to test correct jackrabbits binary bug

Added: labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/jackrabbit/value/BinaryValue.java
===================================================================
--- labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/jackrabbit/value/BinaryValue.java	                        (rev 0)
+++ labs/jbossrules/trunk/drools-repository/src/main/java/org/apache/jackrabbit/value/BinaryValue.java	2008-02-18 03:38:17 UTC (rev 18489)
@@ -0,0 +1,193 @@
+/*
+ * 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.jackrabbit.value;
+
+import javax.jcr.PropertyType;
+import javax.jcr.RepositoryException;
+import javax.jcr.ValueFormatException;
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
+
+/**
+ * A <code>BinaryValue</code> provides an implementation
+ * of the <code>Value</code> interface representing a binary value.
+ */
+public class BinaryValue extends BaseValue {
+
+    public static final int TYPE = PropertyType.BINARY;
+
+    // those fields are mutually exclusive, i.e. only one can be non-null
+    private byte[] streamData = null;
+    private String text = null;
+
+    /**
+     * Constructs a <code>BinaryValue</code> object based on a string.
+     *
+     * @param text the string this <code>BinaryValue</code> should represent
+     */
+    public BinaryValue(String text) {
+        super(TYPE);
+        this.text = text;
+    }
+
+    /**
+     * Constructs a <code>BinaryValue</code> object based on a stream.
+     *
+     * @param stream the stream this <code>BinaryValue</code> should represent
+     */
+    public BinaryValue(InputStream stream) {
+        super(TYPE);
+        this.stream = stream;
+    }
+
+    /**
+     * Constructs a <code>BinaryValue</code> object based on a stream.
+     *
+     * @param data the stream this <code>BinaryValue</code> should represent
+     */
+    public BinaryValue(byte[] data) {
+        super(TYPE);
+        streamData = data;
+    }
+
+    /**
+     * Indicates whether some other object is "equal to" this one.
+     * <p/>
+     * The result is <code>true</code> if and only if the argument is not
+     * <code>null</code> and is a <code>BinaryValue</code> object that
+     * represents the same value as this object.
+     *
+     * @param obj the reference object with which to compare.
+     * @return <code>true</code> if this object is the same as the obj
+     *         argument; <code>false</code> otherwise.
+     */
+    public boolean equals(Object obj) {
+        if (this == obj) {
+            return true;
+        }
+        if (obj instanceof BinaryValue) {
+            BinaryValue other = (BinaryValue) obj;
+            if (text == other.text && stream == other.stream
+                    && streamData == other.streamData) {
+                return true;
+            }
+            // stream, streamData and text are mutually exclusive,
+            // i.e. only one of them can be non-null
+            if (stream != null) {
+                return stream.equals(other.stream);
+            } else if (streamData != null) {
+                return streamData.equals(other.streamData);
+            } else {
+                return text.equals(other.text);
+            }
+        }
+        return false;
+    }
+
+    /**
+     * Returns zero to satisfy the Object equals/hashCode contract.
+     * This class is mutable and not meant to be used as a hash key.
+     *
+     * @return always zero
+     * @see Object#hashCode()
+     */
+    public int hashCode() {
+        return 0;
+    }
+
+    //------------------------------------------------------------< BaseValue >
+    /**
+     * Gets the string representation of this binary value.
+     *
+     * @return string representation of this binary value.
+     *
+     * @throws javax.jcr.ValueFormatException
+     * @throws javax.jcr.RepositoryException  if another error occurs
+     */
+    public String getInternalString()
+            throws ValueFormatException, RepositoryException {
+        // build text value if necessary
+        if (streamData != null) {
+            try {
+                text = new String(streamData, DEFAULT_ENCODING);
+            } catch (UnsupportedEncodingException e) {
+                throw new RepositoryException(DEFAULT_ENCODING
+                        + " not supported on this platform", e);
+            }
+            streamData = null;
+        } else if (stream != null) {
+            try {
+                ByteArrayOutputStream out = new ByteArrayOutputStream();
+                byte[] buffer = new byte[8192];
+                int read;
+                while ((read = stream.read(buffer)) > 0) {
+                    out.write(buffer, 0, read);
+                }
+                byte[] data = out.toByteArray();
+                text = new String(data, DEFAULT_ENCODING);
+            } catch (UnsupportedEncodingException e) {
+                throw new RepositoryException(DEFAULT_ENCODING
+                        + " not supported on this platform", e);
+            } catch (IOException e) {
+                throw new RepositoryException("conversion from stream to string failed", e);
+            } finally {
+                try {
+                    if (stream != null) {
+                        stream.close();
+                    }
+                } catch (IOException e) {
+                    // ignore
+                }
+            }
+            stream = null;
+        }
+
+        if (text != null) {
+            return text;
+        } else {
+            throw new ValueFormatException("empty value");
+        }
+    }
+
+    //----------------------------------------------------------------< Value >
+    /**
+     * {@inheritDoc}
+     */
+    public InputStream getStream()
+            throws IllegalStateException, RepositoryException {
+        setStreamConsumed();
+
+        // build stream value if necessary
+        if (streamData != null) {
+            stream = new ByteArrayInputStream(streamData);
+            streamData = null;
+        } else if (text != null) {
+            try {
+                stream = new ByteArrayInputStream(text.getBytes(DEFAULT_ENCODING));
+            } catch (UnsupportedEncodingException e) {
+                throw new RepositoryException(DEFAULT_ENCODING
+                        + " not supported on this platform", e);
+            }
+            text = null;
+        }
+
+        return super.getStream();
+    }
+}




More information about the jboss-svn-commits mailing list