summaryrefslogtreecommitdiff
path: root/src/input/TextInputStream.cxx
AgeCommit message (Collapse)Author
2016-02-21playlist/Plugin: pass InputStreamPtr&& to open_stream()Max Kellermann
Obsolete class CloseSongEnumerator, which was a kludge.
2015-01-01Copyright year 2015Max Kellermann
2014-10-28TextInputStream: don't ignore unterminated last lineMax Kellermann
2014-10-19TextInputStream: manually shift the buffer before readingMax Kellermann
Fixes truncated lines in m3u and cue files (regression by commit 67958f7).
2014-08-07input/TextInputStream: move ReadBufferedLine() to util/TextFile.hxxMax Kellermann
2014-08-07TextInputStream: don't stripMax Kellermann
Let the caller decide whether to strip. Only remove \n and \r (end-of-line markers).
2014-08-07TextInputStream: move code to ReadBufferedLine()Max Kellermann
Look at the buffer first, before trying to read from the file. This reduces overhead because we don't refill the buffer after every line.
2014-08-07util/StringUtil: add StripRight() overload with "end" argumentMax Kellermann
2014-08-07util/CharUtil: add IsWhitespaceFast()Max Kellermann
2014-08-07input/TextInputStream: return char*Max Kellermann
Revert to the old API before commit e9e55b08, removing unnecessary bloat.
2014-03-01util/{Const,Writable}Buffer: add operator[]Max Kellermann
2014-01-24Input*: move to input/Max Kellermann