1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-01 17:39:21 +03:00
Files
mariadb/storage/rocksdb/rdb_cf_manager.h
Sergei Petrunia ebfc4e6ad0 Initial commit,
copy of
commit 86587affafe77ef555f7c3839839de44f0f203f3
Author: Tian Xia <tianx@fb.com>
Date:   Tue Oct 4 10:01:52 2016 -0700

    Allow filtering of show commands through admission control
2016-10-06 17:24:09 +00:00

107 lines
3.4 KiB
C++

/*
Copyright (c) 2014, SkySQL Ab
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#pragma once
/* C++ system header files */
#include <map>
#include <string>
#include <vector>
/* MySQL header files */
#include "./sql_class.h"
/* RocksDB header files */
#include "rocksdb/db.h"
/* MyRocks header files */
#include "./rdb_cf_options.h"
namespace myrocks {
/*
We need a Column Family (CF) manager. Its functions:
- create column families (synchronized, don't create the same twice)
- keep count in each column family.
= the count is kept on-disk.
= there are no empty CFs. initially count=1.
= then, when doing DDL, we increase or decrease it.
(atomicity is maintained by being in the same WriteBatch with DDLs)
= if DROP discovers that now count=0, it removes the CF.
Current state is:
- CFs are created in a synchronized way. We can't remove them, yet.
*/
class Rdb_cf_manager
{
std::map<std::string, rocksdb::ColumnFamilyHandle*> m_cf_name_map;
std::map<uint32_t, rocksdb::ColumnFamilyHandle*> m_cf_id_map;
mutable mysql_mutex_t m_mutex;
static
void get_per_index_cf_name(const std::string& db_table_name,
const char *index_name, std::string *res);
Rdb_cf_options* m_cf_options= nullptr;
public:
static bool is_cf_name_reverse(const char *name);
/*
This is called right after the DB::Open() call. The parameters describe column
families that are present in the database. The first CF is the default CF.
*/
void init(Rdb_cf_options* cf_options,
std::vector<rocksdb::ColumnFamilyHandle*> *handles);
void cleanup();
/*
Used by CREATE TABLE.
- cf_name=nullptr means use default column family
- cf_name=_auto_ means use 'dbname.tablename.indexname'
*/
rocksdb::ColumnFamilyHandle* get_or_create_cf(
rocksdb::DB *rdb, const char *cf_name, const std::string& db_table_name,
const char *index_name, bool *is_automatic);
/* Used by table open */
rocksdb::ColumnFamilyHandle* get_cf(const char *cf_name,
const std::string& db_table_name,
const char *index_name,
bool *is_automatic) const;
/* Look up cf by id; used by datadic */
rocksdb::ColumnFamilyHandle* get_cf(const uint32_t id) const;
/* Used to iterate over column families for show status */
std::vector<std::string> get_cf_names(void) const;
/* Used to iterate over column families */
std::vector<rocksdb::ColumnFamilyHandle*> get_all_cf(void) const;
// void drop_cf(); -- not implemented so far.
void get_cf_options(
const std::string &cf_name,
rocksdb::ColumnFamilyOptions *opts) __attribute__((__nonnull__)) {
m_cf_options->get_cf_options(cf_name, opts);
}
};
} // namespace myrocks