aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fs/io/TextFile: add method Check()Max Kellermann2014-08-112-0/+16
|
* fs/io/Reader: add "nonnull" attributeMax Kellermann2014-08-111-0/+1
|
* fs/io/TextFile: use AutoGunzipReaderMax Kellermann2014-08-112-1/+23
| | | | | Several MPD subsystems can now read gzipped files; for example, the database file can be gzipped.
* fs/io/AutoGunzipReader: new classMax Kellermann2014-08-112-0/+121
|
* fs/io/PeekReader: new utility classMax Kellermann2014-08-112-0/+112
|
* fs/io/GzipOutputStream,GunzipReader: move zlib_domain to src/lib/zlib/Domain.cxxMax Kellermann2014-08-114-8/+2
|
* input/GunzipInputStream: new classMax Kellermann2014-08-082-0/+171
|
* fs/io/BufferedReader: new class to replace class TextFileMax Kellermann2014-08-075-58/+179
| | | | | | | The new class is pluggable, to prepare for gzipped database files. For now, the TextFile class remains, and will be refactored away later.
* fs/io/Reader: new interfaceMax Kellermann2014-08-073-0/+216
|
* fs/output, fs/TextFile: move to fs/io/Max Kellermann2014-08-0711-1/+1
|
* fs/output/FileOutputStream: use open_cloexec()Max Kellermann2014-08-071-3/+4
| | | | Support operating systems that don't have O_CLOEXEC.
* util/StringUtil: add StripRight() overload with "end" argumentMax Kellermann2014-08-071-4/+1
|
* util/StringUtil: rename strchug_fast() to StripLeft()Max Kellermann2014-08-071-3/+3
|
* fs/StandardDirectory: pass writable string to ParseConfigLine()Max Kellermann2014-08-071-8/+10
| | | | Eliminate the std::string overhead.
* fs/GzipOutputStream: new class wrapping zlibMax Kellermann2014-08-062-0/+177
|
* fs/OutputStream: new infrastructure for writing to filesMax Kellermann2014-07-306-0/+499
|
* fs/StandardDirectory: look for cache dir in environment, not user-dirsMantas Mikulėnas2014-07-111-3/+15
| | | | | The XDG cache directory is part of the "base directories" spec like $XDG_CONFIG_HOME, not "user directories".
* fs/StandardDirectory: add GetUserCacheDir()Max Kellermann2014-03-012-0/+21
| | | | | | Move code from CreateConfiguredDatabase() and add XDG support. This implements an automatic Linux fallback for the setting "db_file" if none was specified.
* java/File: add method ToAbsolutePath() returning AllocatedPathMax Kellermann2014-03-011-7/+1
|
* Android: obtain music directory from ↵Max Kellermann2014-03-011-1/+14
| | | | Environment.getExternalStoragePublicDirectory()
* fs/Charset: use "UTF-8" instead of "utf-8" as the default valueMax Kellermann2014-02-231-2/+2
| | | | The upper-case name seems to be the canonical one.
* fs/TextFile: use custom allocation instead of GStringMax Kellermann2014-02-172-24/+29
|
* fs/Charset: disable if GLib is disabledMax Kellermann2014-02-173-2/+31
|
* Mapper: move check_directory() to the filesystem libraryMax Kellermann2014-02-072-0/+96
|
* fs/Traits: add function Relative()Max Kellermann2014-02-074-23/+61
| | | | Move code from Path::RelativeFS() and make it generic.
* fs/AllocatedPath: add conversion constructor from PathMax Kellermann2014-01-301-0/+2
|
* fs/DirectoryReader: GetEntry() returns Path, not AllocatedPathMax Kellermann2014-01-301-3/+3
| | | | Reduce overhead, don't duplicate the string.
* fs/AllocatedPath: add Build() overlays with Path argumentsMax Kellermann2014-01-301-0/+10
|
* Config*: move to config/Max Kellermann2014-01-241-1/+1
|
* copyright year 2014Max Kellermann2014-01-1320-20/+20
|
* fs: implemented standard directories APIDenis Krjuchkov2013-12-082-0/+358
|
* TextFile: move to fs subsystemDenis Krjuchkov2013-12-082-0/+138
|
* fs/FileSystem.hxx: don't define CheckAccess() with mode on WindowsDenis Krjuchkov2013-12-051-8/+2
|
* fs/FileSystem.hxx: add CheckAccess without mode parameterDenis Krjuchkov2013-12-051-0/+14
|
* fs/Traits.cxx: don't return drive path without trailing separatorDenis Krjuchkov2013-12-051-0/+4
|
* fs/Traits.hxx: introduce PathTraitsXXX::IsDrive functionDenis Krjuchkov2013-12-051-2/+16
|
* fs/Charset.cxx: replace \ with / when converting path to UTF-8 on WindowsDenis Krjuchkov2013-12-051-3/+24
|
* fs/Traits.hxx: add shorter forms of PathTraitsXXX::Build()Denis Krjuchkov2013-12-051-0/+10
|
* fs/Traits.hxx: add PathTraitsUTF8::GetLength for consistencyDenis Krjuchkov2013-12-051-0/+5
|
* fs/AllocatedPath.cxx: don't use g_path_get_dirnameDenis Krjuchkov2013-12-051-1/+1
|
* fs/Traits: implement GetBase/GetParent/Build using templatesDenis Krjuchkov2013-12-052-22/+88
|
* fs/Traits.cxx: don't return empty string if parent dir is rootDenis Krjuchkov2013-12-051-3/+5
|
* fs/Traits.hxx: add FindLastSeparator function to PathTraitsXXXDenis Krjuchkov2013-12-051-0/+19
|
* fs/Traits: improve compatibility between PathTraitsFS and PathTraitsUTF8Denis Krjuchkov2013-12-052-9/+14
|
* fs/Traits.hxx: add gcc_nonnull_all where applicableDenis Krjuchkov2013-12-051-3/+3
|
* fs/Traits: split PathTraits type into PathTraitsFS and PathTraitsUTF8Denis Krjuchkov2013-12-057-66/+71
|
* AllocatedPath.hxx: use move constructorDenis Krjuchkov2013-12-031-1/+1
|
* fs/AllocatedPath: use PathTraits::BuildFSDenis Krjuchkov2013-12-032-10/+14
|
* fs/Traits.hxx: implement BuildFS() methodDenis Krjuchkov2013-12-032-0/+35
|
* fs/Traits.hxx: move definition of AllocatedPath::string to PathTraitsDenis Krjuchkov2013-12-032-2/+2
|