From: Vladimir Davydov <vdavydov.dev@gmail.com>
To: kostja@tarantool.org
Cc: tarantool-patches@freelists.org
Subject: [PATCH 02/12] alter: fold ModifySpaceFormat into ModifySpace
Date: Sat, 7 Apr 2018 16:37:59 +0300 [thread overview]
Message-ID: <2065fc320abd3d4c7ba2e3f873d676971946cb62.1523105106.git.vdavydov.dev@gmail.com> (raw)
In-Reply-To: <cover.1523105106.git.vdavydov.dev@gmail.com>
In-Reply-To: <cover.1523105106.git.vdavydov.dev@gmail.com>
ModifySpaceFormat and ModifySpace are always called together, whenever
a space definition is updated. Let's merge them. No functional changes.
---
src/box/alter.cc | 110 ++++++++++++++++++++-----------------------------------
1 file changed, 40 insertions(+), 70 deletions(-)
diff --git a/src/box/alter.cc b/src/box/alter.cc
index 9fea81ad..0af4ac09 100644
--- a/src/box/alter.cc
+++ b/src/box/alter.cc
@@ -886,74 +886,6 @@ alter_space_do(struct txn *txn, struct alter_space *alter)
/* {{{ AlterSpaceOp descendants - alter operations, such as Add/Drop index */
/**
- * The operation is executed on each space format change.
- * Now the single purpose is to update an old field names
- * dictionary, used by old space formats, and use it in a new
- * formats (vinyl creates many formats, not one).
- */
-class ModifySpaceFormat: public AlterSpaceOp
-{
- /**
- * Newely created field dictionary. When new space_def is
- * created, it allocates new dictionary. Alter moves new
- * names into an old dictionary and deletes new one.
- */
- struct tuple_dictionary *new_dict;
- /**
- * Old tuple dictionary stored to rollback in destructor,
- * if an exception had been raised after alter_def(), but
- * before alter().
- */
- struct tuple_dictionary *old_dict;
- /**
- * New space definition. It can not be got from alter,
- * because alter_def() is called before
- * ModifySpace::alter_def().
- */
- struct space_def *new_def;
-public:
- ModifySpaceFormat(struct alter_space *alter, struct space_def *new_def)
- : AlterSpaceOp(alter), new_dict(NULL), old_dict(NULL),
- new_def(new_def) {}
- virtual void alter_def(struct alter_space *alter);
- virtual void commit(struct alter_space *alter, int64_t lsn);
- virtual ~ModifySpaceFormat();
-};
-
-void
-ModifySpaceFormat::alter_def(struct alter_space *alter)
-{
- /*
- * Move new names into an old dictionary, which already is
- * referenced by existing tuple formats. New dictionary
- * object is deleted later, in destructor.
- */
- new_dict = new_def->dict;
- old_dict = alter->old_space->def->dict;
- tuple_dictionary_swap(new_dict, old_dict);
- new_def->dict = old_dict;
- tuple_dictionary_ref(old_dict);
-}
-
-void
-ModifySpaceFormat::commit(struct alter_space *alter, int64_t lsn)
-{
- (void) alter;
- (void) lsn;
- old_dict = NULL;
-}
-
-ModifySpaceFormat::~ModifySpaceFormat()
-{
- if (new_dict != NULL) {
- /* Return old names into the old dict. */
- if (old_dict != NULL)
- tuple_dictionary_swap(new_dict, old_dict);
- tuple_dictionary_unref(new_dict);
- }
-}
-
-/**
* This operation does not modify the space, it just checks that
* tuples stored in it conform to the new format.
*/
@@ -986,9 +918,22 @@ class ModifySpace: public AlterSpaceOp
public:
ModifySpace(struct alter_space *alter, struct space_def *def_arg)
:AlterSpaceOp(alter), def(def_arg) {}
+ /**
+ * Newely created field dictionary. When new space_def is
+ * created, it allocates new dictionary. Alter moves new
+ * names into an old dictionary and deletes new one.
+ */
+ struct tuple_dictionary *new_dict;
+ /**
+ * Old tuple dictionary stored to rollback in destructor,
+ * if an exception had been raised after alter_def(), but
+ * before alter().
+ */
+ struct tuple_dictionary *old_dict;
/* New space definition. */
struct space_def *def;
virtual void alter_def(struct alter_space *alter);
+ virtual void commit(struct alter_space *alter, int64_t signature);
virtual ~ModifySpace();
};
@@ -996,13 +941,39 @@ public:
void
ModifySpace::alter_def(struct alter_space *alter)
{
+ /*
+ * Move new names into an old dictionary, which already is
+ * referenced by existing tuple formats. New dictionary
+ * object is deleted later, in destructor.
+ */
+ new_dict = def->dict;
+ old_dict = alter->old_space->def->dict;
+ tuple_dictionary_swap(new_dict, old_dict);
+ def->dict = old_dict;
+ tuple_dictionary_ref(old_dict);
+
space_def_delete(alter->space_def);
alter->space_def = def;
/* Now alter owns the def. */
def = NULL;
}
-ModifySpace::~ModifySpace() {
+void
+ModifySpace::commit(struct alter_space *alter, int64_t signature)
+{
+ (void) alter;
+ (void) signature;
+ old_dict = NULL;
+}
+
+ModifySpace::~ModifySpace()
+{
+ if (new_dict != NULL) {
+ /* Return old names into the old dict. */
+ if (old_dict != NULL)
+ tuple_dictionary_swap(new_dict, old_dict);
+ tuple_dictionary_unref(new_dict);
+ }
if (def != NULL)
space_def_delete(def);
}
@@ -1622,7 +1593,6 @@ on_replace_dd_space(struct trigger * /* trigger */, void *event)
def->fields,
def->field_count);
(void) new CheckSpaceFormat(alter);
- (void) new ModifySpaceFormat(alter, def);
(void) new ModifySpace(alter, def);
def_guard.is_active = false;
/* Create MoveIndex ops for all space indexes. */
--
2.11.0
next prev parent reply other threads:[~2018-04-07 13:37 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-07 13:37 [PATCH 00/12] vinyl: allow to modify format of non-empty spaces Vladimir Davydov
2018-04-07 13:37 ` [PATCH 01/12] alter: introduce CheckSpaceFormat AlterSpaceOp for validating format Vladimir Davydov
2018-04-09 20:25 ` Konstantin Osipov
2018-04-07 13:37 ` Vladimir Davydov [this message]
2018-04-09 20:26 ` [PATCH 02/12] alter: fold ModifySpaceFormat into ModifySpace Konstantin Osipov
2018-04-07 13:38 ` [PATCH 03/12] alter: move dictionary update from ModifySpace::alter_def to alter Vladimir Davydov
2018-04-09 20:32 ` Konstantin Osipov
2018-04-10 7:53 ` Vladimir Davydov
2018-04-10 11:45 ` Vladimir Davydov
2018-04-07 13:38 ` [PATCH 04/12] alter: use space_index instead of index_find where appropriate Vladimir Davydov
2018-04-09 20:34 ` Konstantin Osipov
2018-04-07 13:38 ` [PATCH 05/12] alter: allocate triggers before the point of no return Vladimir Davydov
2018-04-09 20:36 ` Konstantin Osipov
2018-04-10 7:57 ` Vladimir Davydov
2018-04-10 11:54 ` Vladimir Davydov
2018-04-07 13:38 ` [PATCH 06/12] space: space_vtab::build_secondary_key => build_index Vladimir Davydov
2018-04-09 20:39 ` Konstantin Osipov
2018-04-10 8:05 ` Vladimir Davydov
2018-04-10 12:14 ` Vladimir Davydov
2018-04-07 13:38 ` [PATCH 07/12] space: pass new format instead of new space to space_vtab::check_format Vladimir Davydov
2018-04-09 20:40 ` Konstantin Osipov
2018-04-07 13:38 ` [PATCH 08/12] alter: introduce preparation phase Vladimir Davydov
2018-04-09 20:46 ` [tarantool-patches] " Konstantin Osipov
2018-04-10 8:31 ` Vladimir Davydov
2018-04-10 8:46 ` Konstantin Osipov
2018-04-07 13:38 ` [PATCH 09/12] alter: zap space_def_check_compatibility Vladimir Davydov
2018-04-09 20:49 ` Konstantin Osipov
2018-04-07 13:38 ` [PATCH 10/12] vinyl: remove superfluous ddl checks Vladimir Davydov
2018-04-09 20:49 ` Konstantin Osipov
2018-04-07 13:38 ` [PATCH 11/12] vinyl: force index rebuild if indexed field type is narrowed Vladimir Davydov
2018-04-09 20:51 ` Konstantin Osipov
2018-04-07 13:38 ` [PATCH 12/12] vinyl: allow to modify format of non-empty spaces Vladimir Davydov
2018-04-09 8:24 ` Vladimir Davydov
2018-04-09 20:55 ` Konstantin Osipov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2065fc320abd3d4c7ba2e3f873d676971946cb62.1523105106.git.vdavydov.dev@gmail.com \
--to=vdavydov.dev@gmail.com \
--cc=kostja@tarantool.org \
--cc=tarantool-patches@freelists.org \
--subject='Re: [PATCH 02/12] alter: fold ModifySpaceFormat into ModifySpace' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox