public abstract class AbstractAssetHandler extends java.lang.Object implements AssetHandler
AbstractAssetHandler serves as basis for all other asset handler implementations and provides common
used functionality.| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
PROPERTY_DEACTIVATED_MIME_TYPES
The property for deactivated mime types.
|
| Constructor and Description |
|---|
AbstractAssetHandler() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canHandleSubAssets()
Indicates if the handler supports processing of
sub assets |
void |
createThumbnails(Asset asset)
Creates thumbnails for this asset.
|
void |
createThumbnails(Asset asset,
java.util.Collection<ThumbnailConfig> configs)
Thumbnails of an asset are created during import/update of an asset and it's original binary.
|
void |
createThumbnails(Asset asset,
Rendition rendition,
java.util.Collection<ThumbnailConfig> configs)
|
void |
createThumbnails(Node asset,
Node renditionFolder,
Session session,
java.util.List<java.lang.Integer[]> dimensions)
Deprecated.
|
void |
createThumbnailsExt(Node asset,
Node renditionFolder,
Session session,
java.util.List<java.util.Map<java.lang.String,java.lang.Object>> thumbnailConfigs)
Deprecated.
|
void |
exportAsset(Node asset,
java.io.OutputStream stream)
Deprecated.
|
ExtractedMetadata |
extractMetadata(Node asset)
Deprecated.
|
java.awt.image.BufferedImage |
getImage(Node file)
Deprecated.
|
java.awt.image.BufferedImage |
getImage(Rendition rendition)
This method retrieves the graphical representation of the given file.
|
java.awt.image.BufferedImage |
getImage(Rendition rendition,
java.awt.Dimension maxDimension)
|
java.util.Iterator<? extends AssetRelation> |
processRelated(Asset asset)
extracts and stores the links to the assets related with provided asset.
|
java.util.List<java.lang.String> |
processSubAssets(Asset asset)
Handler implementations may choose to support sub asset creation for the file types it handles.
|
java.util.List<java.lang.String> |
processSubAssets(Node asset,
Session session)
Deprecated.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetMimeTypespublic static java.lang.String PROPERTY_DEACTIVATED_MIME_TYPES
public void createThumbnails(Node asset,
Node renditionFolder,
Session session,
java.util.List<java.lang.Integer[]> dimensions)
[width1,height1], [width2,height2], ... createThumbnails in interface AssetHandlerasset - the asset/file for which the thumbnails are generatedrenditionFolder - the folder where the thumbnails belong tosession - the jcr session shich is used to store the thumbnailsdimensions - the dimensions for the "ordered" thumbnailspublic void createThumbnailsExt(Node asset,
Node renditionFolder,
Session session,
java.util.List<java.util.Map<java.lang.String,java.lang.Object>> thumbnailConfigs)
throws java.io.IOException
CreateThumbnailProcess and the CommandLineProcess as part of the DAM Update Asset workflow. Implementations
may choose to create asset thumbnails for every entry in the thumbnailConfigs list argument, to not
create any thumbnails at all, or to create a generic thumbnail independent of the given config. Thumbnails
themselves are renditions of an asset and must be persisted as such (see Asset.addRendition(String, java.io.InputStream, String)).
The thumbnail renditions are created depending on the given configuration list:
{
height:h1,
width: w1,
doCenter: true (or false)
},
{
...
}
Sample:
... final ArrayList
createThumbnailsExt in interface AssetHandlerasset - the asset/file for which the thumbnails are generatedrenditionFolder - the folder where thumbnails (renditions) shall be storedsession - the jcr session shich is used to store the thumbnailsthumbnailConfigs - thumbnail configurationsjava.io.IOException - is thrown in case while an error occured while fetching the imageAsset.addRendition(String, java.io.InputStream, String),
Asset.getRenditions(),
),
Asset.getRendition(com.day.cq.dam.api.RenditionPicker)public void createThumbnails(Asset asset, java.util.Collection<ThumbnailConfig> configs) throws java.io.IOException
CreateThumbnailProcess and the CommandLineProcess as part of the DAM Update Asset workflow. Implementations
may choose to create asset thumbnails for every entry in the thumbnailConfigs list argument, to not
create any thumbnails at all, or to create a generic thumbnail independent of the given config. Thumbnails
themselves are renditions of an asset and must be persisted as such (see Asset.addRendition(String, java.io.InputStream, String)).
The thumbnail renditions are created depending on the given configuration list:
{
height:h1,
width: w1,
doCenter: true (or false)
},
{
...
}
Sample:
... final ArrayList> config = new ArrayList >(); config.add(new HashMap () {{ put("width", 140); put("height", 100); put("doCenter", true); }}); config.add(new HashMap () {{ put("width", 80); put("height", 80); put("doCenter", true); }}); handler.createThumbnailsExt( getTiff(), asset.adaptTo(Node.class).getNode("jcr:content/renditions"), session, config); ...
createThumbnails in interface AssetHandlerasset - the asset/file for which the thumbnails are generatedconfigs - thumbnail configurationsjava.io.IOException - is thrown in case while an error occurred while fetching the imageAsset.addRendition(String, java.io.InputStream, String),
Asset.getRenditions(),
),
Asset.getRendition(com.day.cq.dam.api.RenditionPicker)public void createThumbnails(Asset asset) throws java.io.IOException
createThumbnails in interface AssetHandlerasset - The asset for which to create thumbnails.java.io.IOException - If an error occurred while extracting the image.public void createThumbnails(Asset asset, Rendition rendition, java.util.Collection<ThumbnailConfig> configs) throws java.io.IOException
createThumbnails in interface AssetHandlerasset - The asset for which to created thumbnails.rendition - The rendition serving as the thumbnail basis.configs - The thumbnail configurations.java.io.IOException - If an error occurred extracting an image from the rendition.public boolean canHandleSubAssets()
sub assetscanHandleSubAssets in interface AssetHandlertrue if handler is able to process sub assetspublic java.util.List<java.lang.String> processSubAssets(Node asset,
Session session)
CreateSubAssetsProcess during import/update of an asset and its
binary, as part of the DAM Update Asset workflow. Sub assets represent fragments of the original asset,
for example every page of a multi-page PDF document are sub assets. Sub assets are stored as assets themselves
under the parent asset. Sub assets are stored in the subassets folder of the main asset, e.g. at
/content/dam/geometrixx/documents/ECM Artikel.pdf/subassets.
The asset argument represents the javax.jcr.Node of type nt:file holding the binary
content or the DAM Asset node (type dam:Asset), for which its original rendition would be retrieved.processSubAssets in interface AssetHandlerasset - asset to extract sub assetssession - jcr sessionAssetHandler.canHandleSubAssets(),
Asset.isSubAsset()public java.util.List<java.lang.String> processSubAssets(Asset asset)
AssetHandlerCreateSubAssetsProcess during import/update of an asset and its
binary, as part of the DAM Update Asset workflow. Sub assets represent fragments of the original asset,
for example every page of a multi-page PDF document are sub assets. Sub assets are stored as assets themselves
under the parent asset. Sub assets are stored in the subassets folder of the main asset, e.g. at
/content/dam/geometrixx/documents/ECM Artikel.pdf/subassets.
The asset argument represents the javax.jcr.Node of type nt:file holding the binary
content or the DAM Asset node (type dam:Asset), for which its original rendition would be retrieved.processSubAssets in interface AssetHandlerasset - asset to extract sub assetsAssetHandler.canHandleSubAssets(),
Asset.isSubAsset()public java.util.Iterator<? extends AssetRelation> processRelated(Asset asset)
AssetHandlerprocessRelated in interface AssetHandlerasset - asset to processAssetRelation or an empty iterator if no related assets are availablepublic java.awt.image.BufferedImage getImage(Rendition rendition) throws java.io.IOException
AssetHandlerBufferedImage
of the original image is returned, for other formats the first page is retrieved as BufferedImagegetImage in interface AssetHandlerrendition - to retrieve the image representationBufferedImage if a graphical representaion exists, otherwise nulljava.io.IOException - in case an error is thrown while fetching the buffered imagepublic java.awt.image.BufferedImage getImage(Rendition rendition, java.awt.Dimension maxDimension) throws java.io.IOException
AssetHandlerAssets given Rendition. For images the
BufferedImage of the original image is returned, for other formats the first page is retrieved as
BufferedImage.
If maxDimension is given, the handler should return an
image where no dimension extends the given value. This can be used to reduce
the memory footprint of large buffered images if the full resolution is not needed.
getImage in interface AssetHandlerrendition - The rendition for which to retrieve its graphical representation.maxDimension - optional constraint for the maximal dimension of the image.BufferedImage if a graphical representation exists, otherwise nulljava.io.IOException - in case an error is thrown while fetching the buffered imagepublic void exportAsset(Node asset,
java.io.OutputStream stream)
throws AssetHandlerException
exportAsset in interface AssetHandlerasset - the file nodestream - the OutputStream where the exported asset is put.AssetHandlerException - in case the export work failed.public ExtractedMetadata extractMetadata(Node asset)
ExtractMetadataProcess as part of the DAM
Update Asset workflow during import or update of an asset. Implementations must return an ExtractedMetadata object, which may be empty if no metadata is extracted, or
contains the metadata values extracted from the binary being imported/updated at the time. The
ExtractMetadataProcess will later save the metadata contained in ExtractedMetadata to
the asset's metadata node (e.g. /content/dam/geometrixx/banners/banner-mono.png/jcr:content/metadata).
Implementations are free to decide which and how many metadata values are extracted.
The method argument represents the javax.jcr.Node of type nt:file holding the binary content or
the DAM Asset node (type dam:Asset), for which its original rendition would be retrieved.extractMetadata in interface AssetHandlerasset - the file nodeAsset.getMetadata(),
Asset.getMetadata(String),
Asset.getMetadataValue(String)public java.awt.image.BufferedImage getImage(Node file)
throws java.io.IOException
BufferedImage
of the original image is returned, for other formats the first page is retrieved as BufferedImagegetImage in interface AssetHandlerfile - to retrieve the image representationBufferedImage if a graphical representaion exists, otherwise nulljava.io.IOException - in case an error is thrown while fetching the buffered image"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"