summaryrefslogtreecommitdiff
path: root/src/db/update/Editor.cxx
AgeCommit message (Collapse)Author
2021-01-01copyright year 2021Max Kellermann
2020-04-02db/simple/Directory: pass std::string_view to several methodsMax Kellermann
2020-03-12replace assert.h with cassertRosen Penev
The former was deprecated with C++14. According to the C++11 and C++17 standards, both files are identical. Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-01-18copyright year 2020Max Kellermann
2019-09-05db/simple/Directory: RemoveSong() returns SongPtrMax Kellermann
2019-09-04db/simple/Song: make "parent" a reference, not a pointerMax Kellermann
2019-09-03db/simple/Song: convert "uri" to a std::stringMax Kellermann
No longer allocate it as a "VarSize". This used to be a clever trick to save memory 10 years ago, but these days, keeping the code maintainable seems more important than saving a few kilobytes of memory.
2019-06-17Copyright year 2019Max Kellermann
2018-11-19check.h: remove obsolete headerMax Kellermann
Since we switched from autotools to Meson in commit 94592c14062d5afc9482d11baa401648082022c0, we don't need to include `config.h` early to properly enable large file support. Meson passes the required macros on the compiler command line instead of defining them in `config.h`. This means we can include `config.h` at any time, whenever we want to check its macros, and there are no ordering constraints.
2018-10-31*: copyright year 2018Max Kellermann
2017-01-03update copyright yearMax Kellermann
2016-03-18db/update/Remove: pass URI to Remove()Max Kellermann
2016-03-01*: include cleanup (using iwyu)Max Kellermann
2016-02-26update copyright year to 2016Max Kellermann
2015-12-16db/DatabaseLock: add class ScopeDatabaseUnlockMax Kellermann
2015-12-16db/simple: use class ScopeDatabaseLockMax Kellermann
2015-01-01Copyright year 2015Max Kellermann
2014-06-16db/simple: use class boost::intrusive::listMax Kellermann
Remove the C list_head library and use type-safe C++ instead.
2014-02-26db/simple: create dedicated directoryMax Kellermann
2014-01-31db/update/Editor: add locking method variantsMax Kellermann
2014-01-30db/update: convert to OO APIMax Kellermann
Move global variables into the new classes. That may allow multiple update threads for multiple databases one day.