"Tomas Hlava" <th@red2head.com> 07/23/2004 10:09 PM | To: livesupport-dev@campware.org cc: Subject: [livesupport-dev] File Storage RFC |
cite="midOF5005577E.0AB5A776-ONC1256EDB.0004E587-C1256EDB.00051125@mdlf.org"
type="cite">-----
Forwarded by Douglas Arellanes/Mdlf on 07/24/2004 02:53 AM -----
reenBox - Livesupport file storage
GreenBox - Livesupport file storage - request for comments
23.7.2004
Overview
Extends Alib class which handles
authentication
and authorization checking.
Alib provides tree hierarchy of objects with permission management,
grouping objects to classes
and user management with recursive groups/roles.
GreenBox uses Alib tree and extends it with db of file-specific
information
and metadata RDF-style database with URI identification of property
types
and values.
Basic model for metadata
Subject --- Predicate(property)
---> Object
Where:
- Subject
may be:
- file in storage (identified by gunid - global unique id),
- metadata
record (mostly blank node for metadata hierarchy) or
- literal (for some definition
e.g. napespace prefix)
- Predicate
is identification of metadata property - i.e. namespace prefix and
tagname
- Object
is blank node or literal value of property
Reserved namespace prefixes:
_L literal value _G gunid (global unique id) of file _I metada record ID _blank blank node
Reserved predicates:
_namespace (with empty prefix) namespace prefix definition
Example of metadata records:
subject namespace: _G (means gunid of file) subject: ea510749debe80e1a7c3e021a79b9288 predicate namespace: dc predicate: metadata object namespace: _blank object: NULL
subject namespace: _I (means id of parent metadata record) subject: 1234 predicate namespace: dc predicate: title object namespace: _L (means literal value) object: Jingle bells
subject namespace: _L (means literal value) subject: dc predicate namespace: predicate: _namespace object namespace: _L (means literal value) object: http://purl.org/dc/elements/1.1/
XML serialization of previous eExample:
<?xml version="1.0" encoding="utf-8"?> <dc:metadata xmlns:dc="http://purl.org/dc/elements/1.1/"> <dc:title>Jingle bells</dc:title> </dc:metadata>
XMLRPC API for local storage
login(/*string*/ $login, /*string*/ $pass)
returns
string
returns auth token or error
logout(/*string*/ $sessid)
returns boolean
authenticate(/*string*/ $login, /*string*/ $pass)
returns boolean
basic authentication check
existsAudioClip(/*string*/
returns boolean
$gunid)
Check if an Audio clip with the specified id is stored in local
storage.
storeAudioClip(/*string*/ $gunid, /*string*/
$mediaFileLP, /*string*/ $mdataFileLP, /*string*/ $sessid)
returns gunid
Store a new audio clip or replace an existing one.
deleteAudioClip(/*string*/ $gunid, /*string*/ $sessid)
returns boolean
Delete an existing Audio clip.
updateAudioClipMetadata(/*string*/ $gunid, /*string*/
returns boolean
$newMetaData, /*string*/ $sessid)
Update the metadata of an Audio clip stored in Local storage.
accessRawAudioData(/*string*/ $gunid, /*string*/ $sessid)
returns string
Get access to raw audio data of an AudioClip.
releaseRawAudioData(/*string*/ $gunid, /*string*/ $sessid)
returns boolean
Release access for raw audio data.
searchMetadata(/*string*/ $criteria, /*string*/ $sessid)
returns array
Search through the metadata of stored AudioClips, and return all
matching clip ids.
Methods may return XMLRPC error response if fails ...
Common parameters:
$sessid
- session id (token returned by login method) $gunid
- global unique id of file
XMLRPC API of interface to central archive
downloadRawAudioData(/*string*/ $gunid, /*int*/ $offset,
returns boolean
/*string*/ $sessid)
searchMetadata(/*string*/ $criteria, /*string*/ $sessid)
returns array
Search through the metadata of stored AudioClips, and return all
matching clip ids.
Main part of PHP API:
GreenBox(&$dbc, $config)
class constructor
createFolder($parid, $folderName, $sessid)
putFile($parid, $fileName, $mediaFileLP, $mdataFileLP,
$sessid)
$mediaFileLP and $mdataFileLP contains local path to media and metadata
files
getFile($id, $sessid)
analyzeFile($id, $sessid)
access($id, $sessid)
moveFile($id, $did, $sessid)
copyFile($id, $did, $sessid)
deleteFile($id, $sessid)
createReplica($id, $did, $replicaName, $sessid)
createVersion($id, $did, $versionLabel, $sessid)
updateMetadata($id, $mdataFile, $sessid)
updateMetadataRecord($id, $mdid, $object, $sessid)
addMetaDataRecord($id, $propertyNamespace, $propertyName,
$propertyValue, $sessid)
getMdata($id, $sessid)
localSearch($searchData, $sessid)
uploadFile($id, $sessid)
downloadFile($id, $parid, $sessid)
getTransferStatus($transferId, $sessid)
globalSearch($searchData, $sessid)
getSearchResults($transferId, $sessid)
listFolder($id, $sessid)
getMetadata($id, $sessid)
Common parameters:
$sessid
- session id (token returned by login method) $id
- id in object tree $parid
- parent id in object tree $mdid
- id in metadata table $transferId
- id of transfer or search job (returned by initiating
method)
Connection between local storage and other components
Standard API call will be realised through XMLRPC interface.
Large media files will be provided to other components directly using
temporary
symlinks (filesystem sharing have to be set up in distributed
intallation of
Livesupport).
HTML interface written in PHP could include and call API methods
directly.
P.S.: sorry for my English ...
--------------070908070506010009030103--
------------------------------------------
Posted to Phorum via PhorumMail
It looks like you're new here. If you want to get involved, click one of these buttons!