|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.dspace.core.SelfNamedPlugin
org.dspace.content.packager.PDFPackager
public class PDFPackager
Accept a PDF file by itself as a SIP.
This is mainly a proof-of-concept to demonstrate the flexibility of the packager and crosswalk plugins.
To import, open up the PDF and try to extract sufficient metadata from its InfoDict.
Export is a crude hack: if the item has a bitstream containing PDF, send that, otherwise it fails. Do not attempt to insert metadata.
PackageIngester,
PackageDisseminator| Constructor Summary | |
|---|---|
PDFPackager()
|
|
| Method Summary | |
|---|---|
void |
disseminate(Context context,
DSpaceObject dso,
PackageParameters params,
File pkgFile)
VERY crude dissemination: just look for the first bitstream with the PDF package type, and toss it out. |
List<File> |
disseminateAll(Context context,
DSpaceObject dso,
PackageParameters params,
File pkgFile)
disseminateAll() cannot be implemented for a PDF disseminator, because there's only one PDF to disseminate |
String |
getMIMEType(PackageParameters params)
Identifies the MIME-type of this package, i.e. |
String |
getParameterHelp()
Returns a user help string which should describe the additional valid command-line options that this packager implementation will accept when using the -o or
--option flags with the Packager script. |
static String[] |
getPluginNames()
|
DSpaceObject |
ingest(Context context,
DSpaceObject parent,
File pkgFile,
PackageParameters params,
String license)
Create new Item out of the ingested package, in the indicated collection. |
List<DSpaceObject> |
ingestAll(Context context,
DSpaceObject parent,
File pkgFile,
PackageParameters params,
String license)
IngestAll() cannot be implemented for a PDF ingester, because there's only one PDF to ingest |
DSpaceObject |
replace(Context context,
DSpaceObject dso,
File pkgFile,
PackageParameters params)
Replace is not implemented. |
List<DSpaceObject> |
replaceAll(Context context,
DSpaceObject dso,
File pkgFile,
PackageParameters params)
ReplaceAll() cannot be implemented for a PDF ingester, because there's only one PDF to ingest |
| Methods inherited from class org.dspace.core.SelfNamedPlugin |
|---|
getPluginInstanceName, setPluginInstanceName |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public PDFPackager()
| Method Detail |
|---|
public static String[] getPluginNames()
public DSpaceObject ingest(Context context,
DSpaceObject parent,
File pkgFile,
PackageParameters params,
String license)
throws PackageValidationException,
CrosswalkException,
AuthorizeException,
SQLException,
IOException
This is a VERY crude import of a single Adobe PDF (Portable Document Format) file, using the document's embedded metadata for package metadata. If the PDF file hasn't got the minimal metadata available, it is rejected.
ingest in interface PackageIngestercontext - DSpace context.parent - collection under which to create new item.pkgFile - The package file to ingestparams - package parameters (none recognized)license - may be null, which takes default license.
PackageException - if package is unacceptable or there is
a fatal error turning it into an Item.
PackageValidationException - if package is unacceptable or there is
a fatal error turning it into a DSpaceObject.
CrosswalkException
AuthorizeException
SQLException
IOException
public List<DSpaceObject> ingestAll(Context context,
DSpaceObject parent,
File pkgFile,
PackageParameters params,
String license)
throws PackageException,
UnsupportedOperationException,
CrosswalkException,
AuthorizeException,
SQLException,
IOException
ingestAll in interface PackageIngestercontext - DSpace context.parent - parent under which to create the initial object
(may be null -- in which case ingester must determine parent from package
or throw an error).pkgFile - The initial package file to ingestparams - Properties-style list of options (interpreted by each packager).license - may be null, which takes default license.
PackageValidationException - if initial package (or any referenced package)
is unacceptable or there is a fatal error in creating a DSpaceObject
UnsupportedOperationException - if this packager does not
implement ingestAll
PackageException
CrosswalkException
AuthorizeException
SQLException
IOException
public DSpaceObject replace(Context context,
DSpaceObject dso,
File pkgFile,
PackageParameters params)
throws PackageException,
UnsupportedOperationException,
CrosswalkException,
AuthorizeException,
SQLException,
IOException
replace in interface PackageIngestercontext - DSpace context.dso - existing DSpace Object to be replaced, may be null
if object to replace can be determined from packagepkgFile - The package file to ingest.params - Properties-style list of options specific to this packager
PackageValidationException - if package is unacceptable or there is
a fatal error turning it into an Item.
UnsupportedOperationException - if this packager does not
implement replace.
PackageException
CrosswalkException
AuthorizeException
SQLException
IOException
public List<DSpaceObject> replaceAll(Context context,
DSpaceObject dso,
File pkgFile,
PackageParameters params)
throws PackageException,
UnsupportedOperationException,
CrosswalkException,
AuthorizeException,
SQLException,
IOException
replaceAll in interface PackageIngestercontext - DSpace context.dso - initial existing DSpace Object to be replaced, may be null
if object to replace can be determined from packagepkgFile - The package file to ingest.params - Properties-style list of options specific to this packager
PackageValidationException - if initial package (or any referenced package)
is unacceptable or there is a fatal error in creating a DSpaceObject
UnsupportedOperationException - if this packager does not
implement replaceAll
PackageException
CrosswalkException
AuthorizeException
SQLException
IOException
public void disseminate(Context context,
DSpaceObject dso,
PackageParameters params,
File pkgFile)
throws PackageValidationException,
CrosswalkException,
AuthorizeException,
SQLException,
IOException
disseminate in interface PackageDisseminatorcontext - DSpace context.dso - DSpace object (item, collection, etc)params - Properties-style list of options specific to this packagerpkgFile - File where export package should be written
PackageValidationException - if package cannot be created or there is
a fatal error in creating it.
CrosswalkException
AuthorizeException
SQLException
IOException
public List<File> disseminateAll(Context context,
DSpaceObject dso,
PackageParameters params,
File pkgFile)
throws PackageException,
CrosswalkException,
AuthorizeException,
SQLException,
IOException
disseminateAll in interface PackageDisseminatorcontext - DSpace context.dso - initial DSpace objectparams - Properties-style list of options specific to this packagerpkgFile - File where initial package should be written. All other
packages will be written to the same directory as this File.
PackageValidationException - if package cannot be created or there is
a fatal error in creating it.
PackageException
CrosswalkException
AuthorizeException
SQLException
IOExceptionpublic String getMIMEType(PackageParameters params)
getMIMEType in interface PackageDisseminatorpublic String getParameterHelp()
-o or
--option flags with the Packager script.
getParameterHelp in interface PackageDisseminatorgetParameterHelp in interface PackageIngester
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||