summaryrefslogtreecommitdiff
path: root/src/fs/Path.cxx
AgeCommit message (Collapse)Author
2016-02-26update copyright year to 2016Max Kellermann
2015-03-05fs/Path: reimplement GetSuffix() using GetBase() and StringFindLast()Max Kellermann
2015-03-05fs/Path: use the "const_pointer" typedefMax Kellermann
2015-03-01fs/Path: add method GetSuffix()Max Kellermann
Type-safe wrapper for uri_get_suffix().
2015-01-01Copyright year 2015Max Kellermann
2014-02-07fs/Traits: add function Relative()Max Kellermann
Move code from Path::RelativeFS() and make it generic.
2014-01-13copyright year 2014Max Kellermann
2013-12-05fs/Traits: split PathTraits type into PathTraitsFS and PathTraitsUTF8Denis Krjuchkov
2013-10-17fs/Path: rename to AllocatedPathMax Kellermann
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object.
2013-10-17fs/Path: move definitions to struct PathTraitsMax Kellermann
2013-10-17fs/Path: move configuration code to Config.cxxMax Kellermann
2013-10-17fs/Path: move path_domain to Domain.hxxMax Kellermann
2013-10-17fs/Path: make fs_charset staticMax Kellermann
2013-10-17fs/Limits: convert macro to "constexpr"Max Kellermann
2013-10-17fs/Path: move MPD_PATH_MAX to Limits.hxxMax Kellermann
2013-10-15gcc.h: rename to Compiler.hMax Kellermann
2013-10-15*: use WIN32 instead of G_OS_WIN32Max Kellermann
2013-10-14fs/Path: add separator constants/functionsMax Kellermann
2013-10-14fs/Path: add method RelativeFS()Max Kellermann
Move code from map_fs_to_utf8().
2013-10-02Log: new logging library APIMax Kellermann
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-10-02filesystem/Path: use std::stringMax Kellermann
2013-09-12Path: add FromUTF8() overload that returns an ErrorMax Kellermann
2013-09-12ConfigPath: move path_domain to system/Path.cxxMax Kellermann
2013-09-05mpd_error.h: remove obsolete headerMax Kellermann
Migrate the remaining callers to FatalError().
2013-09-05conf.h: remove obsolete headerMax Kellermann
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-01-28Path::FromUTF8() returns nulled instance on error, add error handling where ↵Denis Krjuchkov
required
2013-01-28Path: convert remaining funcs to methods, keep fs_charset as std::stringDenis Krjuchkov
2013-01-28Path: merge utf8_to_fs_charset() into Path::FromUTF8()Denis Krjuchkov
2013-01-28Path: convert fs_charset_to_utf8() to static method Path::ToUTF8()Denis Krjuchkov
2013-01-28Path: introduce MPD_PATH_MAX_UTF8Denis Krjuchkov
2013-01-26Path: ToUTF() returns std::stringDenis Krjuchkov
2013-01-22Path: move to fs subdirectoryDenis Krjuchkov