Adding and deleting is mostly a question of manipulating the songs-table. The only extra work you have to do is to keep the current-song and current-idx in sync. For instance, whenever the playlist is empty, its current-idx will be zero, and the current-song will be the *empty-playlist-song*. If you add a song to an empty playlist, then the index of zero is now in bounds, and you should change the current-song to the newly added song. By the same token, when you’ve played all the songs in a playlist and current-song is *end-of-playlist-song*, adding a song should cause current-song to be reset. All this really means, though, is that you need to call update-current-if-necessary at the appropriate points.

    Adding songs to a playlist is a bit involved because of the way the Web interface communicates which songs to add. For reasons I’ll discuss in the next section, the Web interface code can’t just give you a simple set of criteria to use in selecting songs from the database. Instead, it gives you the name of a column and a list of values, and you’re supposed to add all the songs from the main database where the given column has a value in the list of values. Thus, to add the right songs, you need to first build a table object containing the desired values, which you can then use with an in query against the song database. So, add-songs looks like this:

    Deleting songs is a bit simpler; you just need to be able to delete songs from the songs-table that match particular criteria—either a particular song or all songs in a particular genre, by a particular artist, or from a particular album. So, you can provide a delete-songs function that takes keyword/value pairs, which are used to construct a matching :where clause you can pass to the delete-rows database function.

    1. (defun delete-songs (playlist &rest names-and-values)
    2. (delete-rows
    3. :from (songs-table playlist)
    4. :where (apply #'matching (songs-table playlist) names-and-values))
    5. (setf (current-idx playlist) (or (position-of-current playlist) 0))
    6. (update-current-if-necessary playlist))
    7. (defun position-of-current (playlist)
    8. (let* ((table (songs-table playlist))
    9. (matcher (matching table :file (file (current-song playlist))))
    10. (do-rows (row table)
    11. (when (funcall matcher row)
    12. (return-from position-of-current pos))
    13. (incf pos))))

    You can also provide a function to completely clear the playlist, which uses delete-all-rows and doesn’t have to worry about finding the current song since it has obviously been deleted. The call to update-current-if-necessary will take care of setting current-song to **NIL**.

    Sorting and shuffling the playlist are related in that the playlist is always either sorted or shuffled. The shuffle slot says whether the playlist should be shuffled and if so how. If it’s set to :none, then the playlist is ordered according to the value in the ordering slot. When shuffle is :song, the playlist will be randomly permuted. And when it’s set to :album, the list of albums is randomly permuted, but the songs within each album are listed in track order. Thus, the sort-playlist function, which will be called by the Web interface code whenever the user selects a new ordering, needs to set ordering to the desired ordering and set shuffle to :none before calling order-playlist, which actually does the sort. As in delete-songs, you need to use position-of-current to reset current-idx to the new location of the current song. However, this time you don’t need to call update-current-if-necessary since you know the current song is still in the table.

    1. (defun sort-playlist (playlist ordering)
    2. (setf (shuffle playlist) :none)
    3. (order-playlist playlist)
    4. (setf (current-idx playlist) (position-of-current playlist)))

    In order-playlist, you can use the database function sort-rows to actually perform the sort, passing a list of columns to sort by based on the value of ordering.

    1. (setf (shuffle playlist) shuffle)
    2. (case shuffle
    3. (:none (order-playlist playlist))
    4. (:song (shuffle-by-song playlist))
    5. (:album (shuffle-by-album playlist)))
    6. (setf (current-idx playlist) (position-of-current playlist)))
    7. (defun shuffle-by-song (playlist)
    8. (shuffle-table (songs-table playlist)))
    9. (defun shuffle-by-album (playlist)
    10. (let ((new-table (make-playlist-table)))
    11. (do-rows (song (songs-for-album playlist (column-value album-row :album)))
    12. (insert-row song new-table)))
    13. (setf (songs-table playlist) new-table)))
    14. (defun shuffled-album-names (playlist)
    15. (shuffle-table
    16. (select
    17. :columns :album
    18. :from (songs-table playlist)
    19. :distinct t)))
    20. (defun songs-for-album (playlist album)
    21. (select
    22. :from (songs-table playlist)
    23. :where (matching (songs-table playlist) :album album)
    24. :order-by :track))

    The last manipulation you need to support is setting the playlist’s repeat mode. Most of the time you don’t need to take any extra action when setting repeat--its value comes into play only in maybe-move-to-next-song. However, you need to update the current-song as a result of changing repeat in one situation, namely, if current-idx is at the end of a nonempty playlist and repeat is being changed to :song or :all. In that case, you want to continue playing, either repeating the last song or starting at the beginning of the playlist. So, you should define an :after method on the generic function .

    Now you have all the underlying bits you need. All that remains is the code that will provide a Web-based user interface for browsing the MP3 database and manipulating playlists. The interface will consist of three main functions defined with define-url-function: one for browsing the song database, one for viewing and manipulating a single playlist, and one for listing all the available playlists.

    But before you get to writing these three functions, you need to start with some helper functions and HTML macros that they’ll use.