mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
V1.3 to HEAD (3005, 3014, 3021, 3027, 3045, 3064, 3105, 3106)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3162 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -218,9 +218,9 @@ public class ExporterActionExecuter extends ActionExecuterAbstractBase
|
|||||||
String packageName = (String)ruleAction.getParameterValue(PARAM_PACKAGE_NAME);
|
String packageName = (String)ruleAction.getParameterValue(PARAM_PACKAGE_NAME);
|
||||||
|
|
||||||
// add the default Alfresco content package extension if an extension hasn't been given
|
// add the default Alfresco content package extension if an extension hasn't been given
|
||||||
if (packageName.indexOf(".") == -1)
|
if (!packageName.endsWith("." + ACPExportPackageHandler.ACP_EXTENSION))
|
||||||
{
|
{
|
||||||
packageName = packageName + "." + ACPExportPackageHandler.ACP_EXTENSION;
|
packageName += (packageName.charAt(packageName.length() -1) == '.') ? ACPExportPackageHandler.ACP_EXTENSION : "." + ACPExportPackageHandler.ACP_EXTENSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
// set the name for the new node
|
// set the name for the new node
|
||||||
|
@@ -23,8 +23,6 @@ import java.io.FileOutputStream;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.util.zip.ZipEntry;
|
|
||||||
import java.util.zip.ZipOutputStream;
|
|
||||||
|
|
||||||
import org.alfresco.error.AlfrescoRuntimeException;
|
import org.alfresco.error.AlfrescoRuntimeException;
|
||||||
import org.alfresco.service.cmr.repository.ContentData;
|
import org.alfresco.service.cmr.repository.ContentData;
|
||||||
@@ -32,6 +30,8 @@ import org.alfresco.service.cmr.repository.MimetypeService;
|
|||||||
import org.alfresco.service.cmr.view.ExportPackageHandler;
|
import org.alfresco.service.cmr.view.ExportPackageHandler;
|
||||||
import org.alfresco.service.cmr.view.ExporterException;
|
import org.alfresco.service.cmr.view.ExporterException;
|
||||||
import org.alfresco.util.TempFileProvider;
|
import org.alfresco.util.TempFileProvider;
|
||||||
|
import org.apache.tools.zip.ZipEntry;
|
||||||
|
import org.apache.tools.zip.ZipOutputStream;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -54,7 +54,7 @@ public class ACPExportPackageHandler
|
|||||||
protected ZipOutputStream zipStream;
|
protected ZipOutputStream zipStream;
|
||||||
protected int iFileCnt = 0;
|
protected int iFileCnt = 0;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct
|
* Construct
|
||||||
*
|
*
|
||||||
@@ -71,7 +71,7 @@ public class ACPExportPackageHandler
|
|||||||
String zipFilePath = zipFile.getPath();
|
String zipFilePath = zipFile.getPath();
|
||||||
if (!zipFilePath.endsWith("." + ACP_EXTENSION))
|
if (!zipFilePath.endsWith("." + ACP_EXTENSION))
|
||||||
{
|
{
|
||||||
zipFilePath += "." + ACP_EXTENSION;
|
zipFilePath += (zipFilePath.charAt(zipFilePath.length() -1) == '.') ? ACP_EXTENSION : "." + ACP_EXTENSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
File absZipFile = new File(destDir, zipFilePath);
|
File absZipFile = new File(destDir, zipFilePath);
|
||||||
@@ -118,6 +118,9 @@ public class ACPExportPackageHandler
|
|||||||
public void startExport()
|
public void startExport()
|
||||||
{
|
{
|
||||||
zipStream = new ZipOutputStream(outputStream);
|
zipStream = new ZipOutputStream(outputStream);
|
||||||
|
// NOTE: This encoding allows us to workaround bug...
|
||||||
|
// http://bugs.sun.com/bugdatabase/view_bug.do;:WuuT?bug_id=4820807
|
||||||
|
zipStream.setEncoding("Cp437");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
@@ -150,9 +153,9 @@ public class ACPExportPackageHandler
|
|||||||
|
|
||||||
// create zip entry for stream to export
|
// create zip entry for stream to export
|
||||||
String contentDirPath = contentDir.getPath();
|
String contentDirPath = contentDir.getPath();
|
||||||
if (contentDirPath.indexOf(".") != -1)
|
if (contentDirPath.charAt(contentDirPath.length() -1) != '.' && contentDirPath.lastIndexOf('.') != -1)
|
||||||
{
|
{
|
||||||
contentDirPath = contentDirPath.substring(0, contentDirPath.indexOf("."));
|
contentDirPath = contentDirPath.substring(0, contentDirPath.lastIndexOf("."));
|
||||||
}
|
}
|
||||||
String extension = "bin";
|
String extension = "bin";
|
||||||
if (mimetypeService != null)
|
if (mimetypeService != null)
|
||||||
@@ -197,7 +200,7 @@ public class ACPExportPackageHandler
|
|||||||
String dataFilePath = dataFile.getPath();
|
String dataFilePath = dataFile.getPath();
|
||||||
if (!dataFilePath.endsWith(".xml"))
|
if (!dataFilePath.endsWith(".xml"))
|
||||||
{
|
{
|
||||||
dataFilePath += ".xml";
|
dataFilePath += (dataFilePath .charAt(dataFilePath .length() -1) == '.') ? "xml" : ".xml";
|
||||||
}
|
}
|
||||||
|
|
||||||
// add data file to zip stream
|
// add data file to zip stream
|
||||||
|
@@ -532,7 +532,7 @@ import org.xml.sax.helpers.AttributesImpl;
|
|||||||
}
|
}
|
||||||
|
|
||||||
// convert node references to paths
|
// convert node references to paths
|
||||||
if (value instanceof NodeRef)
|
if (value instanceof NodeRef && referenceType.equals(ReferenceType.PATHREF))
|
||||||
{
|
{
|
||||||
NodeRef valueNodeRef = (NodeRef)value;
|
NodeRef valueNodeRef = (NodeRef)value;
|
||||||
if (nodeRef.getStoreRef().equals(valueNodeRef.getStoreRef()))
|
if (nodeRef.getStoreRef().equals(valueNodeRef.getStoreRef()))
|
||||||
|
@@ -24,11 +24,11 @@ import java.io.InputStreamReader;
|
|||||||
import java.io.Reader;
|
import java.io.Reader;
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.zip.ZipEntry;
|
|
||||||
import java.util.zip.ZipFile;
|
|
||||||
|
|
||||||
import org.alfresco.service.cmr.view.ImportPackageHandler;
|
import org.alfresco.service.cmr.view.ImportPackageHandler;
|
||||||
import org.alfresco.service.cmr.view.ImporterException;
|
import org.alfresco.service.cmr.view.ImporterException;
|
||||||
|
import org.apache.tools.zip.ZipEntry;
|
||||||
|
import org.apache.tools.zip.ZipFile;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -39,7 +39,8 @@ import org.alfresco.service.cmr.view.ImporterException;
|
|||||||
public class ACPImportPackageHandler
|
public class ACPImportPackageHandler
|
||||||
implements ImportPackageHandler
|
implements ImportPackageHandler
|
||||||
{
|
{
|
||||||
|
public final static String DEFAULT_ENCODING = "UTF-8";
|
||||||
|
|
||||||
protected File file;
|
protected File file;
|
||||||
protected ZipFile zipFile;
|
protected ZipFile zipFile;
|
||||||
protected String dataFileEncoding;
|
protected String dataFileEncoding;
|
||||||
@@ -65,7 +66,9 @@ public class ACPImportPackageHandler
|
|||||||
log("Importing from zip file " + file.getAbsolutePath());
|
log("Importing from zip file " + file.getAbsolutePath());
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
zipFile = new ZipFile(file);
|
// NOTE: This encoding allows us to workaround bug...
|
||||||
|
// http://bugs.sun.com/bugdatabase/view_bug.do;:WuuT?bug_id=4820807
|
||||||
|
zipFile = new ZipFile(file, "Cp437");
|
||||||
}
|
}
|
||||||
catch(IOException e)
|
catch(IOException e)
|
||||||
{
|
{
|
||||||
@@ -86,7 +89,7 @@ public class ACPImportPackageHandler
|
|||||||
// TODO: First, locate xml meta-data file by name
|
// TODO: First, locate xml meta-data file by name
|
||||||
|
|
||||||
// Scan the zip entries one by one (the slow approach)
|
// Scan the zip entries one by one (the slow approach)
|
||||||
Enumeration entries = zipFile.entries();
|
Enumeration entries = zipFile.getEntries();
|
||||||
while(entries.hasMoreElements())
|
while(entries.hasMoreElements())
|
||||||
{
|
{
|
||||||
ZipEntry entry = (ZipEntry)entries.nextElement();
|
ZipEntry entry = (ZipEntry)entries.nextElement();
|
||||||
@@ -113,7 +116,7 @@ public class ACPImportPackageHandler
|
|||||||
|
|
||||||
// open the meta-data xml file
|
// open the meta-data xml file
|
||||||
InputStream dataStream = zipFile.getInputStream(xmlMetaDataEntry);
|
InputStream dataStream = zipFile.getInputStream(xmlMetaDataEntry);
|
||||||
Reader inputReader = (dataFileEncoding == null) ? new InputStreamReader(dataStream) : new InputStreamReader(dataStream, dataFileEncoding);
|
Reader inputReader = (dataFileEncoding == null) ? new InputStreamReader(dataStream, DEFAULT_ENCODING) : new InputStreamReader(dataStream, dataFileEncoding);
|
||||||
return new BufferedReader(inputReader);
|
return new BufferedReader(inputReader);
|
||||||
}
|
}
|
||||||
catch(UnsupportedEncodingException e)
|
catch(UnsupportedEncodingException e)
|
||||||
|
@@ -37,6 +37,8 @@ import org.alfresco.service.cmr.view.ImporterException;
|
|||||||
public class FileImportPackageHandler
|
public class FileImportPackageHandler
|
||||||
implements ImportPackageHandler
|
implements ImportPackageHandler
|
||||||
{
|
{
|
||||||
|
public final static String DEFAULT_ENCODING = "UTF-8";
|
||||||
|
|
||||||
protected File sourceDir;
|
protected File sourceDir;
|
||||||
protected File dataFile;
|
protected File dataFile;
|
||||||
protected String dataFileEncoding;
|
protected String dataFileEncoding;
|
||||||
@@ -71,7 +73,7 @@ public class FileImportPackageHandler
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
InputStream inputStream = new FileInputStream(dataFile);
|
InputStream inputStream = new FileInputStream(dataFile);
|
||||||
Reader inputReader = (dataFileEncoding == null) ? new InputStreamReader(inputStream) : new InputStreamReader(inputStream, dataFileEncoding);
|
Reader inputReader = (dataFileEncoding == null) ? new InputStreamReader(inputStream, DEFAULT_ENCODING) : new InputStreamReader(inputStream, dataFileEncoding);
|
||||||
return new BufferedReader(inputReader);
|
return new BufferedReader(inputReader);
|
||||||
}
|
}
|
||||||
catch(UnsupportedEncodingException e)
|
catch(UnsupportedEncodingException e)
|
||||||
|
@@ -557,9 +557,9 @@ public class ImporterComponent
|
|||||||
{
|
{
|
||||||
importContent(nodeRef, property.getKey(), (String)objVal);
|
importContent(nodeRef, property.getKey(), (String)objVal);
|
||||||
}
|
}
|
||||||
else if (objVal instanceof List)
|
else if (objVal instanceof Collection)
|
||||||
{
|
{
|
||||||
for (String value : (List<String>)objVal)
|
for (String value : (Collection<String>)objVal)
|
||||||
{
|
{
|
||||||
importContent(nodeRef, property.getKey(), value);
|
importContent(nodeRef, property.getKey(), value);
|
||||||
}
|
}
|
||||||
@@ -716,12 +716,11 @@ public class ImporterComponent
|
|||||||
if (unresolvedRef != null)
|
if (unresolvedRef != null)
|
||||||
{
|
{
|
||||||
NodeRef nodeRef = resolveImportedNodeRef(importedRef.context.getNodeRef(), unresolvedRef);
|
NodeRef nodeRef = resolveImportedNodeRef(importedRef.context.getNodeRef(), unresolvedRef);
|
||||||
if (nodeRef == null)
|
// TODO: Provide a better mechanism for invalid references? e.g. report warning
|
||||||
|
if (nodeRef != null)
|
||||||
{
|
{
|
||||||
// TODO: Probably need an alternative mechanism here e.g. report warning
|
resolvedRefs.add(nodeRef);
|
||||||
throw new ImporterException("Failed to find item referenced (in property " + importedRef.property + ") as " + importedRef.value);
|
|
||||||
}
|
}
|
||||||
resolvedRefs.add(nodeRef);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
refProperty = (Serializable)resolvedRefs;
|
refProperty = (Serializable)resolvedRefs;
|
||||||
@@ -729,11 +728,7 @@ public class ImporterComponent
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
refProperty = resolveImportedNodeRef(importedRef.context.getNodeRef(), (String)importedRef.value);
|
refProperty = resolveImportedNodeRef(importedRef.context.getNodeRef(), (String)importedRef.value);
|
||||||
if (refProperty == null)
|
// TODO: Provide a better mechanism for invalid references? e.g. report warning
|
||||||
{
|
|
||||||
// TODO: Probably need an alternative mechanism here e.g. report warning
|
|
||||||
throw new ImporterException("Failed to find item referenced (in property " + importedRef.property + ") as " + importedRef.value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1024,23 +1019,31 @@ public class ImporterComponent
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// resolve relative path
|
// determine if node reference
|
||||||
try
|
if (NodeRef.isNodeRef(importedRef))
|
||||||
{
|
{
|
||||||
List<NodeRef> nodeRefs = searchService.selectNodes(sourceNodeRef, importedRef, null, namespaceService, false);
|
nodeRef = new NodeRef(importedRef);
|
||||||
if (nodeRefs.size() > 0)
|
}
|
||||||
{
|
else
|
||||||
nodeRef = nodeRefs.get(0);
|
{
|
||||||
}
|
// resolve relative path
|
||||||
}
|
try
|
||||||
catch(XPathException e)
|
{
|
||||||
{
|
List<NodeRef> nodeRefs = searchService.selectNodes(sourceNodeRef, importedRef, null, namespaceService, false);
|
||||||
nodeRef = new NodeRef(importedRef);
|
if (nodeRefs.size() > 0)
|
||||||
}
|
{
|
||||||
catch(AlfrescoRuntimeException e1)
|
nodeRef = nodeRefs.get(0);
|
||||||
{
|
}
|
||||||
// Note: Invalid reference format - try path search instead
|
}
|
||||||
}
|
catch(XPathException e)
|
||||||
|
{
|
||||||
|
nodeRef = new NodeRef(importedRef);
|
||||||
|
}
|
||||||
|
catch(AlfrescoRuntimeException e1)
|
||||||
|
{
|
||||||
|
// Note: Invalid reference format - try path search instead
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nodeRef;
|
return nodeRef;
|
||||||
@@ -1235,7 +1238,7 @@ public class ImporterComponent
|
|||||||
NodeRef nodeRef = assocRef.getChildRef();
|
NodeRef nodeRef = assocRef.getChildRef();
|
||||||
|
|
||||||
// Note: non-admin authorities take ownership of new nodes
|
// Note: non-admin authorities take ownership of new nodes
|
||||||
if (!authorityService.hasAdminAuthority())
|
if (!(authorityService.hasAdminAuthority() || authenticationService.isCurrentUserTheSystemUser()))
|
||||||
{
|
{
|
||||||
ownableService.takeOwnership(nodeRef);
|
ownableService.takeOwnership(nodeRef);
|
||||||
}
|
}
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
<value name="applied-on-date" field="appliedOnDate"/>
|
<value name="applied-on-date" field="appliedOnDate"/>
|
||||||
<value name="was-executed" field="wasExecuted"/>
|
<value name="was-executed" field="wasExecuted"/>
|
||||||
<value name="succeeded" field="succeeded"/>
|
<value name="succeeded" field="succeeded"/>
|
||||||
<value name="report" field="report"/>
|
<value name="report" field="report" usage="optional"/>
|
||||||
</structure>
|
</structure>
|
||||||
</collection>
|
</collection>
|
||||||
</structure>
|
</structure>
|
||||||
|
@@ -80,4 +80,15 @@ public class MetaDataContext extends ElementContext
|
|||||||
return properties;
|
return properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see java.lang.Object#toString()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return "MetaDataContext[properties=" + properties.size() + "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -49,4 +49,15 @@ public class NodeItemContext extends ElementContext
|
|||||||
{
|
{
|
||||||
return nodeContext;
|
return nodeContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see java.lang.Object#toString()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return "NodeItemContext[nodeContext=" + nodeContext.toString() + "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -197,7 +197,11 @@ public class ViewParser implements Parser
|
|||||||
// Handle special view directives
|
// Handle special view directives
|
||||||
if (defName.equals(VIEW_METADATA))
|
if (defName.equals(VIEW_METADATA))
|
||||||
{
|
{
|
||||||
parserContext.elementStack.push(new MetaDataContext(defName, (ElementContext)element));
|
MetaDataContext metaDataContext = new MetaDataContext(defName, (ElementContext)element);
|
||||||
|
parserContext.elementStack.push(metaDataContext);
|
||||||
|
|
||||||
|
if (logger.isDebugEnabled())
|
||||||
|
logger.debug(indentLog("Pushed " + metaDataContext, parserContext.elementStack.size() -1));
|
||||||
}
|
}
|
||||||
else if (defName.equals(VIEW_ASPECTS) || defName.equals(VIEW_PROPERTIES) || defName.equals(VIEW_ASSOCIATIONS) || defName.equals(VIEW_ACL))
|
else if (defName.equals(VIEW_ASPECTS) || defName.equals(VIEW_PROPERTIES) || defName.equals(VIEW_ASSOCIATIONS) || defName.equals(VIEW_ACL))
|
||||||
{
|
{
|
||||||
@@ -210,7 +214,11 @@ public class ViewParser implements Parser
|
|||||||
throw new ImporterException("Element " + defName + " can only be declared within a node");
|
throw new ImporterException("Element " + defName + " can only be declared within a node");
|
||||||
}
|
}
|
||||||
NodeContext node = (NodeContext)element;
|
NodeContext node = (NodeContext)element;
|
||||||
parserContext.elementStack.push(new NodeItemContext(defName, node));
|
NodeItemContext nodeItemContext = new NodeItemContext(defName, node);
|
||||||
|
parserContext.elementStack.push(nodeItemContext);
|
||||||
|
|
||||||
|
if (logger.isDebugEnabled())
|
||||||
|
logger.debug(indentLog("Pushed " + nodeItemContext, parserContext.elementStack.size() -1));
|
||||||
|
|
||||||
// process ACL specific attributes
|
// process ACL specific attributes
|
||||||
if (defName.equals(VIEW_ACL))
|
if (defName.equals(VIEW_ACL))
|
||||||
|
@@ -17,6 +17,8 @@
|
|||||||
package org.alfresco.service.cmr.repository;
|
package org.alfresco.service.cmr.repository;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import org.alfresco.error.AlfrescoRuntimeException;
|
import org.alfresco.error.AlfrescoRuntimeException;
|
||||||
|
|
||||||
@@ -27,9 +29,9 @@ import org.alfresco.error.AlfrescoRuntimeException;
|
|||||||
*/
|
*/
|
||||||
public final class NodeRef implements EntityRef, Serializable
|
public final class NodeRef implements EntityRef, Serializable
|
||||||
{
|
{
|
||||||
|
|
||||||
private static final long serialVersionUID = 3760844584074227768L;
|
private static final long serialVersionUID = 3760844584074227768L;
|
||||||
private static final String URI_FILLER = "/";
|
private static final String URI_FILLER = "/";
|
||||||
|
private static final Pattern nodeRefPattern = Pattern.compile(".+://.+/.+");
|
||||||
|
|
||||||
private final StoreRef storeRef;
|
private final StoreRef storeRef;
|
||||||
private final String id;
|
private final String id;
|
||||||
@@ -44,8 +46,7 @@ public final class NodeRef implements EntityRef, Serializable
|
|||||||
{
|
{
|
||||||
if (storeRef == null)
|
if (storeRef == null)
|
||||||
{
|
{
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException("Store reference may not be null");
|
||||||
"Store reference may not be null");
|
|
||||||
}
|
}
|
||||||
if (id == null)
|
if (id == null)
|
||||||
{
|
{
|
||||||
@@ -128,6 +129,18 @@ public final class NodeRef implements EntityRef, Serializable
|
|||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if passed string conforms to the pattern of a node reference
|
||||||
|
*
|
||||||
|
* @param nodeRef the node reference as a string
|
||||||
|
* @return true => it matches the pattern of a node reference
|
||||||
|
*/
|
||||||
|
public static boolean isNodeRef(String nodeRef)
|
||||||
|
{
|
||||||
|
Matcher matcher = nodeRefPattern.matcher(nodeRef);
|
||||||
|
return matcher.matches();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper class to convey the status of a <b>node</b>.
|
* Helper class to convey the status of a <b>node</b>.
|
||||||
*
|
*
|
||||||
|
@@ -50,4 +50,13 @@ public class NodeRefTest extends TestCase
|
|||||||
NodeRef nodeRef2 = new NodeRef(storeRef, "456");
|
NodeRef nodeRef2 = new NodeRef(storeRef, "456");
|
||||||
assertEquals("equals failure", nodeRef, nodeRef2);
|
assertEquals("equals failure", nodeRef, nodeRef2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void testNodeRefPattern() throws Exception
|
||||||
|
{
|
||||||
|
StoreRef storeRef = new StoreRef("ABC", "123");
|
||||||
|
NodeRef nodeRef = new NodeRef(storeRef, "456");
|
||||||
|
|
||||||
|
assertTrue(NodeRef.isNodeRef(nodeRef.toString()));
|
||||||
|
assertFalse(NodeRef.isNodeRef("sdfsdf:sdfsdf"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -60,7 +60,7 @@ public final class Export extends Tool
|
|||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#getToolName()
|
* @see org.alfresco.tools.Tool#getToolName()
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
String getToolName()
|
String getToolName()
|
||||||
{
|
{
|
||||||
return "Alfresco Repository Exporter";
|
return "Alfresco Repository Exporter";
|
||||||
@@ -72,7 +72,7 @@ public final class Export extends Tool
|
|||||||
* @param args the arguments
|
* @param args the arguments
|
||||||
* @return the export context
|
* @return the export context
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
/*package*/ ToolContext processArgs(String[] args)
|
/*package*/ ToolContext processArgs(String[] args)
|
||||||
{
|
{
|
||||||
context = new ExportContext();
|
context = new ExportContext();
|
||||||
@@ -91,7 +91,7 @@ public final class Export extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <store> for the parameter -store must be specified");
|
throw new ToolArgumentException("The value <store> for the parameter -store must be specified");
|
||||||
}
|
}
|
||||||
context.storeRef = new StoreRef(args[i]);
|
context.storeRef = new StoreRef(args[i]);
|
||||||
}
|
}
|
||||||
@@ -100,7 +100,7 @@ public final class Export extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <path> for the parameter -path must be specified");
|
throw new ToolArgumentException("The value <path> for the parameter -path must be specified");
|
||||||
}
|
}
|
||||||
context.path = args[i];
|
context.path = args[i];
|
||||||
}
|
}
|
||||||
@@ -109,7 +109,7 @@ public final class Export extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <dir> for the parameter -dir must be specified");
|
throw new ToolArgumentException("The value <dir> for the parameter -dir must be specified");
|
||||||
}
|
}
|
||||||
context.destDir = args[i];
|
context.destDir = args[i];
|
||||||
}
|
}
|
||||||
@@ -118,7 +118,7 @@ public final class Export extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <packagedir> for the parameter -packagedir must be specified");
|
throw new ToolArgumentException("The value <packagedir> for the parameter -packagedir must be specified");
|
||||||
}
|
}
|
||||||
context.packageDir = args[i];
|
context.packageDir = args[i];
|
||||||
}
|
}
|
||||||
@@ -127,7 +127,7 @@ public final class Export extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <user> for the option -user must be specified");
|
throw new ToolArgumentException("The value <user> for the option -user must be specified");
|
||||||
}
|
}
|
||||||
context.setUsername(args[i]);
|
context.setUsername(args[i]);
|
||||||
}
|
}
|
||||||
@@ -136,7 +136,7 @@ public final class Export extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <password> for the option -pwd must be specified");
|
throw new ToolArgumentException("The value <password> for the option -pwd must be specified");
|
||||||
}
|
}
|
||||||
context.setPassword(args[i]);
|
context.setPassword(args[i]);
|
||||||
}
|
}
|
||||||
@@ -170,7 +170,7 @@ public final class Export extends Tool
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new ToolException("Unknown option " + args[i]);
|
throw new ToolArgumentException("Unknown option " + args[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// next argument
|
// next argument
|
||||||
@@ -183,34 +183,35 @@ public final class Export extends Tool
|
|||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#displayHelp()
|
* @see org.alfresco.tools.Tool#displayHelp()
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
/*package*/ void displayHelp()
|
/*package*/ void displayHelp()
|
||||||
{
|
{
|
||||||
System.out.println("Usage: export -user username -s[tore] store [options] packagename");
|
logError("Usage: export -user username -s[tore] store [options] packagename");
|
||||||
System.out.println("");
|
logError("");
|
||||||
System.out.println("username: username for login");
|
logError("username: username for login");
|
||||||
System.out.println("store: the store to extract from in the form of scheme://store_name");
|
logError("store: the store to extract from in the form of scheme://store_name");
|
||||||
System.out.println("packagename: the filename to export to (with or without extension)");
|
logError("packagename: the filename to export to (with or without extension)");
|
||||||
System.out.println("");
|
logError("");
|
||||||
System.out.println("Options:");
|
logError("Options:");
|
||||||
System.out.println(" -h[elp] display this help");
|
logError(" -h[elp] display this help");
|
||||||
System.out.println(" -p[ath] the path within the store to extract from (default: /)");
|
logError(" -p[ath] the path within the store to extract from (default: /)");
|
||||||
System.out.println(" -d[ir] the destination directory to export to (default: current directory)");
|
logError(" -d[ir] the destination directory to export to (default: current directory)");
|
||||||
System.out.println(" -pwd password for login");
|
logError(" -pwd password for login");
|
||||||
System.out.println(" -packagedir the directory to place extracted content (default: dir/<packagename>)");
|
logError(" -packagedir the directory to place extracted content (default: dir/<packagename>)");
|
||||||
System.out.println(" -root extract the item located at export path");
|
logError(" -root extract the item located at export path");
|
||||||
System.out.println(" -nochildren do not extract children of the item at export path");
|
logError(" -nochildren do not extract children of the item at export path");
|
||||||
System.out.println(" -overwrite force overwrite of existing export package if it already exists");
|
logError(" -overwrite force overwrite of existing export package if it already exists");
|
||||||
System.out.println(" -quiet do not display any messages during export");
|
logError(" -quiet do not display any messages during export");
|
||||||
System.out.println(" -verbose report export progress");
|
logError(" -verbose report export progress");
|
||||||
System.out.println(" -zip export in zip format");
|
logError(" -zip export in zip format");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#execute()
|
* @see org.alfresco.tools.Tool#execute()
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
void execute() throws ToolException
|
/*package*/ int execute()
|
||||||
|
throws ToolException
|
||||||
{
|
{
|
||||||
ExporterService exporter = getServiceRegistry().getExporterService();
|
ExporterService exporter = getServiceRegistry().getExporterService();
|
||||||
MimetypeService mimetypeService = getServiceRegistry().getMimetypeService();
|
MimetypeService mimetypeService = getServiceRegistry().getMimetypeService();
|
||||||
@@ -238,9 +239,10 @@ public final class Export extends Tool
|
|||||||
}
|
}
|
||||||
catch(ExporterException e)
|
catch(ExporterException e)
|
||||||
{
|
{
|
||||||
e.printStackTrace();
|
|
||||||
throw new ToolException("Failed to export", e);
|
throw new ToolException("Failed to export", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -270,7 +272,7 @@ public final class Export extends Tool
|
|||||||
*/
|
*/
|
||||||
protected void log(String message)
|
protected void log(String message)
|
||||||
{
|
{
|
||||||
Export.this.log(message);
|
Export.this.logInfo(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -301,7 +303,7 @@ public final class Export extends Tool
|
|||||||
*/
|
*/
|
||||||
protected void log(String message)
|
protected void log(String message)
|
||||||
{
|
{
|
||||||
Export.this.log(message);
|
Export.this.logInfo(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -341,18 +343,18 @@ public final class Export extends Tool
|
|||||||
|
|
||||||
if (storeRef == null)
|
if (storeRef == null)
|
||||||
{
|
{
|
||||||
throw new ToolException("Store to export from has not been specified.");
|
throw new ToolArgumentException("Store to export from has not been specified.");
|
||||||
}
|
}
|
||||||
if (packageName == null)
|
if (packageName == null)
|
||||||
{
|
{
|
||||||
throw new ToolException("Package name has not been specified.");
|
throw new ToolArgumentException("Package name has not been specified.");
|
||||||
}
|
}
|
||||||
if (destDir != null)
|
if (destDir != null)
|
||||||
{
|
{
|
||||||
File fileDestDir = new File(destDir);
|
File fileDestDir = new File(destDir);
|
||||||
if (fileDestDir.exists() == false)
|
if (fileDestDir.exists() == false)
|
||||||
{
|
{
|
||||||
throw new ToolException("Destination directory " + fileDestDir.getAbsolutePath() + " does not exist.");
|
throw new ToolArgumentException("Destination directory " + fileDestDir.getAbsolutePath() + " does not exist.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -612,7 +614,7 @@ public final class Export extends Tool
|
|||||||
*/
|
*/
|
||||||
public void warning(String warning)
|
public void warning(String warning)
|
||||||
{
|
{
|
||||||
log("Warning: " + warning);
|
logInfo("Warning: " + warning);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
|
@@ -61,8 +61,9 @@ public class Import extends Tool
|
|||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#processArgs(java.lang.String[])
|
* @see org.alfresco.tools.Tool#processArgs(java.lang.String[])
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
/*package*/ ToolContext processArgs(String[] args)
|
/*package*/ ToolContext processArgs(String[] args)
|
||||||
|
throws ToolArgumentException
|
||||||
{
|
{
|
||||||
context = new ImportContext();
|
context = new ImportContext();
|
||||||
context.setLogin(true);
|
context.setLogin(true);
|
||||||
@@ -80,7 +81,7 @@ public class Import extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <store> for the option -store must be specified");
|
throw new ToolArgumentException("The value <store> for the option -store must be specified");
|
||||||
}
|
}
|
||||||
context.storeRef = new StoreRef(args[i]);
|
context.storeRef = new StoreRef(args[i]);
|
||||||
}
|
}
|
||||||
@@ -89,7 +90,7 @@ public class Import extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <path> for the option -path must be specified");
|
throw new ToolArgumentException("The value <path> for the option -path must be specified");
|
||||||
}
|
}
|
||||||
context.path = args[i];
|
context.path = args[i];
|
||||||
}
|
}
|
||||||
@@ -98,7 +99,7 @@ public class Import extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <dir> for the option -dir must be specified");
|
throw new ToolArgumentException("The value <dir> for the option -dir must be specified");
|
||||||
}
|
}
|
||||||
context.sourceDir = args[i];
|
context.sourceDir = args[i];
|
||||||
}
|
}
|
||||||
@@ -107,7 +108,7 @@ public class Import extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <user> for the option -user must be specified");
|
throw new ToolArgumentException("The value <user> for the option -user must be specified");
|
||||||
}
|
}
|
||||||
context.setUsername(args[i]);
|
context.setUsername(args[i]);
|
||||||
}
|
}
|
||||||
@@ -116,7 +117,7 @@ public class Import extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <password> for the option -pwd must be specified");
|
throw new ToolArgumentException("The value <password> for the option -pwd must be specified");
|
||||||
}
|
}
|
||||||
context.setPassword(args[i]);
|
context.setPassword(args[i]);
|
||||||
}
|
}
|
||||||
@@ -125,7 +126,7 @@ public class Import extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <encoding> for the option -encoding must be specified");
|
throw new ToolArgumentException("The value <encoding> for the option -encoding must be specified");
|
||||||
}
|
}
|
||||||
context.encoding = args[i];
|
context.encoding = args[i];
|
||||||
}
|
}
|
||||||
@@ -138,7 +139,7 @@ public class Import extends Tool
|
|||||||
}
|
}
|
||||||
catch(IllegalArgumentException e)
|
catch(IllegalArgumentException e)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value " + args[i] + " is an invalid uuidBinding");
|
throw new ToolArgumentException("The value " + args[i] + " is an invalid uuidBinding");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (args[i].equals("-quiet"))
|
else if (args[i].equals("-quiet"))
|
||||||
@@ -155,7 +156,7 @@ public class Import extends Tool
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new ToolException("Unknown option " + args[i]);
|
throw new ToolArgumentException("Unknown option " + args[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// next argument
|
// next argument
|
||||||
@@ -168,30 +169,30 @@ public class Import extends Tool
|
|||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#displayHelp()
|
* @see org.alfresco.tools.Tool#displayHelp()
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
/*package*/ void displayHelp()
|
/*package*/ void displayHelp()
|
||||||
{
|
{
|
||||||
System.out.println("Usage: import -user username -s[tore] store [options] packagename");
|
logError("Usage: import -user username -s[tore] store [options] packagename");
|
||||||
System.out.println("");
|
logError("");
|
||||||
System.out.println("username: username for login");
|
logError("username: username for login");
|
||||||
System.out.println("store: the store to import into the form of scheme://store_name");
|
logError("store: the store to import into the form of scheme://store_name");
|
||||||
System.out.println("packagename: the filename to import from (with or without extension)");
|
logError("packagename: the filename to import from (with or without extension)");
|
||||||
System.out.println("");
|
logError("");
|
||||||
System.out.println("Options:");
|
logError("Options:");
|
||||||
System.out.println(" -h[elp] display this help");
|
logError(" -h[elp] display this help");
|
||||||
System.out.println(" -p[ath] the path within the store to extract into (default: /)");
|
logError(" -p[ath] the path within the store to extract into (default: /)");
|
||||||
System.out.println(" -d[ir] the source directory to import from (default: current directory)");
|
logError(" -d[ir] the source directory to import from (default: current directory)");
|
||||||
System.out.println(" -pwd password for login");
|
logError(" -pwd password for login");
|
||||||
System.out.println(" -encoding package file encoding (default: " + Charset.defaultCharset() + ")");
|
logError(" -encoding package file encoding (default: " + Charset.defaultCharset() + ")");
|
||||||
System.out.println(" -uuidBinding CREATE_NEW, REMOVE_EXISTING, REPLACE_EXISTING, UPDATE_EXISTING, THROW_ON_COLLISION (default: CREATE_NEW)");
|
logError(" -uuidBinding CREATE_NEW, REMOVE_EXISTING, REPLACE_EXISTING, UPDATE_EXISTING, THROW_ON_COLLISION (default: CREATE_NEW)");
|
||||||
System.out.println(" -quiet do not display any messages during import");
|
logError(" -quiet do not display any messages during import");
|
||||||
System.out.println(" -verbose report import progress");
|
logError(" -verbose report import progress");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#getToolName()
|
* @see org.alfresco.tools.Tool#getToolName()
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
/*package*/ String getToolName()
|
/*package*/ String getToolName()
|
||||||
{
|
{
|
||||||
return "Alfresco Repository Importer";
|
return "Alfresco Repository Importer";
|
||||||
@@ -200,8 +201,8 @@ public class Import extends Tool
|
|||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.alfresco.tools.Tool#execute()
|
* @see org.alfresco.tools.Tool#execute()
|
||||||
*/
|
*/
|
||||||
@Override
|
protected @Override
|
||||||
/*package*/ void execute() throws ToolException
|
/*package*/ int execute() throws ToolException
|
||||||
{
|
{
|
||||||
ImporterService importer = getServiceRegistry().getImporterService();
|
ImporterService importer = getServiceRegistry().getImporterService();
|
||||||
|
|
||||||
@@ -225,6 +226,8 @@ public class Import extends Tool
|
|||||||
{
|
{
|
||||||
throw new ToolException("Failed to import package due to " + e.getMessage(), e);
|
throw new ToolException("Failed to import package due to " + e.getMessage(), e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -253,7 +256,7 @@ public class Import extends Tool
|
|||||||
*/
|
*/
|
||||||
protected void log(String message)
|
protected void log(String message)
|
||||||
{
|
{
|
||||||
Import.this.log(message);
|
Import.this.logInfo(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -283,7 +286,7 @@ public class Import extends Tool
|
|||||||
*/
|
*/
|
||||||
protected void log(String message)
|
protected void log(String message)
|
||||||
{
|
{
|
||||||
Import.this.log(message);
|
Import.this.logInfo(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -392,18 +395,18 @@ public class Import extends Tool
|
|||||||
|
|
||||||
if (storeRef == null)
|
if (storeRef == null)
|
||||||
{
|
{
|
||||||
throw new ToolException("Store to import into has not been specified.");
|
throw new ToolArgumentException("Store to import into has not been specified.");
|
||||||
}
|
}
|
||||||
if (packageName == null)
|
if (packageName == null)
|
||||||
{
|
{
|
||||||
throw new ToolException("Package name has not been specified.");
|
throw new ToolArgumentException("Package name has not been specified.");
|
||||||
}
|
}
|
||||||
if (sourceDir != null)
|
if (sourceDir != null)
|
||||||
{
|
{
|
||||||
File fileSourceDir = getSourceDir();
|
File fileSourceDir = getSourceDir();
|
||||||
if (fileSourceDir.exists() == false)
|
if (fileSourceDir.exists() == false)
|
||||||
{
|
{
|
||||||
throw new ToolException("Source directory " + fileSourceDir.getAbsolutePath() + " does not exist.");
|
throw new ToolArgumentException("Source directory " + fileSourceDir.getAbsolutePath() + " does not exist.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (packageName.endsWith(".acp"))
|
if (packageName.endsWith(".acp"))
|
||||||
@@ -411,7 +414,7 @@ public class Import extends Tool
|
|||||||
File packageFile = new File(getSourceDir(), packageName);
|
File packageFile = new File(getSourceDir(), packageName);
|
||||||
if (!packageFile.exists())
|
if (!packageFile.exists())
|
||||||
{
|
{
|
||||||
throw new ToolException("Package zip file " + packageFile.getAbsolutePath() + " does not exist.");
|
throw new ToolArgumentException("Package zip file " + packageFile.getAbsolutePath() + " does not exist.");
|
||||||
}
|
}
|
||||||
zipFile = true;
|
zipFile = true;
|
||||||
}
|
}
|
||||||
@@ -420,7 +423,7 @@ public class Import extends Tool
|
|||||||
File packageFile = new File(getSourceDir(), getDataFile().getPath());
|
File packageFile = new File(getSourceDir(), getDataFile().getPath());
|
||||||
if (!packageFile.exists())
|
if (!packageFile.exists())
|
||||||
{
|
{
|
||||||
throw new ToolException("Package file " + packageFile.getAbsolutePath() + " does not exist.");
|
throw new ToolArgumentException("Package file " + packageFile.getAbsolutePath() + " does not exist.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -26,13 +26,13 @@ import java.io.IOException;
|
|||||||
*/
|
*/
|
||||||
public class Repository extends Tool
|
public class Repository extends Tool
|
||||||
{
|
{
|
||||||
@Override
|
protected @Override
|
||||||
String getToolName()
|
String getToolName()
|
||||||
{
|
{
|
||||||
return "Repository";
|
return "Repository";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
protected @Override
|
||||||
ToolContext processArgs(String[] args) throws ToolException
|
ToolContext processArgs(String[] args) throws ToolException
|
||||||
{
|
{
|
||||||
ToolContext context = new ToolContext();
|
ToolContext context = new ToolContext();
|
||||||
@@ -51,7 +51,7 @@ public class Repository extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <user> for the option -user must be specified");
|
throw new ToolArgumentException("The value <user> for the option -user must be specified");
|
||||||
}
|
}
|
||||||
context.setUsername(args[i]);
|
context.setUsername(args[i]);
|
||||||
}
|
}
|
||||||
@@ -60,13 +60,13 @@ public class Repository extends Tool
|
|||||||
i++;
|
i++;
|
||||||
if (i == args.length || args[i].length() == 0)
|
if (i == args.length || args[i].length() == 0)
|
||||||
{
|
{
|
||||||
throw new ToolException("The value <password> for the option -pwd must be specified");
|
throw new ToolArgumentException("The value <password> for the option -pwd must be specified");
|
||||||
}
|
}
|
||||||
context.setPassword(args[i]);
|
context.setPassword(args[i]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new ToolException("Unknown option " + args[i] + ". Use -help for options.");
|
throw new ToolArgumentException("Unknown option " + args[i] + ". Use -help for options.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// next argument
|
// next argument
|
||||||
@@ -76,10 +76,10 @@ public class Repository extends Tool
|
|||||||
return context;
|
return context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
protected @Override
|
||||||
void displayHelp()
|
void displayHelp()
|
||||||
{
|
{
|
||||||
System.out.println(
|
logError(
|
||||||
"usage: repository [OPTIONS] \n" +
|
"usage: repository [OPTIONS] \n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"Initialize the Alfresco application context, initiating any \n" +
|
"Initialize the Alfresco application context, initiating any \n" +
|
||||||
@@ -92,7 +92,7 @@ public class Repository extends Tool
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
synchronized void execute() throws ToolException
|
protected synchronized int execute() throws ToolException
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -107,6 +107,8 @@ public class Repository extends Tool
|
|||||||
{
|
{
|
||||||
// just ignore
|
// just ignore
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -16,6 +16,9 @@
|
|||||||
*/
|
*/
|
||||||
package org.alfresco.tools;
|
package org.alfresco.tools;
|
||||||
|
|
||||||
|
import java.io.PrintWriter;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
|
||||||
import org.alfresco.service.ServiceRegistry;
|
import org.alfresco.service.ServiceRegistry;
|
||||||
import org.alfresco.service.cmr.security.AuthenticationService;
|
import org.alfresco.service.cmr.security.AuthenticationService;
|
||||||
import org.alfresco.util.ApplicationContextHelper;
|
import org.alfresco.util.ApplicationContextHelper;
|
||||||
@@ -44,8 +47,8 @@ public abstract class Tool
|
|||||||
* @return the tool context
|
* @return the tool context
|
||||||
* @throws ToolException
|
* @throws ToolException
|
||||||
*/
|
*/
|
||||||
/*package*/ ToolContext processArgs(String[] args)
|
protected ToolContext processArgs(String[] args)
|
||||||
throws ToolException
|
throws ToolArgumentException
|
||||||
{
|
{
|
||||||
return new ToolContext();
|
return new ToolContext();
|
||||||
}
|
}
|
||||||
@@ -53,9 +56,9 @@ public abstract class Tool
|
|||||||
/**
|
/**
|
||||||
* Display Tool Help
|
* Display Tool Help
|
||||||
*/
|
*/
|
||||||
/*package*/ void displayHelp()
|
protected void displayHelp()
|
||||||
{
|
{
|
||||||
System.out.println("Sorry. Help is not available.");
|
logError("Sorry. Help is not available.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -63,7 +66,7 @@ public abstract class Tool
|
|||||||
*
|
*
|
||||||
* @throws ToolException
|
* @throws ToolException
|
||||||
*/
|
*/
|
||||||
/*package*/ abstract void execute()
|
protected abstract int execute()
|
||||||
throws ToolException;
|
throws ToolException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -71,34 +74,14 @@ public abstract class Tool
|
|||||||
*
|
*
|
||||||
* @return the tool name
|
* @return the tool name
|
||||||
*/
|
*/
|
||||||
/*package*/ abstract String getToolName();
|
protected abstract String getToolName();
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the Application Context
|
|
||||||
*
|
|
||||||
* @return the application context
|
|
||||||
*/
|
|
||||||
/*package*/ final ApplicationContext getApplicationContext()
|
|
||||||
{
|
|
||||||
return appContext;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the Repository Service Registry
|
|
||||||
*
|
|
||||||
* @return the service registry
|
|
||||||
*/
|
|
||||||
/*package*/ final ServiceRegistry getServiceRegistry()
|
|
||||||
{
|
|
||||||
return serviceRegistry;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Log message
|
* Log message
|
||||||
*
|
*
|
||||||
* @param msg message to log
|
* @param msg message to log
|
||||||
*/
|
*/
|
||||||
/*package*/ final void log(String msg)
|
protected void logInfo(String msg)
|
||||||
{
|
{
|
||||||
if (toolContext.isQuiet() == false)
|
if (toolContext.isQuiet() == false)
|
||||||
{
|
{
|
||||||
@@ -111,65 +94,124 @@ public abstract class Tool
|
|||||||
*
|
*
|
||||||
* @param msg message to log
|
* @param msg message to log
|
||||||
*/
|
*/
|
||||||
/*package*/ final void logVerbose(String msg)
|
protected void logVerbose(String msg)
|
||||||
{
|
{
|
||||||
if (toolContext.isVerbose())
|
if (toolContext.isVerbose())
|
||||||
{
|
{
|
||||||
log(msg);
|
logInfo(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log Error message
|
||||||
|
*
|
||||||
|
* @param msg message to log
|
||||||
|
*/
|
||||||
|
protected void logError(String msg)
|
||||||
|
{
|
||||||
|
System.out.println(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle Error Message
|
||||||
|
*
|
||||||
|
* @param e exception
|
||||||
|
*/
|
||||||
|
protected int handleError(Throwable e)
|
||||||
|
{
|
||||||
|
if (e instanceof ToolArgumentException)
|
||||||
|
{
|
||||||
|
logError(e.getMessage());
|
||||||
|
logError("");
|
||||||
|
displayHelp();
|
||||||
|
}
|
||||||
|
else if (e instanceof ToolException)
|
||||||
|
{
|
||||||
|
logError(e.getMessage());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logError("The following error has occurred:");
|
||||||
|
logError(e.getMessage());
|
||||||
|
if (toolContext != null && toolContext.isVerbose())
|
||||||
|
{
|
||||||
|
StringWriter stringWriter = new StringWriter();
|
||||||
|
PrintWriter printWriter = new PrintWriter(stringWriter);
|
||||||
|
e.printStackTrace(printWriter);
|
||||||
|
logError(stringWriter.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// return generic error code
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exit Tool
|
||||||
|
*
|
||||||
|
* @param status status code
|
||||||
|
*/
|
||||||
|
protected void exit(int status)
|
||||||
|
{
|
||||||
|
System.exit(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the Application Context
|
||||||
|
*
|
||||||
|
* @return the application context
|
||||||
|
*/
|
||||||
|
protected final ApplicationContext getApplicationContext()
|
||||||
|
{
|
||||||
|
return appContext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the Repository Service Registry
|
||||||
|
*
|
||||||
|
* @return the service registry
|
||||||
|
*/
|
||||||
|
protected final ServiceRegistry getServiceRegistry()
|
||||||
|
{
|
||||||
|
return serviceRegistry;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tool entry point
|
* Tool entry point
|
||||||
*
|
*
|
||||||
* @param args the tool arguments
|
* @param args the tool arguments
|
||||||
*/
|
*/
|
||||||
/*package*/ final void start(String[] args)
|
public final void start(String[] args)
|
||||||
{
|
{
|
||||||
|
int status = -1;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Process tool arguments
|
// Process tool arguments
|
||||||
toolContext = processArgs(args);
|
toolContext = processArgs(args);
|
||||||
toolContext.validate();
|
toolContext.validate();
|
||||||
|
|
||||||
try
|
if (toolContext.isHelp())
|
||||||
{
|
{
|
||||||
if (toolContext.isHelp())
|
// Display help, if requested
|
||||||
{
|
displayHelp();
|
||||||
// Display help, if requested
|
|
||||||
displayHelp();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Perform Tool behaviour
|
|
||||||
log(getToolName());
|
|
||||||
initialiseRepository();
|
|
||||||
login();
|
|
||||||
execute();
|
|
||||||
log(getToolName() + " successfully completed.");
|
|
||||||
}
|
|
||||||
System.exit(0);
|
|
||||||
}
|
}
|
||||||
catch (ToolException e)
|
else
|
||||||
{
|
{
|
||||||
displayError(e);
|
// Perform Tool behaviour
|
||||||
System.exit(-1);
|
logInfo(getToolName());
|
||||||
|
initialiseRepository();
|
||||||
|
login();
|
||||||
|
status = execute();
|
||||||
|
logInfo(getToolName() + " successfully completed.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(ToolException e)
|
|
||||||
{
|
|
||||||
System.out.println(e.getMessage());
|
|
||||||
System.out.println();
|
|
||||||
displayHelp();
|
|
||||||
System.exit(-1);
|
|
||||||
}
|
|
||||||
catch (Throwable e)
|
catch (Throwable e)
|
||||||
{
|
{
|
||||||
System.out.println("The following error has occurred:");
|
status = handleError(e);
|
||||||
System.out.println(e.getMessage());
|
|
||||||
e.printStackTrace();
|
|
||||||
System.exit(-1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exit(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -180,7 +222,7 @@ public abstract class Tool
|
|||||||
// TODO: Replace with call to ServiceRegistry
|
// TODO: Replace with call to ServiceRegistry
|
||||||
AuthenticationService auth = (AuthenticationService) serviceRegistry.getAuthenticationService();
|
AuthenticationService auth = (AuthenticationService) serviceRegistry.getAuthenticationService();
|
||||||
auth.authenticate(toolContext.getUsername(), toolContext.getPassword().toCharArray());
|
auth.authenticate(toolContext.getUsername(), toolContext.getPassword().toCharArray());
|
||||||
log("Connected as " + toolContext.getUsername());
|
logInfo("Connected as " + toolContext.getUsername());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -192,18 +234,4 @@ public abstract class Tool
|
|||||||
serviceRegistry = (ServiceRegistry) appContext.getBean(ServiceRegistry.SERVICE_REGISTRY);
|
serviceRegistry = (ServiceRegistry) appContext.getBean(ServiceRegistry.SERVICE_REGISTRY);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Display Error Message
|
|
||||||
*
|
|
||||||
* @param e exception
|
|
||||||
*/
|
|
||||||
private void displayError(Throwable e)
|
|
||||||
{
|
|
||||||
System.out.println(e.getMessage());
|
|
||||||
if (toolContext != null && toolContext.isVerbose())
|
|
||||||
{
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
38
source/java/org/alfresco/tools/ToolArgumentException.java
Normal file
38
source/java/org/alfresco/tools/ToolArgumentException.java
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2005 Alfresco, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Mozilla Public License version 1.1
|
||||||
|
* with a permitted attribution clause. You may obtain a
|
||||||
|
* copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.alfresco.org/legal/license.txt
|
||||||
|
*
|
||||||
|
* 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.alfresco.tools;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tool Argument Exception
|
||||||
|
*
|
||||||
|
* @author David Caruana
|
||||||
|
*/
|
||||||
|
/*package*/ class ToolArgumentException extends ToolException
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 3880274996297222647L;
|
||||||
|
|
||||||
|
/*package*/ ToolArgumentException(String msg)
|
||||||
|
{
|
||||||
|
super(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*package*/ ToolArgumentException(String msg, Throwable cause)
|
||||||
|
{
|
||||||
|
super(msg, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -162,7 +162,7 @@ package org.alfresco.tools;
|
|||||||
* Validate Tool Context
|
* Validate Tool Context
|
||||||
*/
|
*/
|
||||||
/*package*/ void validate()
|
/*package*/ void validate()
|
||||||
throws ToolException
|
throws ToolArgumentException
|
||||||
{
|
{
|
||||||
if (login)
|
if (login)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user