package shakuhachi
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=91dc3168bc12fdd6032c16f9990018fd54f91cea50d9f6eb798e4d5eecd9c6a6
sha512=a93c4bf39d80d2c595d361b393f0f1fd2fd078e5bd714988e835a0b5ac8c8c48d3b4cbe2e11d33c9168d9f2f44818b6a60e38b32773bd4967c24794abbf323dd
doc/shakuhachi.libs/Skhclibs/Collection/index.html
Module Skhclibs.CollectionSource
Operations on a shakuhachi collection.
type of a collection
open' config opens the collection with configuration provided by config.
realpath collection path returns
pathifpathis absolute (eg. starts with / on unix).- music_directory +
pathifpathis relative.
val database :
?mode:[ `NO_CREATE | `READONLY ] ->
?uri:bool ->
?memory:bool ->
?mutex:[ `FULL | `NO ] ->
?cache:[ `PRIVATE | `SHARED ] ->
?vfs:string ->
t ->
SkhcDb.Database.tdatabase collection returns a database handler associated with collection.
see Sqlite3.db_open for details of all optional arguments.
val with_database :
?mode:[ `NO_CREATE | `READONLY ] ->
?uri:bool ->
?memory:bool ->
?mutex:[ `FULL | `NO ] ->
?cache:[ `PRIVATE | `SHARED ] ->
?vfs:string ->
t ->
(SkhcDb.Database.t -> 'a) ->
'awith_database collection f runs f with a database handler associated with collection. SkhcDb.Database.close is guaranteed to be called whether f completes normaly or raises an exception. with_database discards any results or exceptions of SkhcDb.Database.close.
see Sqlite3.db_open for details of all optional arguments.
config collection returns the configuration used when calling open'.
dir_artist collection metadata returns the directory name of where should be collected the artist's albums according to metadata. The path returned is relative to configuration's music_directory.
dir_artist_absolute collection metadata is dir_artist but returns the absolute path instead of the relative one.
dir_album collection metadata returns the directory name of where should be collected the album's songs according to metadata. The path returned is relative to configuration's music_directory. Since shakuhachi stores songs in a artist/album directory structure, this function calls dir_artist underneath.
dir_album_absolute collection metadata is dir_album but returns the absolute path instead of the relative one.