finished statement cache class
This commit is contained in:
@@ -2,11 +2,18 @@
|
||||
#include "test_result_reader.hpp"
|
||||
#include "test_parameter_binder.hpp"
|
||||
|
||||
#include <random>
|
||||
#include <thread>
|
||||
|
||||
namespace matador::test::orm {
|
||||
test_statement::test_statement(const sql::query_context &query)
|
||||
: statement_impl(query) {}
|
||||
|
||||
utils::result<size_t, utils::error> test_statement::execute(const sql::interface::parameter_binder &/*bindings*/) {
|
||||
using namespace std::chrono_literals;
|
||||
std::mt19937 rng(query_.sql.size());
|
||||
std::uniform_int_distribution dist(10, 40);
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(dist(rng)));
|
||||
return utils::ok(static_cast<size_t>(8));
|
||||
}
|
||||
|
||||
|
||||
@@ -1,18 +1,44 @@
|
||||
#include <atomic>
|
||||
#include <catch2/catch_test_macros.hpp>
|
||||
|
||||
#include <matador/query/query.hpp>
|
||||
|
||||
#include "matador/sql/connection_pool.hpp"
|
||||
#include "matador/sql/error_code.hpp"
|
||||
#include "matador/sql/statement_cache.hpp"
|
||||
|
||||
#include "../backend/test_backend_service.hpp"
|
||||
|
||||
#include "ConnectionPoolFixture.hpp"
|
||||
|
||||
#include <queue>
|
||||
#include <random>
|
||||
#include <thread>
|
||||
|
||||
using namespace matador::test;
|
||||
using namespace matador::sql;
|
||||
using namespace matador::query;
|
||||
|
||||
class RecordingObserver final : public statement_cache_observer_interface {
|
||||
public:
|
||||
void on_event(const statement_cache_event& evt) override {
|
||||
std::lock_guard lock(mutex);
|
||||
events.push(evt);
|
||||
}
|
||||
|
||||
std::optional<statement_cache_event> poll() {
|
||||
std::lock_guard lock(mutex);
|
||||
if (events.empty()) return std::nullopt;
|
||||
auto evt = events.front();
|
||||
events.pop();
|
||||
return evt;
|
||||
}
|
||||
|
||||
private:
|
||||
std::mutex mutex;
|
||||
std::queue<statement_cache_event> events;
|
||||
};
|
||||
|
||||
TEST_CASE("Test statement cache", "[statement][cache]") {
|
||||
backend_provider::instance().register_backend("noop", std::make_unique<orm::test_backend_service>());
|
||||
|
||||
@@ -51,4 +77,166 @@ TEST_CASE("Test statement cache", "[statement][cache]") {
|
||||
REQUIRE(cache.size() == 2);
|
||||
REQUIRE(!cache.empty());
|
||||
REQUIRE(cache.capacity() == 2);
|
||||
}
|
||||
|
||||
TEST_CASE("Test LRU cache evicts oldest entries", "[statement][cache][evict]") {
|
||||
backend_provider::instance().register_backend("noop", std::make_unique<orm::test_backend_service>());
|
||||
|
||||
connection_pool pool("noop://noop.db", 4);
|
||||
statement_cache cache(pool, 2);
|
||||
RecordingObserver observer;
|
||||
cache.subscribe(observer);
|
||||
|
||||
REQUIRE(cache.capacity() == 2);
|
||||
REQUIRE(cache.empty());
|
||||
|
||||
auto result = cache.acquire({"SELECT * FROM person"});
|
||||
REQUIRE(result);
|
||||
auto stmt1 = result.value();
|
||||
result = cache.acquire({"SELECT title FROM book"});
|
||||
REQUIRE(result);
|
||||
auto stmt2 = result.value();
|
||||
result = cache.acquire({"SELECT name FROM author"}); // Should evict first statement
|
||||
REQUIRE(result);
|
||||
auto stmt3 = result.value();
|
||||
|
||||
// Trigger re-prepare of evicted statement
|
||||
result = cache.acquire({"SELECT 1"});
|
||||
REQUIRE(result);
|
||||
auto stmt4 = result.value();
|
||||
|
||||
REQUIRE(stmt1.sql() == "SELECT * FROM person");
|
||||
REQUIRE(stmt2.sql() == "SELECT title FROM book");
|
||||
REQUIRE(stmt3.sql() == "SELECT name FROM author");
|
||||
REQUIRE(stmt4.sql() == "SELECT 1");
|
||||
|
||||
REQUIRE(cache.size() == 2);
|
||||
REQUIRE(!cache.empty());
|
||||
REQUIRE(cache.capacity() == 2);
|
||||
|
||||
int added = 0, evicted = 0;
|
||||
while (auto e = observer.poll()) {
|
||||
if (e->type == statement_cache_event::Type::Added) added++;
|
||||
if (e->type == statement_cache_event::Type::Evicted) evicted++;
|
||||
}
|
||||
REQUIRE(added >= 3);
|
||||
REQUIRE(evicted >= 1);
|
||||
}
|
||||
|
||||
TEST_CASE("Test statement reuse avoids reprepare", "[statement][cache][prepare]") {
|
||||
backend_provider::instance().register_backend("noop", std::make_unique<orm::test_backend_service>());
|
||||
|
||||
connection_pool pool("noop://noop.db", 4);
|
||||
statement_cache cache(pool, 2);
|
||||
RecordingObserver observer;
|
||||
cache.subscribe(observer);
|
||||
|
||||
REQUIRE(cache.capacity() == 2);
|
||||
REQUIRE(cache.empty());
|
||||
|
||||
auto result = cache.acquire({"SELECT * FROM person"});
|
||||
REQUIRE(result);
|
||||
auto stmt1 = result.value();
|
||||
result = cache.acquire({"SELECT * FROM person"});
|
||||
REQUIRE(result);
|
||||
auto stmt2 = result.value();
|
||||
|
||||
|
||||
}
|
||||
|
||||
TEST_CASE("Multithreaded stress test", "[statement][cache][stress]") {
|
||||
backend_provider::instance().register_backend("noop", std::make_unique<orm::test_backend_service>());
|
||||
|
||||
constexpr int thread_count = 16;
|
||||
constexpr int iterations = 1000;
|
||||
constexpr int sql_pool_size = 10;
|
||||
|
||||
std::vector<std::string> sqls;
|
||||
for (int i = 0; i < sql_pool_size; ++i) {
|
||||
sqls.push_back("SELECT " + std::to_string(i));
|
||||
}
|
||||
|
||||
connection_pool pool("noop://noop.db", 4);
|
||||
statement_cache cache(pool, 5);
|
||||
RecordingObserver observer;
|
||||
cache.subscribe(observer);
|
||||
|
||||
auto start_time = std::chrono::steady_clock::now();
|
||||
|
||||
std::atomic_int lock_failed_count{0};
|
||||
std::atomic_int exec_failed_count{0};
|
||||
|
||||
auto worker = [&](const int tid) {
|
||||
std::mt19937 rng(tid);
|
||||
std::uniform_int_distribution dist(0, sql_pool_size - 1);
|
||||
|
||||
for (int i = 0; i < iterations; ++i) {
|
||||
const auto& sql = sqls[dist(rng)];
|
||||
if (const auto result = cache.acquire({sql}); !result) {
|
||||
FAIL("Failed to acquire statement");
|
||||
} else {
|
||||
if (const auto exec_result = result->execute(); !exec_result) {
|
||||
if (exec_result.err().ec() == error_code::STATEMENT_LOCKED) {
|
||||
++lock_failed_count;
|
||||
} else {
|
||||
++exec_failed_count;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
std::vector<std::thread> threads;
|
||||
for (int i = 0; i < thread_count; ++i) {
|
||||
threads.emplace_back(worker, i);
|
||||
}
|
||||
|
||||
for (auto& t : threads) {
|
||||
t.join();
|
||||
}
|
||||
|
||||
auto end_time = std::chrono::steady_clock::now();
|
||||
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(end_time - start_time);
|
||||
|
||||
std::cout << "[Performance] Executed " << (thread_count * iterations) << " statements in " << duration.count() << " ms (lock failed: " << lock_failed_count << ", execute failed: " << exec_failed_count << ")\n";
|
||||
|
||||
// Some events should be generated
|
||||
int accessed = 0;
|
||||
while (auto e = observer.poll()) {
|
||||
if (e->type == statement_cache_event::Type::Accessed) accessed++;
|
||||
}
|
||||
REQUIRE(accessed > 0);
|
||||
}
|
||||
|
||||
TEST_CASE("Race condition simulation with mixed access", "[statement_cache][race]") {
|
||||
backend_provider::instance().register_backend("noop", std::make_unique<orm::test_backend_service>());
|
||||
|
||||
connection_pool pool("noop://noop.db", 4);
|
||||
statement_cache cache(pool, 5);
|
||||
|
||||
constexpr int threads = 8;
|
||||
constexpr int operations = 500;
|
||||
|
||||
auto task = [&](int id) {
|
||||
for (int i = 0; i < operations; ++i) {
|
||||
auto sql = "SELECT " + std::to_string(i % 10);
|
||||
auto result = cache.acquire({sql});
|
||||
REQUIRE(result);
|
||||
|
||||
// if (i % 50 == 0) {
|
||||
// cache.cleanup_expired_connections();
|
||||
// }
|
||||
}
|
||||
};
|
||||
|
||||
std::vector<std::thread> jobs;
|
||||
for (int i = 0; i < threads; ++i) {
|
||||
jobs.emplace_back(task, i);
|
||||
}
|
||||
|
||||
for (auto& t : jobs) {
|
||||
t.join();
|
||||
}
|
||||
|
||||
SUCCEED("Race simulation completed successfully without crash");
|
||||
}
|
||||
Reference in New Issue
Block a user