aboutsummaryrefslogtreecommitdiffstats
path: root/src/DirectorySave.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-10-21DirectorySave: use Directory::GetName()Max Kellermann1-4/+1
2013-10-21util/NumberParser: utilities for parsing numbers from ASCII stringsMax Kellermann1-2/+2
2013-10-19*: use references instead of pointersMax Kellermann1-18/+18
2013-10-19*: use nullptr instead of NULLMax Kellermann1-11/+11
2013-10-02Listen, ...: add missing includesMax Kellermann1-0/+2
2013-09-04util/Error: new error passing libraryMax Kellermann1-23/+15
Replaces GLib's GError.
2013-07-28song: convert header to C++Max Kellermann1-3/+3
2013-01-03TextFile: convert to a classMax Kellermann1-15/+12
2013-01-03text_file: convert to C++Max Kellermann1-4/+1
2013-01-03PlaylistVector: use std::listMax Kellermann1-2/+2
2013-01-03Directory: rename struct directory to DirectoryMax Kellermann1-7/+7
2013-01-02Directory: turn functions to methodsMax Kellermann1-14/+12
2013-01-02Directory: make the header C++ onlyMax Kellermann1-1/+1
2013-01-02db_save, state_file: convert to C++Max Kellermann1-5/+8
2012-02-13directory.h: move DIRECTORY_DIR to directory_save.cMax Kellermann1-0/+1
2012-01-24directory: replace songvec with doubly linked listMax Kellermann1-1/+3
2012-01-24directory: add function directory_get_song(), ...Max Kellermann1-2/+2
Wrap songvec_find() and other songvec methods.
2012-01-24directory: replace dirvec with doubly linked listMax Kellermann1-5/+2
Random access is not needed, and a linked list is easier to manage: we don't need to (re-)allocate the pointer array.
2012-01-24directory: simplify constructors and clarify API documentationMax Kellermann1-15/+5
Pass only the "name" to a directory, instead of the full (relative) path.
2011-09-10directory_save: pass const pointer to _save()Max Kellermann1-3/+3
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-07-25directory_save: duplicate the playlist nameMax Kellermann1-2/+9
The function playlist_metadata_load() will overwrite the input buffer before using the "name" parameter; since "name" points to the same buffer, we'll get a corrupted string.
2010-07-21update: store playlist files in databaseMax Kellermann1-0/+9
Don't open the music directory for each "lsinfo" call. Get the list of playlist files from the memory database.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-11-12include config.h in all sourcesMax Kellermann1-0/+1
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
2009-11-07database: I/O error handling in db_save()Max Kellermann1-17/+12
Check ferror() instead of the fprintf() return value.
2009-11-01song_save: load one song at a timeMax Kellermann1-5/+15
Changed songvec_load() to song_load(). Added start and end markers for each song. Removed the "key" line, it's redundant.
2009-11-01directory_save: partially revert the g_str_has_prefix() patchMax Kellermann1-2/+2
2009-11-01database: use strcmp() instead of g_str_has_prefix()Max Kellermann1-3/+3
2009-11-01text_file: allocate line buffers dynamicallyMax Kellermann1-22/+23
Use a single GString buffer object in all functions loading the database. Enlarge it automatically for long lines. This eliminates the maximum line length for tag values. There is still an upper limit of 512 kB to prevent denial of service, but that's reasonable I guess.
2009-11-01directory_save: allocate directory object earlier, assign mtimeMax Kellermann1-12/+13
Allocate the directory object after the "directory:" line. Assign the mtime from the input file to this new object, instead of to the parent directory.
2009-11-01directory_save: free directory on errorMax Kellermann1-1/+3
Fix a minor memory leak in the error handler.
2009-11-01directory_save: abort on duplicate subdirectoryMax Kellermann1-7/+9
The old code tried to recover, but what's the point of that? If a directory is duplicate, something is wrong with the database file.
2009-11-01directory_save: moved code to directory_load_subdir()Max Kellermann1-49/+63
2009-07-05song_save: use GError for error handlingMax Kellermann1-1/+4
2009-07-05song_save: no CamelCaseMax Kellermann1-1/+1
Renamed functions.
2009-03-13all: Update copyright header.Avuton Olrich1-6/+7
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-03-02directory: directory_load() returns GErrorMax Kellermann1-16/+43
Do error reporting with GLib's GError library in this library, too.
2009-02-28directory: added "mtime" propertyMax Kellermann1-2/+9
Remember the modification time of each directory. This is important for archives (which are virtual directories right now), but may also be useful for an automatic update mechanism.
2009-02-27directory: moved DIRECTORY_* string constantsMax Kellermann1-0/+4
Moved some of them to to directory_save.c, and others to database.c.
2009-01-04directory: added directory_is_root()Max Kellermann1-2/+2
directory_is_root() is cheaper than isRootDirectory(directory_get_path()).
2009-01-03don't include utils.h when it isn't usedMax Kellermann1-1/+0
2008-12-29removed os_compat.hMax Kellermann1-0/+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-28utils: removed myFgets()Max Kellermann1-4/+6
Replaced myFgets() with fgets() + g_strchomp().
2008-10-28utils: use g_str_has_prefix() instead of prefixcmp()Max Kellermann1-6/+6
Remove duplicated code from MPD.
2008-10-20path: replaced mpd_basename() with g_path_get_basename()Max Kellermann1-1/+4
GLib's g_path_get_basename() is much more reliable than mpd_basename(). The latter could be tricked into an assertion failure.
2008-10-09directory: don't query database during loadMax Kellermann1-2/+2
Don't use db_get_directory() and traverse the full path with every directory being loaded. Just see if the current parent contains the entry. Everything else would be invalid anyway..
2008-10-09directory: check the absolute path of a subdirectory while loadingMax Kellermann1-0/+4
A manipulated database could trigger an assertion failure, because the parent didn't match. Do a proper check if the new directory is within the parent's. This uses FATAL() to bail out, so MPD still dies, but it doesn't crash.
2008-10-09directory: moved dirvec struct declaration to dirvec.hMax Kellermann1-1/+0
No idea why it was created in directory.h, but it should be in dirvec.h.
2008-10-09diretory: moved code to directory_save.c, directory_print.cMax Kellermann1-137/+1
Remove clutter from directory.c. Everything which saves or loads to/from the hard disk goes to directory_save.c, and code which sends directory information to the client is moved into directory_print.c.