mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2014, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <osquery/tables.h>
|
|
|
|
#include "osquery/sql/sqlite_util.h"
|
|
|
|
namespace osquery {
|
|
|
|
/**
|
|
* @brief osquery cursor object.
|
|
*
|
|
* Only used in the SQLite virtual table module methods.
|
|
*/
|
|
struct BaseCursor {
|
|
/// SQLite virtual table cursor.
|
|
sqlite3_vtab_cursor base;
|
|
/// Current cursor position.
|
|
size_t row;
|
|
};
|
|
|
|
struct VirtualTableContent {
|
|
TableName name;
|
|
TableColumns columns;
|
|
QueryData data;
|
|
ConstraintSet constraints;
|
|
size_t n;
|
|
};
|
|
|
|
/**
|
|
* @brief osquery virtual table object
|
|
*
|
|
* Only used in the SQLite virtual table module methods.
|
|
* This adds each table plugin class to the state tracking in SQLite.
|
|
*/
|
|
struct VirtualTable {
|
|
sqlite3_vtab base;
|
|
VirtualTableContent *content;
|
|
};
|
|
|
|
/// Attach a table plugin name to an in-memory SQLite database.
|
|
Status attachTableInternal(const std::string &name,
|
|
const std::string &statement,
|
|
sqlite3 *db);
|
|
|
|
/// Detach (drop) a table.
|
|
Status detachTableInternal(const std::string &name, sqlite3 *db);
|
|
|
|
/// Attach all table plugins to an in-memory SQLite database.
|
|
void attachVirtualTables(sqlite3 *db);
|
|
}
|