Class QDCCrosswalk
- java.lang.Object
-
- org.dspace.core.SelfNamedPlugin
-
- org.dspace.content.crosswalk.QDCCrosswalk
-
- All Implemented Interfaces:
DisseminationCrosswalk,IngestionCrosswalk,NameAwarePlugin
public class QDCCrosswalk extends SelfNamedPlugin implements DisseminationCrosswalk, IngestionCrosswalk
Configurable QDC CrosswalkThis class supports multiple dissemination crosswalks from DSpace internal data to the Qualified Dublin Core XML format (see http://dublincore.org/).
It registers multiple Plugin names, which it reads from the DSpace configuration as follows:
Configuration
Every key starting with"crosswalk.qdc.properties."describes a QDC crosswalk. Everything after the last period is the plugin instance, and the value is the pathname (relative todspace.dir/config) of the crosswalk configuration file.You can have two aliases point to the same crosswalk, just add two configuration entries with the same value, e.g.
crosswalk.qdc.properties.QDC = xwalk/qdc.properties crosswalk.qdc.properties.default = xwalk/qdc.propertiesThe first line creates a plugin with the name"QDC"which is configured from the file dspace-dir/xwalk/qdc.properties.Since there is significant overhead in reading the properties file to configure the crosswalk, and a crosswalk instance may be used any number of times, we recommend caching one instance of the crosswalk for each alias and simply reusing those instances. The PluginService does this by default.
Each named crosswalk has two other types of configuration lines:
XML Namespaces: all XML namespace prefixes used in the XML fragments below must be defined in the configuration as follows. Add a line of the form:
crosswalk.qdc.namespace.{NAME}.{prefix} = {namespace-URI}e.g. for the namespacesdcanddctermsin the plugin namedQDC, add these lines:crosswalk.qdc.namespace.QDC.dc = http://purl.org/dc/elements/1.1/ crosswalk.qdc.namespace.QDC.dcterms = http://purl.org/dc/terms/
Finally, you need to declare an XML Schema URI for the plugin, with a line of the form
crosswalk.qdc.schema.{NAME} = {schema-URI}for example,crosswalk.qdc.schemaLocation.QDC = \ http://purl.org/dc/terms/ \ http://dublincore.org/schemas/xmls/qdc/2003/04/02/qualifieddc.xsd
- Author:
- Larry Stone
-
-
Field Summary
Fields Modifier and Type Field Description protected ConfigurationServiceconfigurationServiceprotected ItemServiceitemService-
Fields inherited from interface org.dspace.content.crosswalk.DisseminationCrosswalk
XSI_NS
-
-
Constructor Summary
Constructors Constructor Description QDCCrosswalk()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanDisseminate(DSpaceObject dso)Predicate: Can this disseminator crosswalk the given object.org.jdom2.ElementdisseminateElement(Context context, DSpaceObject dso)Execute crosswalk, returning one XML root element as a JDOMElementobject.List<org.jdom2.Element>disseminateList(Context context, DSpaceObject dso)Returns object's metadata in MODS format, as XML structure node.org.jdom2.Namespace[]getNamespaces()Get XML namespaces of the elements this crosswalk may return.static String[]getPluginNames()StringgetSchemaLocation()Get the XML Schema location(s) of the target metadata format.voidingest(Context context, DSpaceObject dso, List<org.jdom2.Element> ml, boolean createMissingMetadataFields)Crosswalk metadata from external XML representation to DSpace internal representations.voidingest(Context context, DSpaceObject dso, org.jdom2.Element root, boolean createMissingMetadataFields)Crosswalk metadata from external XML representation to DSpace internal representations.static voidinitStatic()Call this method again in tests to repeat initialization if necessary.booleanpreferList()Predicate: Does this disseminator prefer to return a list of Elements, rather than a single root Element?-
Methods inherited from class org.dspace.core.SelfNamedPlugin
getPluginInstanceName, setPluginInstanceName
-
-
-
-
Field Detail
-
itemService
protected ItemService itemService
-
configurationService
protected final ConfigurationService configurationService
-
-
Method Detail
-
initStatic
public static void initStatic()
Call this method again in tests to repeat initialization if necessary.
-
getPluginNames
public static String[] getPluginNames()
-
getNamespaces
public org.jdom2.Namespace[] getNamespaces()
Description copied from interface:DisseminationCrosswalkGet XML namespaces of the elements this crosswalk may return. Returns the XML namespaces (as JDOM objects) of the root element.- Specified by:
getNamespacesin interfaceDisseminationCrosswalk- Returns:
- array of namespaces, which may be empty.
-
getSchemaLocation
public String getSchemaLocation()
Description copied from interface:DisseminationCrosswalkGet the XML Schema location(s) of the target metadata format. Returns the string value of thexsi:schemaLocationattribute that should be applied to the generated XML.It may return the empty string if no schema is known, but crosswalk authors are strongly encouraged to implement this call so their output XML can be validated correctly.
- Specified by:
getSchemaLocationin interfaceDisseminationCrosswalk- Returns:
- SchemaLocation string, including URI namespace, followed by whitespace and URI of XML schema document, or empty string if unknown.
-
disseminateList
public List<org.jdom2.Element> disseminateList(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
Returns object's metadata in MODS format, as XML structure node.- Specified by:
disseminateListin interfaceDisseminationCrosswalk- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- List of Elements
- Throws:
CrosswalkException- if crosswalk errorIOException- if IO errorSQLException- if database errorAuthorizeException- if authorization error
-
disseminateElement
public org.jdom2.Element disseminateElement(Context context, DSpaceObject dso) throws CrosswalkException, IOException, SQLException, AuthorizeException
Description copied from interface:DisseminationCrosswalkExecute crosswalk, returning one XML root element as a JDOMElementobject. This is typically the root element of a document.- Specified by:
disseminateElementin interfaceDisseminationCrosswalk- Parameters:
context- contextdso- the DSpace Object whose metadata to export.- Returns:
- root Element of the target metadata, never
null - Throws:
CrosswalkInternalException- (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported- (CrosswalkException) Cannot crosswalk this kind of DSpace object.IOException- I/O failure in services this callsSQLException- Database failure in services this callsAuthorizeException- current user not authorized for this operation.CrosswalkException
-
canDisseminate
public boolean canDisseminate(DSpaceObject dso)
Description copied from interface:DisseminationCrosswalkPredicate: Can this disseminator crosswalk the given object. Needed by OAI-PMH server implementation.- Specified by:
canDisseminatein interfaceDisseminationCrosswalk- Parameters:
dso- dspace object, e.g. anItem.- Returns:
- true when disseminator is capable of producing metadata.
-
ingest
public void ingest(Context context, DSpaceObject dso, org.jdom2.Element root, boolean createMissingMetadataFields) throws CrosswalkException, IOException, SQLException, AuthorizeException
Description copied from interface:IngestionCrosswalkCrosswalk metadata from external XML representation to DSpace internal representations. This version accepts a single "root" element of the XML metadata.It is otherwise just like the
Listform ofingest()above.- Specified by:
ingestin interfaceIngestionCrosswalk- Parameters:
context- DSpace context.dso- DSpace Object (usually an Item) to which new metadata gets attached.root- root Element of metadata document.createMissingMetadataFields- whether to create missing fields- Throws:
CrosswalkInternalException- (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported- (CrosswalkException) Cannot crosswalk into this kind of DSpace object.MetadataValidationException- (CrosswalkException) metadata format was not acceptable or missing required elements.IOException- I/O failure in services this callsSQLException- Database failure in services this callsAuthorizeException- current user not authorized for this operation.CrosswalkException
-
ingest
public void ingest(Context context, DSpaceObject dso, List<org.jdom2.Element> ml, boolean createMissingMetadataFields) throws CrosswalkException, IOException, SQLException, AuthorizeException
Description copied from interface:IngestionCrosswalkCrosswalk metadata from external XML representation to DSpace internal representations. This version accepts metadata as aListof JDOM XML elements. It interprets the contents of each element and adds the appropriate values to the DSpace Object's internal metadata represenation.Note that this method may be called several times for the same target Item, if the metadata comes as several lists of elements, so it should not add fixed metadata values on each or they may appear multiples times.
NOTE:
Most XML metadata standards (e.g. MODS) are defined as a "root" element which contains a sequence of "fields" that have the descriptive information. Some metadata containers have a "disembodied" list of fields, rather than the root element, so thisingestmethod is intended to accept that bare list of fields. However, it must also accept a list containing only the "root" element for the metadata structure (e.g. the "mods:mods" wrapper in a MODS expression) as a member of the list. It can handle this case by calling the single-element version of ingest() on the "root" element.Some callers of the crosswalk plugin may not be careful about (or capable of) choosing whether the list or element version should be called.
- Specified by:
ingestin interfaceIngestionCrosswalk- Parameters:
context- DSpace context.dso- DSpace Object (Item, Bitstream, etc) to which new metadata gets attached.ml- List of XML Elements of metadatacreateMissingMetadataFields- whether to create missing fields- Throws:
CrosswalkInternalException- (CrosswalkException) failure of the crosswalk itself.CrosswalkObjectNotSupported- (CrosswalkException) Cannot crosswalk into this kind of DSpace object.MetadataValidationException- (CrosswalkException) metadata format was not acceptable or missing required elements.IOException- I/O failure in services this callsSQLException- Database failure in services this callsAuthorizeException- current user not authorized for this operation.CrosswalkException
-
preferList
public boolean preferList()
Description copied from interface:DisseminationCrosswalkPredicate: Does this disseminator prefer to return a list of Elements, rather than a single root Element?Some metadata formats have an XML schema without a root element, for example, the Dublin Core and Qualified Dublin Core formats. This would be
truefor a crosswalk into QDC, since it would "prefer" to return a list, since any root element it has to produce would have to be part of a nonstandard schema. In most cases your implementation will want to returnfalse- Specified by:
preferListin interfaceDisseminationCrosswalk- Returns:
- true when disseminator prefers you call disseminateList().
-
-