/* * 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.repo.content; import java.util.Date; import java.util.Set; import org.alfresco.service.cmr.repository.ContentIOException; import org.alfresco.service.cmr.repository.ContentReader; import org.alfresco.service.cmr.repository.ContentStreamListener; import org.alfresco.service.cmr.repository.ContentWriter; /** * Provides low-level retrieval of content * {@link org.alfresco.service.cmr.repository.ContentReader readers} and * {@link org.alfresco.service.cmr.repository.ContentWriter writers}. *
* Implementations of this interface should be soley responsible for
* providing persistence and retrieval of the content against a
* content URL
.
*
* The URL format is store://year/month/day/GUID.bin
*
* The implementation of this may be more efficient than first getting a * reader to {@link ContentReader#exists() check for existence}, although * that check should also be performed. * * @param contentUrl the path to the content * @return Returns true if the content exists. * @throws ContentIOException * * @see ContentReader#exists() */ public boolean exists(String contentUrl) throws ContentIOException; /** * Get the accessor with which to read from the content * at the given URL. The reader is stateful and * can only be used once. * * @param contentUrl the path to where the content is located * @return Returns a read-only content accessor for the given URL. There may * be no content at the given URL, but the reader must still be returned. * The reader may implement the {@link RandomAccessContent random access interface}. * @throws ContentIOException * * @see #exists(String) * @see ContentReader#exists() */ public ContentReader getReader(String contentUrl) throws ContentIOException; /** * Get an accessor with which to write content to a location * within the store. The writer is stateful and can * only be used once. The location may be specified but must, in that case, * be a valid and unused URL. *
* By supplying a reader to existing content, the store implementation may
* enable {@link RandomAccessContent random access}. The store implementation
* can enable this by copying the existing content into the new location
* before supplying a writer onto the new content.
*
* @param existingContentReader a reader onto any existing content for which
* a writer is required - may be null
* @param newContentUrl an unused, valid URL to use - may be null.
* @return Returns a write-only content accessor, possibly implementing
* the {@link RandomAccessContent random access interface}
* @throws ContentIOException if completely new content storage could not be
* created
*
* @see ContentWriter#addListener(ContentStreamListener)
* @see ContentWriter#getContentUrl()
*/
public ContentWriter getWriter(ContentReader existingContentReader, String newContentUrl) throws ContentIOException;
/**
* Get all URLs for the store, regardless of creation time.
*
* @see #getUrls(Date, Date)
*/
public Set
* A delete cannot be forced since it is much better to have the
* file remain longer than desired rather than deleted prematurely.
* The store implementation should safeguard files for certain
* minimum period, in which case all files younger than a certain
* age will not be deleted.
*
* @param contentUrl the URL of the content to delete
* @return Return true if the content was deleted (either by this or
* another operation), otherwise false
* @throws ContentIOException
*/
public boolean delete(String contentUrl) throws ContentIOException;
}