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

SMILA/Component Requirements/Record Binary Storage Requirements

< SMILA‎ | Component Requirements
Revision as of 11:29, 13 October 2008 by Igor.novakovic.empolis.com (Talk | contribs) (New page: 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 binar...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 updateRecordAttachment(String attachmentId, InputStream attachmentStream)
InputStream getRecordAttachment(String attachmentId)
InputStream removeRecordAttachment(String attachmentId)
int getRecordAttachmentSize(String attachmentId)
void storeRecordAttachment(String attachmentId, byte[] attachmentStream)
void updateRecordAttachment(String attachmentId, byte[] attachmentStream)
byte[] getRecordAttachment(String attachmentId)
byte[] removeRecordAttachment(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.

Back to the top