Part of coherence.backends.mediadb_storage View Source View In Hierarchy
Split Table into Classes Show Methods in One Table
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 355 | Method | __init__ | Undocumented |
| 379 | Method | walk | Undocumented |
| 390 | Method | get_music_files | Undocumented |
| 452 | Method | show_db | Undocumented |
| 458 | Method | show_albums | Undocumented |
| 462 | Method | show_artists | Undocumented |
| 466 | Method | show_tracks_by_artist | artist = self.db.query(Artist,Artist.name == artist_name) |
| 482 | Method | show_tracks_by_title | Undocumented |
| 486 | Method | show_tracks_to_filename | Undocumented |
| 495 | Method | get_album_covers | Undocumented |
| 517 | Method | get_by_id | Undocumented |
| 535 | Method | upnp_init | Undocumented |
Inherited from Loggable:
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 79 | Method | logFunction | Overridable log function. Default just returns passed message. |
| 90 | Method | critical | Undocumented |
| 96 | Method | msg | Undocumented |
Inherited from Loggable (via Loggable):
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 650 | Method | error | Log an error. By default this will also raise an exception. |
| 657 | Method | warning | Log a warning. Used for non-fatal problems. |
| 664 | Method | info | Log an informational message. Used for normal operation. |
| 671 | Method | debug | Log a debug message. Used for debugging. |
| 678 | Method | log | Log a log message. Used for debugging recurring events. |
| 685 | Method | doLog | Log a message at the given level, with the possibility of going |
| 709 | Method | warningFailure | Log a warning about a Twisted Failure. Useful as an errback handler: |
| 730 | Method | logObjectName | Overridable object name function. |
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 355 | Method | __init__ | Undocumented |
| 90 | Method | critical | Undocumented |
| 671 | Method | debug | Log a debug message. Used for debugging. |
| 685 | Method | doLog | Log a message at the given level, with the possibility of going |
| 650 | Method | error | Log an error. By default this will also raise an exception. |
| 495 | Method | get_album_covers | Undocumented |
| 517 | Method | get_by_id | Undocumented |
| 390 | Method | get_music_files | Undocumented |
| 664 | Method | info | Log an informational message. Used for normal operation. |
| 678 | Method | log | Log a log message. Used for debugging recurring events. |
| 79 | Method | logFunction | Overridable log function. Default just returns passed message. |
| 730 | Method | logObjectName | Overridable object name function. |
| 96 | Method | msg | Undocumented |
| 458 | Method | show_albums | Undocumented |
| 462 | Method | show_artists | Undocumented |
| 452 | Method | show_db | Undocumented |
| 466 | Method | show_tracks_by_artist | artist = self.db.query(Artist,Artist.name == artist_name) |
| 482 | Method | show_tracks_by_title | Undocumented |
| 486 | Method | show_tracks_to_filename | Undocumented |
| 535 | Method | upnp_init | Undocumented |
| 379 | Method | walk | Undocumented |
| 657 | Method | warning | Log a warning. Used for non-fatal problems. |
| 709 | Method | warningFailure | Log a warning about a Twisted Failure. Useful as an errback handler: |
artist = self.db.query(Artist,Artist.name == artist_name)
artist = list(artist)[0]
for album in list(self.db.query(Album, Album.artist == artist)):
for track in list(self.db.query(Track, Track.album == album,sort=Track.title.ascending)):
print track