aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-01-18mapper: make the playlist directory optionalMax Kellermann1-0/+3
2009-01-17conf: use config_get_bool() instead of getBoolConfigParam()Max Kellermann1-7/+3
2009-01-17conf: no CamelCase, part IMax Kellermann1-2/+2
Renamed functions, types, variables.
2009-01-16playlist: don't store getBoolConfigParam() in a boolMax Kellermann1-3/+5
getBoolConfigParam() returns an int. It is not possible to check for CONF_BOOL_UNSET after it has been assigned to a bool; use a temporary int value for that.
2009-01-14playlist: safely search the playlist for deleted songMax Kellermann1-1/+1
When a song file is deleted during database update, all pointers to it must be removed from the playlist. The "for" loop in deleteASongFromPlaylist() did not deal with multiple copies of the deleted song properly, and left instances of the (to-be-invalidated) pointer in. Fix this by reversing the loop.
2009-01-13playlist: implement Fisher-Yates shuffle properlyMax Kellermann1-2/+2
MPD's shuffling algorithm was not implemented well: it considers songs which were already swapped, making it somewhat non-random. Fix the Fisher-Yates shuffle algorithm by passing the proper bounds to the PRNG.
2009-01-10playlist: pass unsigned integers to playlistInfo()Max Kellermann1-14/+6
A song index cannot be negative. Also require the second parameter to be valid.
2009-01-10playlist: exclude end of rangeMax Kellermann1-1/+1
In a range "start:end", "end" itself should not be included. Use the same semantics as other languages implementing ranges, e.g. Python.
2009-01-10command: playlistinfo now uses a range argument rather than just a song idThomas Jansen1-1/+6
Loosely based on a patch provided by lesion in bug #1766. The playlistinfo command can now retrieve ranges of the playlist. The new argument indicates which entry is the last one that will be displayed. The number of displayed entries may be smaller than expected if the end of the playlist is reached. Previous usage: playlistinfo [start] New usage: playlistinfo [start[:end]]
2009-01-04song: allocate the result of song_get_url()Max Kellermann1-24/+28
2009-01-04playlist: log errors during loadPlaylist()Max Kellermann1-3/+2
Don't call command_error() if loading a song from the playlist fails. This may result in assertion failures, since command_error() may be called more than once.
2009-01-04playlist: use GLib loggingMax Kellermann1-21/+19
2009-01-04playlist: use uri_has_scheme() instead of isRemoteUrl()Max Kellermann1-1/+1
For internal checks (i.e. not in command.c), we need to check whether an URI is in the databse, in the local file system or a remote URI with a scheme.
2009-01-03state_file: errors are non-fatal in read_state_file()Max Kellermann1-12/+20
If the state file cannot be read, for whatever reason, don't abort MPD. The state file isn't _that_ important.
2009-01-02list: removed linked list libraryMax Kellermann1-1/+0
It's been superseded by GLib's GSList.
2009-01-02playlist: use GLib instead of utils.hMax Kellermann1-11/+15
2009-01-01playlist: use g_file_test() instead of stat()Max Kellermann1-2/+1
To find out whether a file exists, use g_file_test() instead of stat(), because it is more portable and easier to use.
2009-01-01mapper: allocate playlist path from heapMax Kellermann1-4/+6
Don't pass a static buffer to map_spl_utf8_to_fs().
2008-12-30command: don't allow adding local files on WIN32Max Kellermann1-0/+2
There are no unix sockets on WIN32, and therefore no authentication. WIN32 might have similar capabilities, but until we implement them, disable that MPD feature.
2008-12-30playlist: use GLib's random number generatorMax Kellermann1-7/+10
srandom() and random() are not portable. Use GLib's implementation.
2008-12-29removed os_compat.hMax Kellermann1-1/+6
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
2008-12-28utils: removed myFgets()Max Kellermann1-4/+9
Replaced myFgets() with fgets() + g_strchomp().
2008-12-17playlist: clear pc.errored_song on deleteMax Kellermann1-2/+8
When a (remote) song is deleted from the playlist, there may still be a reference to it in pc.errored_song. Clear this reference.
2008-12-16ls: removed isValidRemoteUtf8Url()Max Kellermann1-1/+1
The function didn't do anything useful, it was just several lines obfuscating that it was only forwarding isRemoteUrl()'s return value.
2008-11-12playlist: call clearPlayerQueue() only if song is queued IIMax Kellermann1-14/+10
This patch extends commit 35a16b99, and amends several 2 missing checks. It simplifies 2 more checks by merging "if" conditions.
2008-11-11playlist: track song metadata changesMax Kellermann1-12/+9
When the tag of the current song changes (e.g. a new tag was sent in the stream), update the playlist, so clients pick up the new tag.
2008-10-31path: moved playlist_dir to mapper.cMax Kellermann1-3/+4
Added the function map_spl_utf8_to_fs() which replaces utf8_to_fs_playlist_path().
2008-10-28utils: use g_str_has_prefix() instead of prefixcmp()Max Kellermann1-8/+8
Remove duplicated code from MPD.
2008-10-23stored_playlist: renamed and moved spl_delete() to stored_playlist.cMax Kellermann1-14/+0
The function deletePlaylist() shouldn't be in playlist.c.
2008-10-23stored_playlist: spl_load() returns GPtrArrayMax Kellermann1-16/+9
Don't use our deprecated linked list library, use GLib's GPtrArray instead.
2008-10-23playlist: unsigned integersMax Kellermann1-129/+110
There are some integers which have a "magic" -1 value which means "undefined" or "nothing". All others can be converted to unsigned, since they must not contain a negative number.
2008-10-22stored_playlist: moved functions from playlist.cMax Kellermann1-28/+0
The two functions clearStoredPlaylist() and addToStoredPlaylist() don't belong into playlist.c. clearStoredPlaylist() was a wrapper for spl_clear(), and is converted into a CPP macro for now.
2008-10-22stored_playlist: no CamelCaseMax Kellermann1-5/+5
Renamed all public functions, prefix is "spl_".
2008-10-22renamed storedPlaylist.c to stored_playlist.cMax Kellermann1-1/+1
No CamelCase in file names.
2008-10-15playlist: also allow world-readable local filesMax Kellermann1-1/+1
Allow a local user to not only add his own files, but also all world-readable files (mode 0444).
2008-10-15playlist: added support for adding songs not in the music databaseMax Kellermann1-0/+26
Clients which have authenticated via unix socket may add local files to the MPD playlist, provided that they own the file.
2008-10-15playlist: moved code to song_by_url()Max Kellermann1-4/+17
Replace some complicated checks from addToPlaylist() to the simpler function song_by_url().
2008-10-15song: added song_in_database()Max Kellermann1-8/+7
Some functions assume that a song is not in the database when it is a remote song. Based on that, they decide whether they are responsible for freeing the song struct. Add a special function which checks whether a song is in the database (currently equal to song_is_file()).
2008-10-15locate: use g_utf8_casefold() instead of string_toupper()Max Kellermann1-2/+4
string_toupper() and strDupToUpper() were not able to deal with character sets other than US-ASCII. Use GLib's g_utf8_casefold() for strings.
2008-10-14command: added command "idle"Max Kellermann1-0/+10
"idle" waits until something noteworthy happens on the server, e.g. song change, playlist modified, database updated. This allows clients to keep up to date without polling.
2008-10-14mapper: new song-to-filesystem mapper libraryMax Kellermann1-0/+1
The mapper library maps directory and song objects to file system paths. With this central library, the code mixture in path.c should be cleaned up, and we will be able to add neat features like aliasing.
2008-10-14playlist: moved code to playlist_save.cMax Kellermann1-12/+3
playlist_print_song() and playlist_print_uri() handle charset conversion and (optional) music directory prefixing.
2008-10-13playlist: don't use isPlaylist() in deletePlaylist()Max Kellermann1-4/+3
The only caller of deletePlaylist() appends PLAYLIST_FILE_SUFFIX, so we can be sure it's already there. We don't need to stat the file, since unlink() does all the checking.
2008-10-12player: added commands QUEUE and CANCELMax Kellermann1-45/+4
QUEUE adds a new song to the player's queue. CANCEL clears the queue. These two commands replace the old and complex queueState and queueLockState code.
2008-10-12playlist: call clearPlayerQueue() only if song is queuedMax Kellermann1-23/+15
Simplify and merge several if clauses before the clearPlayerQueue() invocation. Call clearPlayerQueue() only if a song is actually queued; add an assertion for that in clearPlayerQueue().
2008-10-09database: renamed get_get_song() to db_get_song()Max Kellermann1-3/+3
Search'n'replace typo..
2008-10-08database: renamed functions, "db_" prefix and no CamelCaseMax Kellermann1-3/+3
Yet another CamelCase removal patch.
2008-10-08directory: moved code to database.cMax Kellermann1-1/+1
Taming the directory.c monster, part II: move the database management stuff to database. directory.c should only contain code which works on directory objects.
2008-10-08song: removed CamelCaseMax Kellermann1-16/+16
CamelCase is ugly... rename all functions.
2008-10-08song: replaced all song constructorsMax Kellermann1-2/+2
Provide separate constructors for creating a remote song, a local song, and one for loading data from a song file. This way, we can add more assertions.