tp: introduce tokenizer for SQLite statements
This CL adds an "SqliteTokenizer" class which allows tokenizing SQLite
SQL statements into tokens. The main function is just a minified copy
of the |sqlite3GetToken| function (i.e. with keyword specific parsing
removed to reduce the numbeer of constants copied).
The class layered on top of this function allows for C++ friendly use.
Change-Id: Icc10bf0aea60b16c013a38c8afa29bf4d41ebb64
diff --git a/BUILD b/BUILD
index a62edb8..f819fce 100644
--- a/BUILD
+++ b/BUILD
@@ -2174,6 +2174,8 @@
"src/trace_processor/sqlite/sqlite_engine.h",
"src/trace_processor/sqlite/sqlite_table.cc",
"src/trace_processor/sqlite/sqlite_table.h",
+ "src/trace_processor/sqlite/sqlite_tokenizer.cc",
+ "src/trace_processor/sqlite/sqlite_tokenizer.h",
"src/trace_processor/sqlite/sqlite_utils.cc",
"src/trace_processor/sqlite/sqlite_utils.h",
"src/trace_processor/sqlite/stats_table.cc",