51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
#elem-brief: picture interface management
|
|
#elem-version: 1.0
|
|
#elem-type:PICTURE
|
|
#elem-author:Heero Yui<yui.heero@gmail.com
|
|
|
|
import zeus-File
|
|
import zeus-Media
|
|
|
|
// ----------------- Get media with their ID -----------------------
|
|
#brief:Get the number of media availlable (a media is a picture or a video)
|
|
#return: Number of media
|
|
uint32 count()
|
|
|
|
#brief:Get list of name of the media in a specific range (<1024)
|
|
#param:start:First Id of the media stream requested (range [0..+inf[)
|
|
#param:stop:Last Id of the media stream requested (excluded) (range [0..+inf[)
|
|
#return:List of the media Ids
|
|
vector:uint32 getIds(uint32,uint32)
|
|
|
|
// ----------------- media Access -----------------------
|
|
#brief:Get a media
|
|
#param:mediaId:Id of the media
|
|
#return:A file reference on the media (transmission is async)
|
|
obj:zeus-Media get(uint32)
|
|
|
|
#brief:Add a new media in the service
|
|
#param:data:A file reference on the media (transmission is async)
|
|
#return:Local personal ID of the media
|
|
uint32 add(obj:zeus-File)
|
|
|
|
#brief:Remove a media in the service (no trash)
|
|
#param:mediaId:Id of the media
|
|
void remove(uint32)
|
|
|
|
|
|
/*
|
|
The SQL-like is now: ['AND', ==,!=,<=,>=,<,>] only...
|
|
'serie-name' == 'stargate'
|
|
AND 'saison' <= '2'
|
|
*/
|
|
#brief:Get a meta-data research elements with a SQL-like request
|
|
#param:sqlLikeRequest:A string containing the request on the data
|
|
#return:All The requested Data filter by the value
|
|
vector:uint32 getSQL(string)
|
|
|
|
#brief:Get a list of possibilities of a meta-data
|
|
#param:keyName:the key metadata whe we want to have list of possibilities
|
|
#param:sqlLikeRequest:A string containing the request on the data
|
|
#return:All The possible values of a key
|
|
vector:string getMetadataValuesWhere(string, string)
|