summaryrefslogtreecommitdiff
path: root/src/input/plugins/ArchiveInputPlugin.cxx
AgeCommit message (Collapse)Author
2018-06-22input/Stream: remove attribute "cond", replace with handler interfaceMax Kellermann
This adds a bit of overhead, but also adds flexibility to the API, because arbitrary triggers may be invoked from that virtual method implementation, not just Cond::signal(). The motivation for this is to make the handlers more dynamic, for the upcoming buffering class utilizing ProxyInputStream.
2018-01-20input/{file,archive}: remove the dummy InputPlugin instancesMax Kellermann
These have no use, exception for creating an artificial dependency from input_plugins[] to all archive plugins.
2017-12-27archive/Plugin: return std::unique_ptr<ArchiveFile>Max Kellermann
2017-12-26archive/File, input/Plugin: return InputStreamPtrMax Kellermann
2017-12-22archive/File: eliminate Close(), make destructor virtual insteadMax Kellermann
2017-01-03update copyright yearMax Kellermann
2016-09-09archive/Plugin: migrate open() from class Error to C++ exceptionsMax Kellermann
2016-09-09input/Plugin: migrate open() from class Error to C++ exceptionsMax Kellermann
2016-09-09input/archive: use AtScopeExit() for exception-safetyMax Kellermann
2016-03-01*: include cleanup (using iwyu)Max Kellermann
2016-02-26update copyright year to 2016Max Kellermann
2015-01-01Copyright year 2015Max Kellermann
2014-10-02input/Open: use OpenLocalInputStream()Max Kellermann
Make the "open" method of plugins "file" and "archive" dummy methods that always fail. Instead, let InputStream::Open() hard-code access to these two plugins by using OpenLocalInputStream(). This allows simplifyin the algorithm for falling back to probing archive plugins.
2014-10-02input/archive: export function OpenArchiveInputStream()Max Kellermann
2014-05-11InputStream: make various methods abstractMax Kellermann
Replace InputPlugin attributes.
2014-05-11InputStream: add virtual destructorMax Kellermann
Replaces the method Close().
2014-02-08ArchivePlugin: pass Path to open()Max Kellermann
2014-02-08ArchivePlugin: rename struct archive_plugin to ArchivePluginMax Kellermann
2014-01-24Input*: move to input/Max Kellermann