From: Vladimir Davydov <vdavydov.dev@gmail.com> To: Kirill Shcherbatov <kshcherbatov@tarantool.org> Cc: tarantool-patches@freelists.org Subject: Re: [PATCH v3 6/7] box: introduce field_map_builder class Date: Wed, 3 Apr 2019 19:30:02 +0300 [thread overview] Message-ID: <20190403163002.2elldsqc777svhmw@esperanza> (raw) In-Reply-To: <51bd24d2df81ae0838dd74c96d35171b7824261e.1554218695.git.kshcherbatov@tarantool.org> On Tue, Apr 02, 2019 at 06:49:37PM +0300, Kirill Shcherbatov wrote: > +/** > + * Set data offset for a field identified by unique offset_slot. > + * > + * The offset_slot argument must be negative and offset must be > + * positive (by definition). > + */ > +static inline void > +field_map_builder_set_slot(struct field_map_builder *builder, > + int32_t offset_slot, uint32_t offset) > +{ > + assert(offset_slot < 0); > + assert(offset > 0); An assertion making sure that the offset is within the map would be appreciated. > + builder->slots[offset_slot] = offset; > +} > @@ -126,11 +126,11 @@ tuple_validate_raw(struct tuple_format *format, const char *tuple) > > struct region *region = &fiber()->gc; > size_t region_svp = region_used(region); > - uint32_t *field_map, field_map_size; > - int rc = tuple_field_map_create(format, tuple, true, &field_map, > - &field_map_size); > - assert(rc != 0 || field_map_size == format->field_map_size); > + struct field_map_builder builder; > + int rc = tuple_field_map_create(&builder, format, tuple, true); > region_truncate(region, region_svp); > + assert(rc != 0 || > + field_map_build_size(&builder) == format->field_map_size); This assertion is rather pointless after the next patch, where you replace '==' with '>='. Please remove. > return rc; > }
next prev parent reply other threads:[~2019-04-03 16:30 UTC|newest] Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-04-02 15:49 [PATCH v3 0/7] box: introduce multikey indexes in memtx Kirill Shcherbatov 2019-04-02 15:49 ` [PATCH v3 1/7] box: cleanup key_def virtual extract_key setter Kirill Shcherbatov 2019-04-03 12:42 ` Vladimir Davydov 2019-04-03 16:22 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-03 18:01 ` Vladimir Davydov 2019-04-02 15:49 ` [PATCH v3 2/7] lib: introduce a new json_path_multikey_offset helper Kirill Shcherbatov 2019-04-03 12:56 ` Vladimir Davydov 2019-04-03 16:22 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-03 18:02 ` Vladimir Davydov 2019-04-04 6:17 ` Konstantin Osipov 2019-04-02 15:49 ` [PATCH v3 3/7] box: move offset_slot init to tuple_format_add_field Kirill Shcherbatov 2019-04-03 12:57 ` Vladimir Davydov 2019-04-03 18:02 ` Vladimir Davydov 2019-04-04 6:19 ` [tarantool-patches] " Konstantin Osipov 2019-04-05 17:17 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-02 15:49 ` [PATCH v3 4/7] lib: update msgpuck library Kirill Shcherbatov 2019-04-03 17:49 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-04 15:54 ` Vladimir Davydov 2019-04-05 17:17 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-07 12:22 ` Vladimir Davydov 2019-04-02 15:49 ` [PATCH v3 5/7] box: introduce tuple_parse_iterator class Kirill Shcherbatov 2019-04-03 14:04 ` Vladimir Davydov 2019-04-05 17:17 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-02 15:49 ` [PATCH v3 6/7] box: introduce field_map_builder class Kirill Shcherbatov 2019-04-03 14:38 ` Vladimir Davydov 2019-04-05 17:17 ` [tarantool-patches] " Kirill Shcherbatov 2019-04-03 16:30 ` Vladimir Davydov [this message] 2019-04-02 15:49 ` [PATCH v3 7/7] box: introduce multikey indexes in memtx Kirill Shcherbatov 2019-04-04 14:20 ` Vladimir Davydov
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=20190403163002.2elldsqc777svhmw@esperanza \ --to=vdavydov.dev@gmail.com \ --cc=kshcherbatov@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [PATCH v3 6/7] box: introduce field_map_builder class' \ /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