EvalCache: Ignore SQLite errors

Fixes #3794.
This commit is contained in:
Eelco Dolstra 2020-07-14 15:17:38 +02:00
parent 832e111494
commit da3aea291d
2 changed files with 119 additions and 73 deletions

View file

@ -19,6 +19,8 @@ create table if not exists Attributes (
struct AttrDb struct AttrDb
{ {
std::atomic_bool failed{false};
struct State struct State
{ {
SQLite db; SQLite db;
@ -64,6 +66,7 @@ struct AttrDb
{ {
try { try {
auto state(_state->lock()); auto state(_state->lock());
if (!failed)
state->txn->commit(); state->txn->commit();
state->txn.reset(); state->txn.reset();
} catch (...) { } catch (...) {
@ -71,9 +74,24 @@ struct AttrDb
} }
} }
template<typename F>
AttrId doSQLite(F && fun)
{
if (failed) return 0;
try {
return fun();
} catch (SQLiteError &) {
ignoreException();
failed = true;
return 0;
}
}
AttrId setAttrs( AttrId setAttrs(
AttrKey key, AttrKey key,
const std::vector<Symbol> & attrs) const std::vector<Symbol> & attrs)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -94,12 +112,15 @@ struct AttrDb
(0, false).exec(); (0, false).exec();
return rowId; return rowId;
});
} }
AttrId setString( AttrId setString(
AttrKey key, AttrKey key,
std::string_view s, std::string_view s,
const char * * context = nullptr) const char * * context = nullptr)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -124,11 +145,14 @@ struct AttrDb
} }
return state->db.getLastInsertedRowId(); return state->db.getLastInsertedRowId();
});
} }
AttrId setBool( AttrId setBool(
AttrKey key, AttrKey key,
bool b) bool b)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -139,9 +163,12 @@ struct AttrDb
(b ? 1 : 0).exec(); (b ? 1 : 0).exec();
return state->db.getLastInsertedRowId(); return state->db.getLastInsertedRowId();
});
} }
AttrId setPlaceholder(AttrKey key) AttrId setPlaceholder(AttrKey key)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -152,9 +179,12 @@ struct AttrDb
(0, false).exec(); (0, false).exec();
return state->db.getLastInsertedRowId(); return state->db.getLastInsertedRowId();
});
} }
AttrId setMissing(AttrKey key) AttrId setMissing(AttrKey key)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -165,9 +195,12 @@ struct AttrDb
(0, false).exec(); (0, false).exec();
return state->db.getLastInsertedRowId(); return state->db.getLastInsertedRowId();
});
} }
AttrId setMisc(AttrKey key) AttrId setMisc(AttrKey key)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -178,9 +211,12 @@ struct AttrDb
(0, false).exec(); (0, false).exec();
return state->db.getLastInsertedRowId(); return state->db.getLastInsertedRowId();
});
} }
AttrId setFailed(AttrKey key) AttrId setFailed(AttrKey key)
{
return doSQLite([&]()
{ {
auto state(_state->lock()); auto state(_state->lock());
@ -191,6 +227,7 @@ struct AttrDb
(0, false).exec(); (0, false).exec();
return state->db.getLastInsertedRowId(); return state->db.getLastInsertedRowId();
});
} }
std::optional<std::pair<AttrId, AttrValue>> getAttr( std::optional<std::pair<AttrId, AttrValue>> getAttr(
@ -237,12 +274,22 @@ struct AttrDb
} }
}; };
static std::shared_ptr<AttrDb> makeAttrDb(const Hash & fingerprint)
{
try {
return std::make_shared<AttrDb>(fingerprint);
} catch (SQLiteError &) {
ignoreException();
return nullptr;
}
}
EvalCache::EvalCache( EvalCache::EvalCache(
bool useCache, bool useCache,
const Hash & fingerprint, const Hash & fingerprint,
EvalState & state, EvalState & state,
RootLoader rootLoader) RootLoader rootLoader)
: db(useCache ? std::make_shared<AttrDb>(fingerprint) : nullptr) : db(useCache ? makeAttrDb(fingerprint) : nullptr)
, state(state) , state(state)
, rootLoader(rootLoader) , rootLoader(rootLoader)
{ {

View file

@ -63,7 +63,6 @@ static std::tuple<fetchers::Tree, FlakeRef, FlakeRef> fetchOrSubstituteTree(
debug("got tree '%s' from '%s'", debug("got tree '%s' from '%s'",
state.store->printStorePath(tree.storePath), lockedRef); state.store->printStorePath(tree.storePath), lockedRef);
if (state.allowedPaths) if (state.allowedPaths)
state.allowedPaths->insert(tree.actualPath); state.allowedPaths->insert(tree.actualPath);