tp: refactor function registration to go through SqliteEngine
This CL changes all function registration to pass through SqliteEngine
rather than using free functions. This allows us to track what
functions are being registered.
Bug: 261195778
Change-Id: I2964cffee8e1d561ad0bf075978f22413ef29226
diff --git a/src/trace_processor/prelude/functions/create_function.h b/src/trace_processor/prelude/functions/create_function.h
index 258c4bb..4e2138b 100644
--- a/src/trace_processor/prelude/functions/create_function.h
+++ b/src/trace_processor/prelude/functions/create_function.h
@@ -20,7 +20,9 @@
#include <sqlite3.h>
#include <unordered_map>
-#include "src/trace_processor/prelude/functions/register_function.h"
+#include "src/trace_processor/prelude/functions/sql_function.h"
+#include "src/trace_processor/sqlite/scoped_db.h"
+#include "src/trace_processor/sqlite/sqlite_table.h"
namespace perfetto {
namespace trace_processor {
@@ -50,7 +52,7 @@
NameAndArgc::Hasher>;
struct Context {
- sqlite3* db;
+ SqliteEngine* engine;
State* state;
};