aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-03Add sticker list command.Eric Wollesen1-1/+29
[mk: merged memory leak patch; fixed indentation (tabs); fixed documentation typo]
2009-02-27tag: no CamelCaseMax Kellermann1-1/+1
Renamed numOfItems to num_items.
2009-02-25ls: moved generic URI utilities to uri.cMax Kellermann1-0/+1
"ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later.
2009-02-13added the shufflerange commandRomain Bignon1-2/+7
This command shuffles a range of songs.
2009-02-11audio: moved code to output_command.cMax Kellermann1-9/+13
The output_command library provides a command interface to the audio outputs. It assumes the input comes from an untrusted source (i.e. the client) and verifies all parameters.
2009-02-10audio: moved protocol code to output_print.cMax Kellermann1-0/+1
2009-02-09playlist: provide information about "next song"Vladimir S Eremin1-0/+10
In random mode, this patch allows clients to see the "next song" in the queue.
2009-02-04playlist_save: added spl_save_playlist()Max Kellermann1-1/+1
spl_save_playlist() is a wrapper for spl_save_queue().
2009-02-04playlist_print: added wrappers for printing the queueMax Kellermann1-31/+13
Hide the details of the playlist behind wrapper functions.
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.