MySQL 8.0.33
Source Code Documentation
tablespace_file_impl.h
Go to the documentation of this file.
1/* Copyright (c) 2014, 2023, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is also distributed with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have included with MySQL.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License, version 2.0, for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef DD__TABLESPACE_FILES_IMPL_INCLUDED
24#define DD__TABLESPACE_FILES_IMPL_INCLUDED
25
26#include <sys/types.h>
27#include <memory> // std::unique_ptr
28#include <new>
29
32#include "sql/dd/impl/types/weak_object_impl.h" // dd::Weak_object_impl
33#include "sql/dd/sdi_fwd.h"
34#include "sql/dd/string_type.h"
35#include "sql/dd/types/tablespace_file.h" // dd::Tablespace_file
36
37namespace dd {
38
39///////////////////////////////////////////////////////////////////////////
40
41class Object_key;
42class Object_table;
43class Open_dictionary_tables_ctx;
44class Sdi_rcontext;
45class Sdi_wcontext;
46class Tablespace;
47class Tablespace_impl;
48class Weak_object;
49
50///////////////////////////////////////////////////////////////////////////
51
53 public:
55
57
59 Tablespace_impl *parent);
60
61 ~Tablespace_file_impl() override = default;
62
63 public:
64 const Object_table &object_table() const override;
65
66 bool store(Open_dictionary_tables_ctx *otx) override;
67
68 bool validate() const override;
69
70 bool store_attributes(Raw_record *r) override;
71
72 bool restore_attributes(const Raw_record &r) override;
73
74 void serialize(Sdi_wcontext *wctx, Sdi_writer *w) const override;
75
76 bool deserialize(Sdi_rcontext *rctx, const RJ_Value &val) override;
77
78 void debug_print(String_type &outb) const override;
79
82 }
83
84 public:
86
87 /////////////////////////////////////////////////////////////////////////
88 // ordinal_position.
89 /////////////////////////////////////////////////////////////////////////
90
91 uint ordinal_position() const override { return m_ordinal_position; }
92
93 /////////////////////////////////////////////////////////////////////////
94 // filename.
95 /////////////////////////////////////////////////////////////////////////
96
97 const String_type &filename() const override { return m_filename; }
98
99 void set_filename(const String_type &filename) override {
101 }
102
103 /////////////////////////////////////////////////////////////////////////
104 // se_private_data.
105 /////////////////////////////////////////////////////////////////////////
106
107 const Properties &se_private_data() const override {
108 return m_se_private_data;
109 }
110
112
113 bool set_se_private_data(const String_type &se_private_data_raw) override {
114 return m_se_private_data.insert_values(se_private_data_raw);
115 }
116
117 /////////////////////////////////////////////////////////////////////////
118 // tablespace.
119 /////////////////////////////////////////////////////////////////////////
120
121 const Tablespace &tablespace() const override;
122
123 Tablespace &tablespace() override;
124
125 public:
127 return new (std::nothrow) Tablespace_file_impl(ts);
128 }
129
131 Tablespace_impl *ts) {
132 return new (std::nothrow) Tablespace_file_impl(other, ts);
133 }
134
135 public:
136 Object_key *create_primary_key() const override;
137 bool has_new_primary_key() const override;
138
139 private:
140 // Fields
142
145
146 // References to other objects
148};
149
150///////////////////////////////////////////////////////////////////////////
151
152} // namespace dd
153
154#endif // DD__TABLESPACE_FILES_IMPL_INCLUDED
Data structure that contains the information about shared tablespaces.
Definition: fsp0space.h:46
Definition: object_key.h:37
This class represents all data dictionary table like mysql.tables, mysql.columns and more.
Definition: object_table.h:71
Auxiliary class for opening dictionary tables.
Definition: transaction_impl.h:75
The Properties_impl class implements the Properties interface.
Definition: properties_impl.h:76
bool insert_values(const Properties &properties) override
Insert key/value pairs from a different property object.
Definition: properties_impl.cc:103
The Properties class defines an interface for storing key=value pairs, where both key and value may b...
Definition: properties.h:73
Definition: raw_record.h:45
Opaque context which keeps reusable resoureces needed during deserialization.
Definition: sdi.cc:230
Opaque context which keeps reusable resources needed during serialization.
Definition: sdi.cc:128
Definition: tablespace_file_impl.h:52
static Tablespace_file_impl * clone(const Tablespace_file_impl &other, Tablespace_impl *ts)
Definition: tablespace_file_impl.h:130
bool store(Open_dictionary_tables_ctx *otx) override
Store the DD object into DD table.
Definition: tablespace_file_impl.cc:95
void debug_print(String_type &outb) const override
Definition: tablespace_file_impl.cc:169
Tablespace_impl * m_tablespace
Definition: tablespace_file_impl.h:147
bool deserialize(Sdi_rcontext *rctx, const RJ_Value &val) override
Re-establishes the state of *this by reading sdi information from the rapidjson DOM subobject provide...
Definition: tablespace_file_impl.cc:160
void set_ordinal_position(uint ordinal_position)
Definition: tablespace_file_impl.h:80
~Tablespace_file_impl() override=default
const String_type & filename() const override
Definition: tablespace_file_impl.h:97
uint ordinal_position() const override
Definition: tablespace_file_impl.h:91
bool restore_attributes(const Raw_record &r) override
Definition: tablespace_file_impl.cc:122
void serialize(Sdi_wcontext *wctx, Sdi_writer *w) const override
Converts *this into json.
Definition: tablespace_file_impl.cc:150
uint m_ordinal_position
Definition: tablespace_file_impl.h:141
bool has_new_primary_key() const override
Indicates that object is guaranteed to have primary key value which doesn't exist in database (e....
Definition: tablespace_file_impl.cc:187
static void register_tables(Open_dictionary_tables_ctx *otx)
Definition: tablespace_file_impl.cc:209
static Tablespace_file_impl * restore_item(Tablespace_impl *ts)
Definition: tablespace_file_impl.h:126
String_type m_filename
Definition: tablespace_file_impl.h:143
Properties & se_private_data() override
Definition: tablespace_file_impl.h:111
Object_key * create_primary_key() const override
Definition: tablespace_file_impl.cc:182
Properties_impl m_se_private_data
Definition: tablespace_file_impl.h:144
const Tablespace & tablespace() const override
Definition: tablespace_file_impl.cc:70
bool set_se_private_data(const String_type &se_private_data_raw) override
Definition: tablespace_file_impl.h:113
const Properties & se_private_data() const override
Definition: tablespace_file_impl.h:107
bool store_attributes(Raw_record *r) override
Definition: tablespace_file_impl.cc:137
Tablespace_file_impl()
Definition: tablespace_file_impl.cc:62
void set_filename(const String_type &filename) override
Definition: tablespace_file_impl.h:99
const Object_table & object_table() const override
Definition: tablespace_file_impl.cc:203
bool validate() const override
Definition: tablespace_file_impl.cc:110
Definition: tablespace_file.h:44
Definition: tablespace_impl.h:56
Definition: tablespace.h:54
Definition: weak_object_impl.h:47
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:42
RJ_Writer Sdi_writer
Alias for the rapidjson Writer type to use in serialization.
Definition: sdi_fwd.h:63
rapidjson::GenericValue< RJ_Encoding, RJ_Allocator > RJ_Value
Definition: sdi_fwd.h:48
Char_string_template< String_type_allocator > String_type
Definition: string_type.h:50
const mysql_service_registry_t * r
Definition: pfs_example_plugin_employee.cc:85
This header provides Rapidjson Type Aliases.
unsigned int uint
Definition: uca9-dump.cc:74