Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-02-06 | fs/io/FileOutputStream: don't auto-delete file on WIN32 | Max Kellermann | 1 | -0/+2 | |
The file handle is never reset to INVALID_HANDLE_VALUE, and thus the destructor will assume the operation shall be cancelled and will delete the temporary file. This was a major breakage for saving the database file and the state file. | |||||
2014-08-30 | *: add missing Compiler.h includes | Max Kellermann | 7 | -0/+7 | |
Necessary for "final" on gcc 4.6. | |||||
2014-08-11 | fs/io/TextFile: add method Check() | Max Kellermann | 2 | -0/+16 | |
2014-08-11 | fs/io/Reader: add "nonnull" attribute | Max Kellermann | 1 | -0/+1 | |
2014-08-11 | fs/io/TextFile: use AutoGunzipReader | Max Kellermann | 2 | -1/+23 | |
Several MPD subsystems can now read gzipped files; for example, the database file can be gzipped. | |||||
2014-08-11 | fs/io/AutoGunzipReader: new class | Max Kellermann | 2 | -0/+121 | |
2014-08-11 | fs/io/PeekReader: new utility class | Max Kellermann | 2 | -0/+112 | |
2014-08-11 | fs/io/GzipOutputStream,GunzipReader: move zlib_domain to src/lib/zlib/Domain.cxx | Max Kellermann | 4 | -8/+2 | |
2014-08-08 | input/GunzipInputStream: new class | Max Kellermann | 2 | -0/+171 | |
2014-08-07 | fs/io/BufferedReader: new class to replace class TextFile | Max Kellermann | 4 | -57/+177 | |
The new class is pluggable, to prepare for gzipped database files. For now, the TextFile class remains, and will be refactored away later. | |||||
2014-08-07 | fs/io/Reader: new interface | Max Kellermann | 3 | -0/+216 | |
2014-08-07 | fs/output, fs/TextFile: move to fs/io/ | Max Kellermann | 10 | -0/+820 | |