Class ContentServiceImpl

  • All Implemented Interfaces:
    ContentService, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware
    Direct Known Subclasses:
    RoutingContentService

    public class ContentServiceImpl
    extends Object
    implements ContentService, org.springframework.context.ApplicationContextAware
    Service implementation acting as a level of indirection between the client and the underlying content store.

    Note: This class was formerly the RoutingContentService but the 'routing' functionality has been pushed into the store implementations.

    Since:
    3.2
    Author:
    Derek Hulley
    • Constructor Detail

      • ContentServiceImpl

        public ContentServiceImpl()
    • Method Detail

      • setDictionaryService

        public void setDictionaryService​(DictionaryService dictionaryService)
      • setNodeService

        public void setNodeService​(NodeService nodeService)
      • setMimetypeService

        public void setMimetypeService​(MimetypeService mimetypeService)
      • setEagerContentStoreCleaner

        public void setEagerContentStoreCleaner​(EagerContentStoreCleaner eagerContentStoreCleaner)
      • setPolicyComponent

        public void setPolicyComponent​(PolicyComponent policyComponent)
      • setImageMagickContentTransformer

        public void setImageMagickContentTransformer​(ContentTransformer imageMagickContentTransformer)
      • setIgnoreEmptyContent

        public void setIgnoreEmptyContent​(boolean ignoreEmptyContent)
      • setTransformerFailover

        public void setTransformerFailover​(boolean transformerFailover)
        Allows fail over form one transformer to another when there is more than one transformer available. The cost is that the output of the transformer must go to a temporary file in case it fails.
        Parameters:
        transformerFailover - true (the default) indicate that fail over should take place.
      • setApplicationContext

        public void setApplicationContext​(org.springframework.context.ApplicationContext applicationContext)
                                   throws org.springframework.beans.BeansException
        Specified by:
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        Throws:
        org.springframework.beans.BeansException
      • setTransformerDebug

        public void setTransformerDebug​(TransformerDebug transformerDebug)
        Helper setter of the transformer debug.
        Parameters:
        transformerDebug - TransformerDebug
      • init

        public void init()
        Service initialise
      • onUpdateProperties

        public void onUpdateProperties​(NodeRef nodeRef,
                                       Map<QName,​Serializable> before,
                                       Map<QName,​Serializable> after)
        Update properties policy behaviour
        Parameters:
        nodeRef - the node reference
        before - the before values of the properties
        after - the after values of the properties
      • getStoreFreeSpace

        public long getStoreFreeSpace()
        Description copied from interface: ContentService
        Gets the remaing available space in the underlying content store.
        Specified by:
        getStoreFreeSpace in interface ContentService
        Returns:
        Returns the total, possibly approximate, remaining space (in bytes) available to store content or -1 if no size data is available.
      • getStoreTotalSpace

        public long getStoreTotalSpace()
        Description copied from interface: ContentService
        Gets the total space of the underlying content store (not exclusively Alfresco-controlled binaries).
        Specified by:
        getStoreTotalSpace in interface ContentService
        Returns:
        Returns the total, possibly approximate, size (in bytes) of of the store or -1 if no size data is available.
      • getRawReader

        public ContentReader getRawReader​(String contentUrl)
        Fetch content from the low-level stores using a content URL. None of the metadata associated with the content will be populated. This method should be used only to stream the binary data out when no other metadata is required.

        null is never returned, but the reader should always be checked for existence.

        Specified by:
        getRawReader in interface ContentService
        Parameters:
        contentUrl - a content store URL
        Returns:
        Returns a reader for the URL that needs to be checked.
      • getReader

        public ContentReader getReader​(NodeRef nodeRef,
                                       QName propertyQName)
        Description copied from interface: ContentService
        Gets a reader for the content associated with the given node property.

        If a content URL is present for the given node then a reader must be returned. The exists method should then be used to detect 'missing' content.

        Specified by:
        getReader in interface ContentService
        Parameters:
        nodeRef - a reference to a node having a content property
        propertyQName - the name of the property, which must be of type content
        Returns:
        Returns a reader for the content associated with the node property, or null if no content has been written for the property
        See Also:
        FileContentReader.getSafeContentReader(ContentReader, String, Object[])
      • getWriter

        public ContentWriter getWriter​(NodeRef nodeRef,
                                       QName propertyQName,
                                       boolean update)
        Description copied from interface: ContentService
        Get a content writer for the given node property, choosing to optionally have the node property updated automatically when the content stream closes.

        If the update flag is off, then the state of the node property will remain unchanged regardless of the state of the written binary data. If the flag is on, then the node property will be updated on the same thread as the code that closed the write channel.

        If no node is supplied, then the writer will provide a stream into the backing content store, but will not be associated with any new or previous content.

        NOTE: The content URL provided will be registered for automatic cleanup in the event that the transaction, in which this method was called, rolls back. If the transaction is successful, the writer may still be open and available for use but the underlying binary will not be cleaned up subsequently. The recommended pattern is to group calls to retrieve the writer in the same transaction as the calls to subsequently update and close the write stream - including setting of the related content properties.

        Specified by:
        getWriter in interface ContentService
        Parameters:
        nodeRef - a reference to a node having a content property, or null to just get a valid writer into a backing content store.
        propertyQName - the name of the property, which must be of type content
        update - true if the property must be updated atomically when the content write stream is closed (attaches a listener to the stream); false if the client code will perform the updates itself.
        Returns:
        Returns a writer for the content associated with the node property
      • getTempWriter

        public ContentWriter getTempWriter()
        Description copied from interface: ContentService
        Gets a writer to a temporary location. The longevity of the stored temporary content is determined by the system.
        Specified by:
        getTempWriter in interface ContentService
        Returns:
        Returns a writer to an anonymous location
      • getTransformer

        public ContentTransformer getTransformer​(String sourceMimetype,
                                                 String targetMimetype)
        Description copied from interface: ContentService
        Fetch the transformer that is capable of transforming the content in the given source mimetype to the given target mimetype.

        Since no transformation options are provided only the source and destination mimetypes are considered when getting the correct transformer.

        Specified by:
        getTransformer in interface ContentService
        Parameters:
        sourceMimetype - the source mimetype
        targetMimetype - the target mimetype
        Returns:
        Returns a transformer that can be used, or null if one was not available
        See Also:
        ContentTransformerRegistry, ContentTransformer
      • getMaxSourceSizeBytes

        public long getMaxSourceSizeBytes​(String sourceMimetype,
                                          String targetMimetype,
                                          TransformationOptions options)
        Returns the maximum source size of any content that may transformed between the supplied mimetypes using the supplied options.
        Specified by:
        getMaxSourceSizeBytes in interface ContentService
        Parameters:
        sourceMimetype - source mime type
        targetMimetype - target mime type
        options - transformation options
        Returns:
        0 if there are no transformers, -1 if there is no limit or if positive number the size in bytes.