From: Nikita Pettik <korablev@tarantool.org> To: tarantool-patches@dev.tarantool.org Cc: v.shpilevoy@tarantool.org Subject: [Tarantool-patches] [PATCH v2 09/10] iproto: refactor error encoding with mpstream Date: Wed, 25 Mar 2020 04:43:05 +0300 [thread overview] Message-ID: <bb90530b87c1ed2d9898e555866ab8178cd36016.1585097339.git.korablev@tarantool.org> (raw) In-Reply-To: <cover.1585097339.git.korablev@tarantool.org> In-Reply-To: <cover.1585097339.git.korablev@tarantool.org> From: Kirill Shcherbatov <kshcherbatov@tarantool.org> Refactor iproto_reply_error and iproto_write_error with a new mpstream-based helper mpstream_iproto_encode_error that encodes error object for iproto protocol on a given stream object. Previously each routine implemented an own error encoding, but with the increasing complexity of encode operation with following patches we need a uniform way to do it. The iproto_write_error routine starts using region location to use region-based mpstream. It is not a problem itself, because errors reporting is not really performance-critical path. Needed for #1148 --- src/box/xrow.c | 70 +++++++++++++++++++++++++++++++++++--------------- 1 file changed, 49 insertions(+), 21 deletions(-) diff --git a/src/box/xrow.c b/src/box/xrow.c index 5e3cb0709..256dd4d91 100644 --- a/src/box/xrow.c +++ b/src/box/xrow.c @@ -42,6 +42,7 @@ #include "vclock.h" #include "scramble.h" #include "iproto_constants.h" +#include "mpstream.h" static_assert(IPROTO_DATA < 0x7f && IPROTO_METADATA < 0x7f && IPROTO_SQL_INFO < 0x7f, "encoded IPROTO_BODY keys must fit into "\ @@ -381,10 +382,6 @@ static const struct iproto_body_bin iproto_body_bin = { 0x81, IPROTO_DATA, 0xdd, 0 }; -static const struct iproto_body_bin iproto_error_bin = { - 0x81, IPROTO_ERROR, 0xdb, 0 -}; - /** Return a 4-byte numeric error code, with status flags. */ static inline uint32_t iproto_encode_error(uint32_t error) @@ -478,46 +475,77 @@ iproto_reply_vote(struct obuf *out, const struct ballot *ballot, return 0; } +static void +mpstream_error_handler(void *error_ctx) +{ + *(bool *)error_ctx = true; +} + +static void +mpstream_iproto_encode_error(struct mpstream *stream, const struct error *error) +{ + mpstream_encode_map(stream, 2); + mpstream_encode_uint(stream, IPROTO_ERROR); + mpstream_encode_str(stream, error->errmsg); +} + int iproto_reply_error(struct obuf *out, const struct error *e, uint64_t sync, uint32_t schema_version) { - uint32_t msg_len = strlen(e->errmsg); - uint32_t errcode = box_error_code(e); - - struct iproto_body_bin body = iproto_error_bin; char *header = (char *)obuf_alloc(out, IPROTO_HEADER_LEN); if (header == NULL) return -1; + bool is_error = false; + struct mpstream stream; + mpstream_init(&stream, out, obuf_reserve_cb, obuf_alloc_cb, + mpstream_error_handler, &is_error); + + uint32_t used = obuf_size(out); + mpstream_iproto_encode_error(&stream, e); + mpstream_flush(&stream); + + uint32_t errcode = box_error_code(e); iproto_header_encode(header, iproto_encode_error(errcode), sync, - schema_version, sizeof(body) + msg_len); - body.v_data_len = mp_bswap_u32(msg_len); + schema_version, obuf_size(out) - used); + /* Malformed packet appears to be a lesser evil than abort. */ - return obuf_dup(out, &body, sizeof(body)) != sizeof(body) || - obuf_dup(out, e->errmsg, msg_len) != msg_len ? -1 : 0; + return is_error; } void iproto_write_error(int fd, const struct error *e, uint32_t schema_version, uint64_t sync) { - uint32_t msg_len = strlen(e->errmsg); - uint32_t errcode = box_error_code(e); + bool is_error = false; + struct mpstream stream; + struct region *region = &fiber()->gc; + mpstream_init(&stream, region, region_reserve_cb, region_alloc_cb, + mpstream_error_handler, &is_error); + + size_t region_svp = region_used(region); + mpstream_iproto_encode_error(&stream, e); + mpstream_flush(&stream); + if (is_error) + goto cleanup; + + size_t payload_size = region_used(region) - region_svp; + char *payload = region_join(region, payload_size); + if (payload == NULL) + goto cleanup; + uint32_t errcode = box_error_code(e); char header[IPROTO_HEADER_LEN]; - struct iproto_body_bin body = iproto_error_bin; - iproto_header_encode(header, iproto_encode_error(errcode), sync, - schema_version, sizeof(body) + msg_len); - - body.v_data_len = mp_bswap_u32(msg_len); + schema_version, payload_size); ssize_t unused; unused = write(fd, header, sizeof(header)); - unused = write(fd, &body, sizeof(body)); - unused = write(fd, e->errmsg, msg_len); + unused = write(fd, payload, payload_size); (void) unused; +cleanup: + region_truncate(region, region_svp); } int -- 2.17.1
next prev parent reply other threads:[~2020-03-25 1:43 UTC|newest] Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-03-25 1:42 [Tarantool-patches] [PATCH v2 00/10] Stacked diagnostics Nikita Pettik 2020-03-25 1:42 ` [Tarantool-patches] [PATCH v2 01/10] box: rfc for stacked diagnostic area Nikita Pettik 2020-03-25 8:27 ` Konstantin Osipov 2020-03-25 14:08 ` Nikita Pettik 2020-03-25 1:42 ` [Tarantool-patches] [PATCH v2 02/10] box: rename diag_add_error to diag_set_error Nikita Pettik 2020-03-25 8:27 ` Konstantin Osipov 2020-03-26 0:22 ` Vladislav Shpilevoy 2020-03-26 12:31 ` Nikita Pettik 2020-03-25 1:42 ` [Tarantool-patches] [PATCH v2 03/10] test: move box.error tests to box/error.test.lua Nikita Pettik 2020-03-25 8:28 ` Konstantin Osipov 2020-03-26 0:22 ` Vladislav Shpilevoy 2020-03-26 12:31 ` Nikita Pettik 2020-03-25 1:43 ` [Tarantool-patches] [PATCH v2 04/10] box/error: introduce box.error.set() method Nikita Pettik 2020-03-25 8:33 ` Konstantin Osipov 2020-03-25 17:41 ` Nikita Pettik 2020-03-26 0:22 ` Vladislav Shpilevoy 2020-03-26 12:31 ` Nikita Pettik 2020-03-25 1:43 ` [Tarantool-patches] [PATCH v2 05/10] box/error: don't set error created via box.error.new to diag Nikita Pettik 2020-03-26 16:50 ` Konstantin Osipov 2020-03-26 17:59 ` Nikita Pettik 2020-03-26 18:06 ` Nikita Pettik 2020-03-26 18:07 ` Alexander Turenko 2020-03-27 0:19 ` Vladislav Shpilevoy 2020-03-27 13:09 ` Nikita Pettik 2020-03-25 1:43 ` [Tarantool-patches] [PATCH v2 06/10] box: introduce stacked diagnostic area Nikita Pettik 2020-03-26 16:54 ` Konstantin Osipov 2020-03-26 18:03 ` Nikita Pettik 2020-03-26 18:08 ` Konstantin Osipov 2020-03-28 18:40 ` Vladislav Shpilevoy 2020-04-01 16:09 ` Nikita Pettik 2020-04-02 0:29 ` Vladislav Shpilevoy 2020-04-02 17:42 ` Nikita Pettik 2020-04-02 22:20 ` Vladislav Shpilevoy 2020-04-03 1:54 ` Nikita Pettik 2020-04-03 23:17 ` Vladislav Shpilevoy 2020-03-28 18:59 ` Vladislav Shpilevoy 2020-03-31 17:44 ` Nikita Pettik 2020-04-02 0:29 ` Vladislav Shpilevoy 2020-04-02 14:16 ` Nikita Pettik 2020-03-25 1:43 ` [Tarantool-patches] [PATCH v2 07/10] box: use stacked diagnostic area for functional indexes Nikita Pettik 2020-03-30 23:24 ` Vladislav Shpilevoy 2020-04-01 15:53 ` Nikita Pettik 2020-03-25 1:43 ` [Tarantool-patches] [PATCH v2 08/10] box/error: clarify purpose of reference counting in struct error Nikita Pettik 2020-03-30 23:24 ` Vladislav Shpilevoy 2020-03-25 1:43 ` Nikita Pettik [this message] 2020-03-30 23:24 ` [Tarantool-patches] [PATCH v2 09/10] iproto: refactor error encoding with mpstream Vladislav Shpilevoy 2020-04-01 15:54 ` Nikita Pettik 2020-03-25 1:43 ` [Tarantool-patches] [PATCH v2 10/10] iproto: support error stacked diagnostic area Nikita Pettik 2020-03-30 23:24 ` Vladislav Shpilevoy 2020-04-01 16:26 ` Nikita Pettik 2020-04-01 22:24 ` Nikita Pettik 2020-04-02 0:29 ` Vladislav Shpilevoy 2020-04-02 14:01 ` Nikita Pettik 2020-04-02 22:20 ` Vladislav Shpilevoy 2020-04-03 2:16 ` Nikita Pettik 2020-04-03 23:17 ` Vladislav Shpilevoy 2020-04-06 11:07 ` Nikita Pettik
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=bb90530b87c1ed2d9898e555866ab8178cd36016.1585097339.git.korablev@tarantool.org \ --to=korablev@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v2 09/10] iproto: refactor error encoding with mpstream' \ /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