X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=eclipse%2Fruntime%2Forg.argeo.eclipse.ui.jcr%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Feclipse%2Fui%2Fjcr%2Futils%2FJcrFileProvider.java;h=94cb80992702fadd18c31084ca0f5dc3cf46cb43;hb=2247846769e070a9005cab307e630de83e52c94e;hp=f8de5f3b54a8ecee9da1900b86d1de0d4d8b1d1c;hpb=4299fe97454ee872208438964d6d3a221423f191;p=lgpl%2Fargeo-commons.git diff --git a/eclipse/runtime/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/utils/JcrFileProvider.java b/eclipse/runtime/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/utils/JcrFileProvider.java index f8de5f3b5..94cb80992 100644 --- a/eclipse/runtime/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/utils/JcrFileProvider.java +++ b/eclipse/runtime/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/utils/JcrFileProvider.java @@ -1,85 +1,150 @@ package org.argeo.eclipse.ui.jcr.utils; import java.io.InputStream; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; import javax.jcr.Node; +import javax.jcr.Property; +import javax.jcr.Repository; import javax.jcr.RepositoryException; +import javax.jcr.nodetype.NodeType; import org.apache.commons.io.IOUtils; import org.argeo.ArgeoException; import org.argeo.eclipse.ui.jcr.browser.RepositoryNode; -import org.argeo.eclipse.ui.jcr.browser.WorkspaceNode; import org.argeo.eclipse.ui.specific.FileProvider; +import org.argeo.jcr.RepositoryRegister; /** * Implements a FileProvider for UI purposes. Note that it might not be very * reliable as long as we have not fixed login & multi repository issues that * will be addressed in the next version. * - * We are also very dependant of the repository architecture for file nodes. We - * assume the content of the file is stored in a nt:resource child node of the - * nt:file in the jcr:data property + * NOTE: id used here is the real id of the JCR Node, not the JCR Path * - * @author bsinou + * Relies on common approach for JCR file handling implementation. * */ public class JcrFileProvider implements FileProvider { - private RepositoryNode repositoryNode; + private Object[] rootNodes; /** * Must be set in order for the provider to be able to search the repository + * Provided object might be either JCR Nodes or UI RepositoryNode for the + * time being. * * @param repositoryNode */ - public void setRepositoryNode(RepositoryNode repositoryNode) { - this.repositoryNode = repositoryNode; + public void setRootNodes(Object[] rootNodes) { + List tmpNodes = new ArrayList(); + for (int i = 0; i < rootNodes.length; i++) { + Object obj = rootNodes[i]; + if (obj instanceof Node) { + tmpNodes.add(obj); + } else if (obj instanceof RepositoryRegister) { + RepositoryRegister repositoryRegister = (RepositoryRegister) obj; + Map repositories = repositoryRegister + .getRepositories(); + for (String name : repositories.keySet()) { + tmpNodes.add(new RepositoryNode(name, repositories + .get(name))); + } + + } + } + this.rootNodes = tmpNodes.toArray(); } public byte[] getByteArrayFileFromId(String fileId) { + InputStream fis = null; + byte[] ba = null; + Node child = getFileNodeFromId(fileId); + try { + fis = (InputStream) child.getProperty(Property.JCR_DATA) + .getBinary().getStream(); + ba = IOUtils.toByteArray(fis); + + } catch (Exception e) { + throw new ArgeoException("Stream error while opening file", e); + } finally { + IOUtils.closeQuietly(fis); + } + return ba; + } + + public InputStream getInputStreamFromFileId(String fileId) { try { - Object[] nodes = repositoryNode.getChildren(); - - repos: for (int i = 0; i < nodes.length; i++) { - WorkspaceNode wNode = (WorkspaceNode) nodes[i]; - Node node = null; - node = wNode.getSession().getNodeByIdentifier(fileId); - - if (node == null) - continue repos; - - if (!node.isNodeType("nt:file")) - throw new ArgeoException( - "Cannot open file children Node that are not of 'nt:resource' type."); - - Node child = node.getNodes().nextNode(); - if (!child.isNodeType("nt:resource")) - throw new ArgeoException( - "Cannot open file children Node that are not of 'nt:resource' type."); - - InputStream fis = null; - byte[] ba = null; - try { - fis = (InputStream) child.getProperty("jcr:data") - .getBinary().getStream(); - ba = IOUtils.toByteArray(fis); - - } catch (Exception e) { - throw new ArgeoException("Stream error while opening file", - e); - } finally { - IOUtils.closeQuietly(fis); + InputStream fis = null; + + Node child = getFileNodeFromId(fileId); + fis = (InputStream) child.getProperty(Property.JCR_DATA) + .getBinary().getStream(); + return fis; + } catch (RepositoryException re) { + throw new ArgeoException("Cannot get stream from file node for Id " + + fileId, re); + } + } + + /** + * Throws an exception if the node is not found in the current repository (a + * bit like a FileNotFoundException) + * + * @param fileId + * @return Returns the child node of the nt:file node. It is the child node + * that have the jcr:data property where actual file is stored. + * never null + */ + private Node getFileNodeFromId(String fileId) { + try { + Node result = null; + + rootNodes: for (int j = 0; j < rootNodes.length; j++) { + // in case we have a classic JCR Node + if (rootNodes[j] instanceof Node) { + Node curNode = (Node) rootNodes[j]; + result = curNode.getSession().getNodeByIdentifier(fileId); + if (result != null) + break rootNodes; + } // Case of a repository Node + else if (rootNodes[j] instanceof RepositoryNode) { + Object[] nodes = ((RepositoryNode) rootNodes[j]) + .getChildren(); + for (int i = 0; i < nodes.length; i++) { + Node node = (Node) nodes[i]; + result = node.getSession().getNodeByIdentifier(fileId); + if (result != null) + break rootNodes; + } } - if (ba != null) - return ba; } + // Sanity checks + if (result == null) + throw new ArgeoException("File node not found for ID" + fileId); + + // Ensure that the node have the correct type. + if (!result.isNodeType(NodeType.NT_FILE)) + throw new ArgeoException( + "Cannot open file children Node that are not of '" + + NodeType.NT_RESOURCE + "' type."); + + // Get the usefull part of the Node + Node child = result.getNodes().nextNode(); + if (child == null || !child.isNodeType(NodeType.NT_RESOURCE)) + throw new ArgeoException( + "ERROR: IN the current implemented model, '" + + NodeType.NT_FILE + + "' file node must have one and only one child of the nt:ressource, where actual data is stored"); + return child; + } catch (RepositoryException re) { - throw new ArgeoException("RepositoryException while reading file ", - re); + throw new ArgeoException("Erreur while getting file node of ID " + + fileId, re); } - - throw new ArgeoException("File not found for ID " + fileId); } }