Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Component Requirements/Record Binary Storage Requirements"

Line 20: Line 20:
 
void storeRecordAttachment(String attachmentId, InputStream attachmentStream)
 
void storeRecordAttachment(String attachmentId, InputStream attachmentStream)
 
void storeRecordAttachment(String attachmentId, byte[] attachmentStream)
 
void storeRecordAttachment(String attachmentId, byte[] attachmentStream)
void updateRecordAttachment(String attachmentId, InputStream attachmentStream)
+
byte[] fetchRecordAttachmentAsByte(String attachmentId)
void updateRecordAttachment(String attachmentId, byte[] attachmentStream)
+
InputStream fetchRecordAttachmentAsStream(String attachmentId)
byte[] getRecordAttachmentAsByte(String attachmentId)
+
InputStream getRecordAttachmentAsStream(String attachmentId)
+
 
void removeRecordAttachment(String attachmentId)
 
void removeRecordAttachment(String attachmentId)
int getRecordAttachmentSize(String attachmentId)
+
int fetchRecordAttachmentSize(String attachmentId)
 
</source>
 
</source>
  

Revision as of 11:51, 13 October 2008

This page defines requirements posed on SMILA's components.

Overview

The purpose of record binary storage is to store document binary data. Usually this is the content of the binary document referenced as one or more attachments in the record. The natural client component of this low level service is the blackboard service.

Note: The content (record attachments) of XML document should rather be stored in record XML storage since this enables the client component to fire some XQueries on the document content itself.

Requirements

  1. Record binary store has to offer an implementation-agnostic API. This particularly means that the client component should have no knowledge about the actual persistence technology being used (local file system, DB or distributed file system)
  2. The usage of one special implementation of binary storage service should be simply a matter of the framework configuration.
  3. The essential API should be kept short (max 10 methods)
  4. Expanded API may contain batch operations
  5. The 'get' and 'set' methods should operate both with streams (in case very large documents - more than 2GB in size - need to be stored/processed) and byte arrays (for convenience reasons)
  6. The client component must use different instances of the binary store fully transparently
  7. Proposal for essential API:
void storeRecordAttachment(String attachmentId, InputStream attachmentStream)
void storeRecordAttachment(String attachmentId, byte[] attachmentStream)
byte[] fetchRecordAttachmentAsByte(String attachmentId)
InputStream fetchRecordAttachmentAsStream(String attachmentId)
void removeRecordAttachment(String attachmentId)
int fetchRecordAttachmentSize(String attachmentId)

Note: By being able to get the size of the stored content at first, the client component developer can decide which method (stream or byte-array oriented) he/she should use.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.