aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-04playlist_print: use bool instead of intMax Kellermann1-8/+12
Return true on success, instead of 0. Converted the "detail" parameter to bool.
2009-02-04playlist_print: no CamelCaseMax Kellermann1-2/+2
Renamed one function.
2009-02-04playlist: renamed global "playlist" variable to "g_playlist"Max Kellermann1-40/+41
Export the "g_playlist" variable, and pass it to all playlist functions. This way, we can split playlist.c easier into separate parts. The code which initializes the singleton variable is moved to playlist_global.c.
2009-01-25playlist: moved savePlaylist() and loadPlaylsit() to playlist_save.cMax Kellermann1-2/+3
2009-01-24queue_print, dbUtils: use struct locate_item_listMax Kellermann1-7/+6
Changed the function prototypes to get locate_item_list objects instead of num_items/items.
2009-01-24locate: added struct locate_item_listMax Kellermann1-48/+53
Instead of passing two parameters around (number of items, array of items), combine both in a variable size struct.
2009-01-24locate: no CamelCaseMax Kellermann1-14/+14
Renamed functions and variables.
2009-01-24playlist: removed locate functions to queue_print.cMax Kellermann1-2/+2
Now playlist.c does not contain any protocol specific code anymore.
2009-01-24locate: renamed LocateTagItem to "struct locate_item"Max Kellermann1-9/+7
No CamelCase and no typedefs.
2009-01-24command: use queue_print_*()Max Kellermann1-15/+43
Replaced several wrapper functions from playlist.c, and make command.c use the queue print functions directly.
2009-01-24command: eliminate gcc warningLaszlo Ashin1-1/+1
Argument cmd of function command_available() is not used if mpd was configured without sqlite.
2009-01-23commands: don't advertise "sticker" unless configuredMax Kellermann1-1/+13
In the return value of the "commands" command, don't list the "sticker" command if no sticker file is configured.
2009-01-23playlist: moved PlaylistInfo() to playlist_print.cMax Kellermann1-0/+1
PlaylistInfo() (notice the capital 'P') sends a stored playlist to the client. Move it to a separate library, where all the code which glues the playlist and the MPD protocol together will live.
2009-01-23playlist: removed stopOnError flag from playPlaylist()Max Kellermann1-2/+2
All callers pass false. Don't bother to collect that parameter.
2009-01-21command: don't restart player in the "status" commandMax Kellermann1-1/+0
Don't attempt to restart the player if it was stopped, but there were still songs left on the playlist. This looks like it has been a workaround for a bug which has been fixed long time ago.
2009-01-20Add space after sticker: to make it consistent.Qball Cow1-1/+1
2009-01-19command: added "sticker" commandMax Kellermann1-0/+72
The "sticker" command allows clients to query or manipulate the sticker database. This patch implements the sub-commands "get" and "set"; more will follow soon (enumeration), as well as extended "lsinfo" / "playlistinfo" versions.
2009-01-18mapper: make the playlist directory optionalMax Kellermann1-0/+5
2009-01-18stats: no CamelCaseMax Kellermann1-1/+1
Renamed functions and types.
2009-01-11command: restore the "playlistinfo -1" behaviorMax Kellermann1-0/+8
If a range is "-1", display the whole list. This behavior is undocumented, but some clients rely on it.
2009-01-10playlist: pass unsigned integers to playlistInfo()Max Kellermann1-10/+26
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-4/+5
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-10command: add a parser for range argumentsThomas Jansen1-0/+48
A range argument looks like start[:end] and is used to specify the entries of a list that should be returned (rather than the whole list).
2009-01-08added missing explicit config.h includesMax Kellermann1-0/+1
2009-01-04playlist: log errors during loadPlaylist()Max Kellermann1-1/+1
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-04ls: renamed functions, no CamelCaseMax Kellermann1-4/+4
2009-01-04command: check URI scheme in "addid"Max Kellermann1-12/+22
Check if the URI scheme is supported by MPD, and print an error message if not. Optimize the checks in "add" and "playlistadd".
2009-01-04command: added variable "uri" to command handlersMax Kellermann1-20/+24
Don't work with argv[1], give it the better name "uri".
2009-01-03don't include utils.h when it isn't usedMax Kellermann1-1/+2
2009-01-03command: fix adding local files on !WIN32Max Kellermann1-1/+5
Due to a typo, adding local files was always denied. Disable the second playlist_append_file() invocation on WIN32.
2008-12-31Moving mixers to audio outputsViliam Mateicka1-3/+3
2008-12-30command: don't allow adding local files on WIN32Max Kellermann1-0/+4
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-29removed os_compat.hMax Kellermann1-1/+3
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
2008-12-29command: use gmtime() on WIN32Max Kellermann1-1/+8
gmtime_r() is not available.
2008-12-16command: reject unsupported URI schemesMax Kellermann1-1/+11
When a client-specified URI has a scheme which is not supported, do not try to open it as a local file, but provide a meaningful error message.
2008-12-16ls: make printRemoteUrlHandlers() return voidMax Kellermann1-1/+2
printRemoteUrlHandlers() cannot fail, and does not need a return value.
2008-12-02replaced mpd_printf etc by G_GNUC_PRINTFThomas Jansen1-4/+4
We want to remove gcc.h eventually. This takes care of all the G_GNUC_PRINTF macros.
2008-11-24command.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-63/+63
2008-11-22command: format strerror() with "%s"Max Kellermann1-1/+1
We shouldn't pass strerror() where a format string is expected.
2008-11-22command: allow clients to subscribe to specific idle eventsMarc Pavot1-2/+23
The client may provide the names of idle events as arguments to the "idle" command to inform MPD that it is only interested in these events.
2008-10-31path: removed sanitizePathDup()Max Kellermann1-4/+2
We don't need to sanitize the path, because the mapper already checks for malformed paths.
2008-10-31client: use GSList instead of struct strnode for command listsMax Kellermann1-7/+6
Replace a custom data structure with a GLib one.
2008-10-26command: removed range check from check_bool()Max Kellermann1-6/+0
check_bool() accepts only "0" or "1". The range check is superfluous.
2008-10-23command: fix boolean value parserMax Kellermann1-1/+1
Due to a logic error, no value was valid for the boolean value parser. Replace "||" with "&&".
2008-10-23stored_playlist: renamed and moved spl_delete() to stored_playlist.cMax Kellermann1-1/+1
The function deletePlaylist() shouldn't be in playlist.c.
2008-10-23command: check over/underflows in check_int()Max Kellermann1-2/+13
The "long" result of strtol() was implicitly casted down to a 32 bit integer. Add some range checking instead.
2008-10-23command: added check_unsigned() / check_bool()Max Kellermann1-13/+57
Many command arguments must not be negative; add a separate parser/checker function for that. For the same reason, add check_bool(). This eliminates two strange special cases handlers from check_int().
2008-10-23playlist: unsigned integersMax Kellermann1-3/+3
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-22command: use the bool datatype instead of intMax Kellermann1-50/+51
Instead of returning 0 for success and -1 for failure, return true or false. This seems more natural.