Re: Cleaning up array_in()

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Cleaning up array_in()
Дата
Msg-id 1738753.1688844891@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Cleaning up array_in()  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
I wrote:
> That got sideswiped by ae6d06f09, so here's a trivial rebase to
> pacify the cfbot.

Sigh, this time with patch.

            regards, tom lane

From 63ee707f6aa38043c0211c0c4a124fa5fe2ad016 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sat, 8 Jul 2023 11:55:56 -0400
Subject: [PATCH v3 1/3] Simplify and speed up ReadArrayStr().

ReadArrayStr() seems to have been written on the assumption that
non-rectangular input is fine and it should pad with NULLs anywhere
that elements are missing.  We disallowed non-rectangular input
ages ago (commit 0e13d627b), but never simplified this function
as a follow-up.  In particular, the existing code recomputes each
element's linear location from scratch, which is quite unnecessary
for rectangular input: we can just assign the elements sequentially,
saving lots of arithmetic.  Add some more commentary while at it.

ArrayGetOffset0() is no longer used anywhere, so remove it.
---
 src/backend/utils/adt/arrayfuncs.c | 69 ++++++++++++++----------------
 src/backend/utils/adt/arrayutils.c | 15 -------
 src/include/utils/array.h          |  1 -
 3 files changed, 33 insertions(+), 52 deletions(-)

diff --git a/src/backend/utils/adt/arrayfuncs.c b/src/backend/utils/adt/arrayfuncs.c
index 4359dbd83d..967aff8cf9 100644
--- a/src/backend/utils/adt/arrayfuncs.c
+++ b/src/backend/utils/adt/arrayfuncs.c
@@ -93,7 +93,7 @@ typedef struct ArrayIteratorData
 static int    ArrayCount(const char *str, int *dim, char typdelim,
                        Node *escontext);
 static bool ReadArrayStr(char *arrayStr, const char *origStr,
-                         int nitems, int ndim, int *dim,
+                         int nitems,
                          FmgrInfo *inputproc, Oid typioparam, int32 typmod,
                          char typdelim,
                          int typlen, bool typbyval, char typalign,
@@ -391,7 +391,7 @@ array_in(PG_FUNCTION_ARGS)
     dataPtr = (Datum *) palloc(nitems * sizeof(Datum));
     nullsPtr = (bool *) palloc(nitems * sizeof(bool));
     if (!ReadArrayStr(p, string,
-                      nitems, ndim, dim,
+                      nitems,
                       &my_extra->proc, typioparam, typmod,
                       typdelim,
                       typlen, typbyval, typalign,
@@ -436,7 +436,8 @@ array_in(PG_FUNCTION_ARGS)

 /*
  * ArrayCount
- *     Determines the dimensions for an array string.
+ *     Determines the dimensions for an array string.  This includes
+ *     syntax-checking the array structure decoration (braces and delimiters).
  *
  * Returns number of dimensions as function result.  The axis lengths are
  * returned in dim[], which must be of size MAXDIM.
@@ -683,16 +684,14 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
 /*
  * ReadArrayStr :
  *     parses the array string pointed to by "arrayStr" and converts the values
- *     to internal format.  Unspecified elements are initialized to nulls.
- *     The array dimensions must already have been determined.
+ *     to internal format.  The array dimensions must have been determined,
+ *     and the case of an empty array must have been handled earlier.
  *
  * Inputs:
  *    arrayStr: the string to parse.
  *              CAUTION: the contents of "arrayStr" will be modified!
  *    origStr: the unmodified input string, used only in error messages.
  *    nitems: total number of array elements, as already determined.
- *    ndim: number of array dimensions
- *    dim[]: array axis lengths
  *    inputproc: type-specific input procedure for element datatype.
  *    typioparam, typmod: auxiliary values to pass to inputproc.
  *    typdelim: the value delimiter (type-specific).
@@ -717,8 +716,6 @@ static bool
 ReadArrayStr(char *arrayStr,
              const char *origStr,
              int nitems,
-             int ndim,
-             int *dim,
              FmgrInfo *inputproc,
              Oid typioparam,
              int32 typmod,
@@ -732,20 +729,13 @@ ReadArrayStr(char *arrayStr,
              int32 *nbytes,
              Node *escontext)
 {
-    int            i,
+    int            i = 0,
                 nest_level = 0;
     char       *srcptr;
     bool        in_quotes = false;
     bool        eoArray = false;
     bool        hasnull;
     int32        totbytes;
-    int            indx[MAXDIM] = {0},
-                prod[MAXDIM];
-
-    mda_get_prod(ndim, dim, prod);
-
-    /* Initialize is-null markers to true */
-    memset(nulls, true, nitems * sizeof(bool));

     /*
      * We have to remove " and \ characters to create a clean item value to
@@ -768,11 +758,20 @@ ReadArrayStr(char *arrayStr,
         bool        itemdone = false;
         bool        leadingspace = true;
         bool        hasquoting = false;
-        char       *itemstart;
-        char       *dstptr;
-        char       *dstendptr;
+        char       *itemstart;    /* start of de-escaped text */
+        char       *dstptr;        /* next output point for de-escaped text */
+        char       *dstendptr;    /* last significant output char + 1 */

-        i = -1;
+        /*
+         * Parse next array element, collecting the de-escaped text into
+         * itemstart..dstendptr-1.
+         *
+         * Notice that we do not set "itemdone" until we see a separator
+         * (typdelim character) or the array's final right brace.  Since the
+         * array is already verified to be nonempty and rectangular, there is
+         * guaranteed to be another element to be processed in the first case,
+         * while in the second case of course we'll exit the outer loop.
+         */
         itemstart = dstptr = dstendptr = srcptr;

         while (!itemdone)
@@ -819,13 +818,7 @@ ReadArrayStr(char *arrayStr,
                 case '{':
                     if (!in_quotes)
                     {
-                        if (nest_level >= ndim)
-                            ereturn(escontext, false,
-                                    (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
-                                     errmsg("malformed array literal: \"%s\"",
-                                            origStr)));
                         nest_level++;
-                        indx[nest_level - 1] = 0;
                         srcptr++;
                     }
                     else
@@ -839,14 +832,9 @@ ReadArrayStr(char *arrayStr,
                                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                      errmsg("malformed array literal: \"%s\"",
                                             origStr)));
-                        if (i == -1)
-                            i = ArrayGetOffset0(ndim, indx, prod);
-                        indx[nest_level - 1] = 0;
                         nest_level--;
                         if (nest_level == 0)
                             eoArray = itemdone = true;
-                        else
-                            indx[nest_level - 1]++;
                         srcptr++;
                     }
                     else
@@ -857,10 +845,7 @@ ReadArrayStr(char *arrayStr,
                         *dstptr++ = *srcptr++;
                     else if (*srcptr == typdelim)
                     {
-                        if (i == -1)
-                            i = ArrayGetOffset0(ndim, indx, prod);
                         itemdone = true;
-                        indx[ndim - 1]++;
                         srcptr++;
                     }
                     else if (scanner_isspace(*srcptr))
@@ -884,15 +869,18 @@ ReadArrayStr(char *arrayStr,
             }
         }

+        /* Terminate de-escaped string */
         Assert(dstptr < srcptr);
         *dstendptr = '\0';

-        if (i < 0 || i >= nitems)
+        /* Safety check that we don't write past the output arrays */
+        if (i >= nitems)
             ereturn(escontext, false,
                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                      errmsg("malformed array literal: \"%s\"",
                             origStr)));

+        /* Convert the de-escaped string into the next output array entries */
         if (Array_nulls && !hasquoting &&
             pg_strcasecmp(itemstart, "NULL") == 0)
         {
@@ -913,8 +901,17 @@ ReadArrayStr(char *arrayStr,
                 return false;
             nulls[i] = false;
         }
+
+        i++;
     }

+    /* Cross-check that we filled all the output array entries */
+    if (i != nitems)
+        ereturn(escontext, false,
+                (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                 errmsg("malformed array literal: \"%s\"",
+                        origStr)));
+
     /*
      * Check for nulls, compute total data space needed
      */
diff --git a/src/backend/utils/adt/arrayutils.c b/src/backend/utils/adt/arrayutils.c
index 62152f79f5..b8bccc7cca 100644
--- a/src/backend/utils/adt/arrayutils.c
+++ b/src/backend/utils/adt/arrayutils.c
@@ -43,21 +43,6 @@ ArrayGetOffset(int n, const int *dim, const int *lb, const int *indx)
     return offset;
 }

-/*
- * Same, but subscripts are assumed 0-based, and use a scale array
- * instead of raw dimension data (see mda_get_prod to create scale array)
- */
-int
-ArrayGetOffset0(int n, const int *tup, const int *scale)
-{
-    int            i,
-                lin = 0;
-
-    for (i = 0; i < n; i++)
-        lin += tup[i] * scale[i];
-    return lin;
-}
-
 /*
  * Convert array dimensions into number of elements
  *
diff --git a/src/include/utils/array.h b/src/include/utils/array.h
index b13dfb345e..d49adc38b7 100644
--- a/src/include/utils/array.h
+++ b/src/include/utils/array.h
@@ -448,7 +448,6 @@ extern void array_free_iterator(ArrayIterator iterator);
  */

 extern int    ArrayGetOffset(int n, const int *dim, const int *lb, const int *indx);
-extern int    ArrayGetOffset0(int n, const int *tup, const int *scale);
 extern int    ArrayGetNItems(int ndim, const int *dims);
 extern int    ArrayGetNItemsSafe(int ndim, const int *dims,
                                struct Node *escontext);
--
2.39.3

From b5a5efbd3f97f0e1cf2e16f5b2f057218b9f051b Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sat, 8 Jul 2023 11:59:20 -0400
Subject: [PATCH v3 2/3] Rewrite ArrayCount() to make dimensionality checks
 more complete.

ArrayCount has had a few layers of revision over the years,
reaching a point where it's really quite baroque and unintelligible.
There are actually four different arrays holding dimensions, which
can be reduced to two with little effort.  It was also close to
impossible to figure out why the dimension-counting actually worked
correctly.  Rewrite to make it perhaps a little less opaque.
In particular, a new element or subarray is now counted when we see
the start of the element or subarray, not at some later point where
we might not even be at the same nest_level anymore.

Also, install guards to catch non-rectangularity cases that were
previously missed, along the same lines as recent plperl and plpython
fixes: we were not checking that all scalar elements appear at the
same nesting depth.  Thanks to the very different logic, this seems
not to have caused any of the sort of internal errors that the PLs
suffered from, but it's still wrong.

On the other hand, the behavior of plperl and plpython suggests
that we should allow empty sub-arrays, as in '{{},{}}'; those
languages interpret equivalent constructs such as '[[],[]]' as
an empty (hence zero-dimensional) array, and it seems unclear
why array_in should not.  Remove the hack that was installed to
reject that case.

Also, fix things so that it's possible to write an empty array
with explicit bounds spec, along the lines of '[1:0]={}'.
Before, that was rejected with a complaint about upper bound
less than lower, but I don't see a good reason not to allow it.

In passing, remove ArrayParseState.ARRAY_ELEM_COMPLETED, a state
that the state machine never entered yet wasted cycles checking for.

(This patch looks a bit odd because I tried to avoid reindenting
existing code, despite having removed one level of loop.  That
seemed to me to make it easier to read the code changes.  A
follow-up pgindent run is needed.)
---
 src/backend/utils/adt/arrayfuncs.c   | 241 +++++++++++++++++----------
 src/test/regress/expected/arrays.out |  68 +++++++-
 src/test/regress/sql/arrays.sql      |  13 +-
 3 files changed, 230 insertions(+), 92 deletions(-)

diff --git a/src/backend/utils/adt/arrayfuncs.c b/src/backend/utils/adt/arrayfuncs.c
index 967aff8cf9..3f8a3af689 100644
--- a/src/backend/utils/adt/arrayfuncs.c
+++ b/src/backend/utils/adt/arrayfuncs.c
@@ -58,7 +58,6 @@ typedef enum
     ARRAY_NO_LEVEL,
     ARRAY_LEVEL_STARTED,
     ARRAY_ELEM_STARTED,
-    ARRAY_ELEM_COMPLETED,
     ARRAY_QUOTED_ELEM_STARTED,
     ARRAY_QUOTED_ELEM_COMPLETED,
     ARRAY_ELEM_DELIMITED,
@@ -302,10 +301,18 @@ array_in(PG_FUNCTION_ARGS)
         *q = '\0';
         ub = atoi(p);
         p = q + 1;
-        if (ub < lBound[ndim])
+
+        /* Upper bound of INT_MAX is disallowed, cf ArrayCheckBounds() */
+        if (ub == INT_MAX)
+            ereturn(escontext, (Datum) 0,
+                    (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
+                     errmsg("array upper bound is too large: %d",
+                            ub)));
+        /* Now it's safe to compute ub + 1 */
+        if (ub + 1 < lBound[ndim])
             ereturn(escontext, (Datum) 0,
                     (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
-                     errmsg("upper bound cannot be less than lower bound")));
+                     errmsg("upper bound cannot be less than lower bound minus one")));

         dim[ndim] = ub - lBound[ndim] + 1;
         ndim++;
@@ -440,7 +447,9 @@ array_in(PG_FUNCTION_ARGS)
  *     syntax-checking the array structure decoration (braces and delimiters).
  *
  * Returns number of dimensions as function result.  The axis lengths are
- * returned in dim[], which must be of size MAXDIM.
+ * returned in dim[], which must be of size MAXDIM.  This function does not
+ * special-case empty arrays: it will return a positive result with some
+ * zero axis length(s).
  *
  * If we detect an error, fill *escontext with error details and return -1
  * (unless escontext isn't provided, in which case errors will be thrown).
@@ -451,31 +460,22 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
     int            nest_level = 0,
                 i;
     int            ndim = 1,
-                temp[MAXDIM],
-                nelems[MAXDIM],
-                nelems_last[MAXDIM];
+                nelems[MAXDIM];
+    bool        ndim_frozen = false;
     bool        in_quotes = false;
     bool        eoArray = false;
-    bool        empty_array = true;
     const char *ptr;
     ArrayParseState parse_state = ARRAY_NO_LEVEL;

+    /* Initialize dim[] entries to -1 meaning "unknown" */
     for (i = 0; i < MAXDIM; ++i)
-    {
-        temp[i] = dim[i] = nelems_last[i] = 0;
-        nelems[i] = 1;
-    }
+        dim[i] = -1;

+    /* Scan string until we reach closing brace */
     ptr = str;
     while (!eoArray)
     {
-        bool        itemdone = false;
-
-        while (!itemdone)
-        {
-            if (parse_state == ARRAY_ELEM_STARTED ||
-                parse_state == ARRAY_QUOTED_ELEM_STARTED)
-                empty_array = false;
+        bool        new_element = false;

             switch (*ptr)
             {
@@ -492,17 +492,25 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                      * start, or after an element delimiter. In any case we
                      * now must be past an element start.
                      */
-                    if (parse_state != ARRAY_LEVEL_STARTED &&
-                        parse_state != ARRAY_ELEM_STARTED &&
-                        parse_state != ARRAY_QUOTED_ELEM_STARTED &&
-                        parse_state != ARRAY_ELEM_DELIMITED)
+                switch (parse_state)
+                {
+                    case ARRAY_LEVEL_STARTED:
+                    case ARRAY_ELEM_DELIMITED:
+                        /* start new unquoted element */
+                        parse_state = ARRAY_ELEM_STARTED;
+                        new_element = true;
+                        break;
+                    case ARRAY_ELEM_STARTED:
+                    case ARRAY_QUOTED_ELEM_STARTED:
+                        /* already in element */
+                        break;
+                    default:
                         ereturn(escontext, -1,
                                 (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                  errmsg("malformed array literal: \"%s\"", str),
                                  errdetail("Unexpected \"%c\" character.",
                                            '\\')));
-                    if (parse_state != ARRAY_QUOTED_ELEM_STARTED)
-                        parse_state = ARRAY_ELEM_STARTED;
+                }
                     /* skip the escaped character */
                     if (*(ptr + 1))
                         ptr++;
@@ -519,18 +527,28 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                      * element start, or after an element delimiter. In any
                      * case we now must be past an element start.
                      */
-                    if (parse_state != ARRAY_LEVEL_STARTED &&
-                        parse_state != ARRAY_QUOTED_ELEM_STARTED &&
-                        parse_state != ARRAY_ELEM_DELIMITED)
+                switch (parse_state)
+                {
+                    case ARRAY_LEVEL_STARTED:
+                    case ARRAY_ELEM_DELIMITED:
+                        /* start new quoted element */
+                        Assert(!in_quotes);
+                        in_quotes = true;
+                        parse_state = ARRAY_QUOTED_ELEM_STARTED;
+                        new_element = true;
+                        break;
+                    case ARRAY_QUOTED_ELEM_STARTED:
+                        /* already in element, end it */
+                        Assert(in_quotes);
+                        in_quotes = false;
+                        parse_state = ARRAY_QUOTED_ELEM_COMPLETED;
+                        break;
+                    default:
                         ereturn(escontext, -1,
                                 (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                  errmsg("malformed array literal: \"%s\"", str),
                                  errdetail("Unexpected array element.")));
-                    in_quotes = !in_quotes;
-                    if (in_quotes)
-                        parse_state = ARRAY_QUOTED_ELEM_STARTED;
-                    else
-                        parse_state = ARRAY_QUOTED_ELEM_COMPLETED;
+                }
                     break;
                 case '{':
                     if (!in_quotes)
@@ -538,27 +556,52 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                         /*
                          * A left brace can occur if no nesting has occurred
                          * yet, after a level start, or after a level
-                         * delimiter.
+                         * delimiter.  If we see one after an element
+                         * delimiter, we have something like "{1,{2}}", so
+                         * complain about non-rectangularity.
                          */
-                        if (parse_state != ARRAY_NO_LEVEL &&
-                            parse_state != ARRAY_LEVEL_STARTED &&
-                            parse_state != ARRAY_LEVEL_DELIMITED)
+                    switch (parse_state)
+                    {
+                        case ARRAY_NO_LEVEL:
+                        case ARRAY_LEVEL_STARTED:
+                        case ARRAY_LEVEL_DELIMITED:
+                            /* okay */
+                            break;
+                        case ARRAY_ELEM_DELIMITED:
+                            ereturn(escontext, -1,
+                                    (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                                     errmsg("malformed array literal: \"%s\"", str),
+                                     errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
+                        default:
                             ereturn(escontext, -1,
                                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                      errmsg("malformed array literal: \"%s\"", str),
                                      errdetail("Unexpected \"%c\" character.",
                                                '{')));
+                    }
                         parse_state = ARRAY_LEVEL_STARTED;
+                    /* Nested sub-arrays count as elements of outer level */
+                    if (nest_level > 0)
+                        nelems[nest_level - 1]++;
+                    /* Initialize element counting in the new level */
                         if (nest_level >= MAXDIM)
                             ereturn(escontext, -1,
                                     (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
                                      errmsg("number of array dimensions (%d) exceeds the maximum allowed (%d)",
                                             nest_level + 1, MAXDIM)));
-                        temp[nest_level] = 0;
+                    nelems[nest_level] = 0;
                         nest_level++;
                         if (ndim < nest_level)
+                    {
+                        /* Can't increase ndim once it's frozen */
+                        if (ndim_frozen)
+                            ereturn(escontext, -1,
+                                    (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                                     errmsg("malformed array literal: \"%s\"", str),
+                                     errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
                             ndim = nest_level;
                     }
+                }
                     break;
                 case '}':
                     if (!in_quotes)
@@ -566,46 +609,56 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                         /*
                          * A right brace can occur after an element start, an
                          * element completion, a quoted element completion, or
-                         * a level completion.
+                         * a level completion.  We also allow it after a level
+                         * start, that is an empty sub-array "{}" --- but that
+                         * freezes the number of dimensions and all such
+                         * sub-arrays must be at the same level, just like
+                         * sub-arrays containing elements.
                          */
-                        if (parse_state != ARRAY_ELEM_STARTED &&
-                            parse_state != ARRAY_ELEM_COMPLETED &&
-                            parse_state != ARRAY_QUOTED_ELEM_COMPLETED &&
-                            parse_state != ARRAY_LEVEL_COMPLETED &&
-                            !(nest_level == 1 && parse_state == ARRAY_LEVEL_STARTED))
+                    switch (parse_state)
+                    {
+                        case ARRAY_ELEM_STARTED:
+                        case ARRAY_QUOTED_ELEM_COMPLETED:
+                        case ARRAY_LEVEL_COMPLETED:
+                            /* okay */
+                            break;
+                        case ARRAY_LEVEL_STARTED:
+                            /* empty sub-array: OK if at correct nest_level */
+                            ndim_frozen = true;
+                            if (nest_level != ndim)
                             ereturn(escontext, -1,
                                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                      errmsg("malformed array literal: \"%s\"", str),
-                                     errdetail("Unexpected \"%c\" character.",
-                                               '}')));
-                        parse_state = ARRAY_LEVEL_COMPLETED;
-                        if (nest_level == 0)
+                                         errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
+                            break;
+                        default:
                             ereturn(escontext, -1,
                                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                      errmsg("malformed array literal: \"%s\"", str),
-                                     errdetail("Unmatched \"%c\" character.", '}')));
+                                     errdetail("Unexpected \"%c\" character.",
+                                               '}')));
+                    }
+                    parse_state = ARRAY_LEVEL_COMPLETED;
+                    /* The parse state check assured we're in a level. */
+                    Assert(nest_level > 0);
                         nest_level--;

-                        if (nelems_last[nest_level] != 0 &&
-                            nelems[nest_level] != nelems_last[nest_level])
+                    if (dim[nest_level] < 0)
+                    {
+                        /* Save length of first sub-array of this level */
+                        dim[nest_level] = nelems[nest_level];
+                    }
+                    else if (nelems[nest_level] != dim[nest_level])
+                    {
+                        /* Subsequent sub-arrays must have same length */
                             ereturn(escontext, -1,
                                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                      errmsg("malformed array literal: \"%s\"", str),
-                                     errdetail("Multidimensional arrays must have "
-                                               "sub-arrays with matching "
-                                               "dimensions.")));
-                        nelems_last[nest_level] = nelems[nest_level];
-                        nelems[nest_level] = 1;
-                        if (nest_level == 0)
-                            eoArray = itemdone = true;
-                        else
-                        {
-                            /*
-                             * We don't set itemdone here; see comments in
-                             * ReadArrayStr
-                             */
-                            temp[nest_level - 1]++;
+                                 errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
                         }
+                    /* Done if this is the outermost level's '}' */
+                    if (nest_level == 0)
+                        eoArray = true;
                     }
                     break;
                 default:
@@ -614,12 +667,11 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                         if (*ptr == typdelim)
                         {
                             /*
-                             * Delimiters can occur after an element start, an
-                             * element completion, a quoted element
-                             * completion, or a level completion.
+                             * Delimiters can occur after an element start, a
+                             * quoted element completion, or a level
+                             * completion.
                              */
                             if (parse_state != ARRAY_ELEM_STARTED &&
-                                parse_state != ARRAY_ELEM_COMPLETED &&
                                 parse_state != ARRAY_QUOTED_ELEM_COMPLETED &&
                                 parse_state != ARRAY_LEVEL_COMPLETED)
                                 ereturn(escontext, -1,
@@ -631,8 +683,6 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                                 parse_state = ARRAY_LEVEL_DELIMITED;
                             else
                                 parse_state = ARRAY_ELEM_DELIMITED;
-                            itemdone = true;
-                            nelems[nest_level - 1]++;
                         }
                         else if (!scanner_isspace(*ptr))
                         {
@@ -641,23 +691,51 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                              * level start, after an element start, or after
                              * an element delimiter. In any case we now must
                              * be past an element start.
+                             *
+                             * If it's a space character, we can ignore it; it
+                             * might be data or not, but it doesn't change the
+                             * parsing state.
                              */
-                            if (parse_state != ARRAY_LEVEL_STARTED &&
-                                parse_state != ARRAY_ELEM_STARTED &&
-                                parse_state != ARRAY_ELEM_DELIMITED)
+                        switch (parse_state)
+                        {
+                            case ARRAY_LEVEL_STARTED:
+                            case ARRAY_ELEM_DELIMITED:
+                                /* start new unquoted element */
+                                parse_state = ARRAY_ELEM_STARTED;
+                                new_element = true;
+                                break;
+                            case ARRAY_ELEM_STARTED:
+                                /* already in element */
+                                break;
+                            default:
                                 ereturn(escontext, -1,
                                         (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                          errmsg("malformed array literal: \"%s\"", str),
                                          errdetail("Unexpected array element.")));
-                            parse_state = ARRAY_ELEM_STARTED;
+                        }
                         }
                     }
                     break;
             }
-            if (!itemdone)
-                ptr++;
+
+        /* To reduce duplication, all new-element cases go through here. */
+        if (new_element)
+        {
+            /*
+             * Once we have found an element, the number of dimensions can no
+             * longer increase, and subsequent elements must all be at the
+             * same nesting depth.
+             */
+            ndim_frozen = true;
+            if (nest_level != ndim)
+                ereturn(escontext, -1,
+                        (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                         errmsg("malformed array literal: \"%s\"", str),
+                         errdetail("Multidimensional arrays must have sub-arrays with matching dimensions.")));
+            /* Count the new element */
+            nelems[nest_level - 1]++;
         }
-        temp[ndim - 1]++;
+
         ptr++;
     }

@@ -671,13 +749,6 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                      errdetail("Junk after closing right brace.")));
     }

-    /* special case for an empty array */
-    if (empty_array)
-        return 0;
-
-    for (i = 0; i < ndim; ++i)
-        dim[i] = temp[i];
-
     return ndim;
 }

diff --git a/src/test/regress/expected/arrays.out b/src/test/regress/expected/arrays.out
index 7064391468..26d4281d94 100644
--- a/src/test/regress/expected/arrays.out
+++ b/src/test/regress/expected/arrays.out
@@ -1475,12 +1475,7 @@ select '{{1,{2}},{2,3}}'::text[];
 ERROR:  malformed array literal: "{{1,{2}},{2,3}}"
 LINE 1: select '{{1,{2}},{2,3}}'::text[];
                ^
-DETAIL:  Unexpected "{" character.
-select '{{},{}}'::text[];
-ERROR:  malformed array literal: "{{},{}}"
-LINE 1: select '{{},{}}'::text[];
-               ^
-DETAIL:  Unexpected "}" character.
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
 select E'{{1,2},\\{2,3}}'::text[];
 ERROR:  malformed array literal: "{{1,2},\{2,3}}"
 LINE 1: select E'{{1,2},\\{2,3}}'::text[];
@@ -1501,6 +1496,49 @@ ERROR:  malformed array literal: "{ }}"
 LINE 1: select '{ }}'::text[];
                ^
 DETAIL:  Junk after closing right brace.
+select '{{1},{{2}}}'::text[];
+ERROR:  malformed array literal: "{{1},{{2}}}"
+LINE 1: select '{{1},{{2}}}'::text[];
+               ^
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
+select '{{{1}},{2}}'::text[];
+ERROR:  malformed array literal: "{{{1}},{2}}"
+LINE 1: select '{{{1}},{2}}'::text[];
+               ^
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
+select '{{},{{}}}'::text[];
+ERROR:  malformed array literal: "{{},{{}}}"
+LINE 1: select '{{},{{}}}'::text[];
+               ^
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
+select '{{{}},{}}'::text[];
+ERROR:  malformed array literal: "{{{}},{}}"
+LINE 1: select '{{{}},{}}'::text[];
+               ^
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
+select '{{1},{}}'::text[];
+ERROR:  malformed array literal: "{{1},{}}"
+LINE 1: select '{{1},{}}'::text[];
+               ^
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
+select '{{},{1}}'::text[];
+ERROR:  malformed array literal: "{{},{1}}"
+LINE 1: select '{{},{1}}'::text[];
+               ^
+DETAIL:  Multidimensional arrays must have sub-arrays with matching dimensions.
+select '[2147483646:2147483647]={1,2}'::int[];
+ERROR:  array upper bound is too large: 2147483647
+LINE 1: select '[2147483646:2147483647]={1,2}'::int[];
+               ^
+select '[1:-1]={}'::int[];
+ERROR:  upper bound cannot be less than lower bound minus one
+LINE 1: select '[1:-1]={}'::int[];
+               ^
+select '[1:0]={1}'::int[];
+ERROR:  malformed array literal: "[1:0]={1}"
+LINE 1: select '[1:0]={1}'::int[];
+               ^
+DETAIL:  Specified array dimensions do not match array contents.
 select array[];
 ERROR:  cannot determine type of empty array
 LINE 1: select array[];
@@ -1514,6 +1552,12 @@ select '{}'::text[];
  {}
 (1 row)

+select '{{},{}}'::text[];
+ text
+------
+ {}
+(1 row)
+
 select '{{{1,2,3,4},{2,3,4,5}},{{3,4,5,6},{4,5,6,7}}}'::text[];
                      text
 -----------------------------------------------
@@ -1559,6 +1603,18 @@ select '[0:1]={1.1,2.2}'::float8[];
  [0:1]={1.1,2.2}
 (1 row)

+select '[2147483646:2147483646]={1}'::int[];
+            int4
+-----------------------------
+ [2147483646:2147483646]={1}
+(1 row)
+
+select '[1:0]={}'::int[];
+ int4
+------
+ {}
+(1 row)
+
 -- all of the above should be accepted
 -- tests for array aggregates
 CREATE TEMP TABLE arraggtest ( f1 INT[], f2 TEXT[][], f3 FLOAT[]);
diff --git a/src/test/regress/sql/arrays.sql b/src/test/regress/sql/arrays.sql
index f1375621e0..b7e2b180cc 100644
--- a/src/test/regress/sql/arrays.sql
+++ b/src/test/regress/sql/arrays.sql
@@ -454,16 +454,25 @@ select 'foo' ilike all (array['F%', '%O']); -- t

 -- none of the following should be accepted
 select '{{1,{2}},{2,3}}'::text[];
-select '{{},{}}'::text[];
 select E'{{1,2},\\{2,3}}'::text[];
 select '{{"1 2" x},{3}}'::text[];
 select '{}}'::text[];
 select '{ }}'::text[];
+select '{{1},{{2}}}'::text[];
+select '{{{1}},{2}}'::text[];
+select '{{},{{}}}'::text[];
+select '{{{}},{}}'::text[];
+select '{{1},{}}'::text[];
+select '{{},{1}}'::text[];
+select '[2147483646:2147483647]={1,2}'::int[];
+select '[1:-1]={}'::int[];
+select '[1:0]={1}'::int[];
 select array[];
 -- none of the above should be accepted

 -- all of the following should be accepted
 select '{}'::text[];
+select '{{},{}}'::text[];
 select '{{{1,2,3,4},{2,3,4,5}},{{3,4,5,6},{4,5,6,7}}}'::text[];
 select '{0 second  ,0 second}'::interval[];
 select '{ { "," } , { 3 } }'::text[];
@@ -474,6 +483,8 @@ select '{
          }'::interval[];
 select array[]::text[];
 select '[0:1]={1.1,2.2}'::float8[];
+select '[2147483646:2147483646]={1}'::int[];
+select '[1:0]={}'::int[];
 -- all of the above should be accepted

 -- tests for array aggregates
--
2.39.3

From 90cbfe46315369888135e091028344a9d70351be Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sat, 8 Jul 2023 12:03:27 -0400
Subject: [PATCH v3 3/3] Re-indent ArrayCount().

This cleans up after the removal of the "while (!itemdone)" loop.
---
 src/backend/utils/adt/arrayfuncs.c | 214 ++++++++++++++---------------
 1 file changed, 106 insertions(+), 108 deletions(-)

diff --git a/src/backend/utils/adt/arrayfuncs.c b/src/backend/utils/adt/arrayfuncs.c
index 3f8a3af689..c96fd46917 100644
--- a/src/backend/utils/adt/arrayfuncs.c
+++ b/src/backend/utils/adt/arrayfuncs.c
@@ -477,21 +477,21 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
     {
         bool        new_element = false;

-            switch (*ptr)
-            {
-                case '\0':
-                    /* Signal a premature end of the string */
-                    ereturn(escontext, -1,
-                            (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
-                             errmsg("malformed array literal: \"%s\"", str),
-                             errdetail("Unexpected end of input.")));
-                case '\\':
+        switch (*ptr)
+        {
+            case '\0':
+                /* Signal a premature end of the string */
+                ereturn(escontext, -1,
+                        (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                         errmsg("malformed array literal: \"%s\"", str),
+                         errdetail("Unexpected end of input.")));
+            case '\\':

-                    /*
-                     * An escape must be after a level start, after an element
-                     * start, or after an element delimiter. In any case we
-                     * now must be past an element start.
-                     */
+                /*
+                 * An escape must be after a level start, after an element
+                 * start, or after an element delimiter. In any case we now
+                 * must be past an element start.
+                 */
                 switch (parse_state)
                 {
                     case ARRAY_LEVEL_STARTED:
@@ -511,22 +511,22 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                                  errdetail("Unexpected \"%c\" character.",
                                            '\\')));
                 }
-                    /* skip the escaped character */
-                    if (*(ptr + 1))
-                        ptr++;
-                    else
-                        ereturn(escontext, -1,
-                                (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
-                                 errmsg("malformed array literal: \"%s\"", str),
-                                 errdetail("Unexpected end of input.")));
-                    break;
-                case '"':
+                /* skip the escaped character */
+                if (*(ptr + 1))
+                    ptr++;
+                else
+                    ereturn(escontext, -1,
+                            (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                             errmsg("malformed array literal: \"%s\"", str),
+                             errdetail("Unexpected end of input.")));
+                break;
+            case '"':

-                    /*
-                     * A quote must be after a level start, after a quoted
-                     * element start, or after an element delimiter. In any
-                     * case we now must be past an element start.
-                     */
+                /*
+                 * A quote must be after a level start, after a quoted element
+                 * start, or after an element delimiter. In any case we now
+                 * must be past an element start.
+                 */
                 switch (parse_state)
                 {
                     case ARRAY_LEVEL_STARTED:
@@ -549,17 +549,16 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                                  errmsg("malformed array literal: \"%s\"", str),
                                  errdetail("Unexpected array element.")));
                 }
-                    break;
-                case '{':
-                    if (!in_quotes)
-                    {
-                        /*
-                         * A left brace can occur if no nesting has occurred
-                         * yet, after a level start, or after a level
-                         * delimiter.  If we see one after an element
-                         * delimiter, we have something like "{1,{2}}", so
-                         * complain about non-rectangularity.
-                         */
+                break;
+            case '{':
+                if (!in_quotes)
+                {
+                    /*
+                     * A left brace can occur if no nesting has occurred yet,
+                     * after a level start, or after a level delimiter.  If we
+                     * see one after an element delimiter, we have something
+                     * like "{1,{2}}", so complain about non-rectangularity.
+                     */
                     switch (parse_state)
                     {
                         case ARRAY_NO_LEVEL:
@@ -579,19 +578,19 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                                      errdetail("Unexpected \"%c\" character.",
                                                '{')));
                     }
-                        parse_state = ARRAY_LEVEL_STARTED;
+                    parse_state = ARRAY_LEVEL_STARTED;
                     /* Nested sub-arrays count as elements of outer level */
                     if (nest_level > 0)
                         nelems[nest_level - 1]++;
                     /* Initialize element counting in the new level */
-                        if (nest_level >= MAXDIM)
-                            ereturn(escontext, -1,
-                                    (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
-                                     errmsg("number of array dimensions (%d) exceeds the maximum allowed (%d)",
-                                            nest_level + 1, MAXDIM)));
+                    if (nest_level >= MAXDIM)
+                        ereturn(escontext, -1,
+                                (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
+                                 errmsg("number of array dimensions (%d) exceeds the maximum allowed (%d)",
+                                        nest_level + 1, MAXDIM)));
                     nelems[nest_level] = 0;
-                        nest_level++;
-                        if (ndim < nest_level)
+                    nest_level++;
+                    if (ndim < nest_level)
                     {
                         /* Can't increase ndim once it's frozen */
                         if (ndim_frozen)
@@ -599,22 +598,22 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                                     (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
                                      errmsg("malformed array literal: \"%s\"", str),
                                      errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
-                            ndim = nest_level;
+                        ndim = nest_level;
                     }
                 }
-                    break;
-                case '}':
-                    if (!in_quotes)
-                    {
-                        /*
-                         * A right brace can occur after an element start, an
-                         * element completion, a quoted element completion, or
-                         * a level completion.  We also allow it after a level
-                         * start, that is an empty sub-array "{}" --- but that
-                         * freezes the number of dimensions and all such
-                         * sub-arrays must be at the same level, just like
-                         * sub-arrays containing elements.
-                         */
+                break;
+            case '}':
+                if (!in_quotes)
+                {
+                    /*
+                     * A right brace can occur after an element start, an
+                     * element completion, a quoted element completion, or a
+                     * level completion.  We also allow it after a level
+                     * start, that is an empty sub-array "{}" --- but that
+                     * freezes the number of dimensions and all such
+                     * sub-arrays must be at the same level, just like
+                     * sub-arrays containing elements.
+                     */
                     switch (parse_state)
                     {
                         case ARRAY_ELEM_STARTED:
@@ -626,9 +625,9 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                             /* empty sub-array: OK if at correct nest_level */
                             ndim_frozen = true;
                             if (nest_level != ndim)
-                            ereturn(escontext, -1,
-                                    (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
-                                     errmsg("malformed array literal: \"%s\"", str),
+                                ereturn(escontext, -1,
+                                        (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                                         errmsg("malformed array literal: \"%s\"", str),
                                          errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
                             break;
                         default:
@@ -641,7 +640,7 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                     parse_state = ARRAY_LEVEL_COMPLETED;
                     /* The parse state check assured we're in a level. */
                     Assert(nest_level > 0);
-                        nest_level--;
+                    nest_level--;

                     if (dim[nest_level] < 0)
                     {
@@ -651,51 +650,50 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                     else if (nelems[nest_level] != dim[nest_level])
                     {
                         /* Subsequent sub-arrays must have same length */
-                            ereturn(escontext, -1,
-                                    (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
-                                     errmsg("malformed array literal: \"%s\"", str),
+                        ereturn(escontext, -1,
+                                (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                                 errmsg("malformed array literal: \"%s\"", str),
                                  errdetail("Multidimensional arrays must have sub-arrays with matching
dimensions.")));
-                        }
+                    }
                     /* Done if this is the outermost level's '}' */
                     if (nest_level == 0)
                         eoArray = true;
+                }
+                break;
+            default:
+                if (!in_quotes)
+                {
+                    if (*ptr == typdelim)
+                    {
+                        /*
+                         * Delimiters can occur after an element start, a
+                         * quoted element completion, or a level completion.
+                         */
+                        if (parse_state != ARRAY_ELEM_STARTED &&
+                            parse_state != ARRAY_QUOTED_ELEM_COMPLETED &&
+                            parse_state != ARRAY_LEVEL_COMPLETED)
+                            ereturn(escontext, -1,
+                                    (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
+                                     errmsg("malformed array literal: \"%s\"", str),
+                                     errdetail("Unexpected \"%c\" character.",
+                                               typdelim)));
+                        if (parse_state == ARRAY_LEVEL_COMPLETED)
+                            parse_state = ARRAY_LEVEL_DELIMITED;
+                        else
+                            parse_state = ARRAY_ELEM_DELIMITED;
                     }
-                    break;
-                default:
-                    if (!in_quotes)
+                    else if (!scanner_isspace(*ptr))
                     {
-                        if (*ptr == typdelim)
-                        {
-                            /*
-                             * Delimiters can occur after an element start, a
-                             * quoted element completion, or a level
-                             * completion.
-                             */
-                            if (parse_state != ARRAY_ELEM_STARTED &&
-                                parse_state != ARRAY_QUOTED_ELEM_COMPLETED &&
-                                parse_state != ARRAY_LEVEL_COMPLETED)
-                                ereturn(escontext, -1,
-                                        (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
-                                         errmsg("malformed array literal: \"%s\"", str),
-                                         errdetail("Unexpected \"%c\" character.",
-                                                   typdelim)));
-                            if (parse_state == ARRAY_LEVEL_COMPLETED)
-                                parse_state = ARRAY_LEVEL_DELIMITED;
-                            else
-                                parse_state = ARRAY_ELEM_DELIMITED;
-                        }
-                        else if (!scanner_isspace(*ptr))
-                        {
-                            /*
-                             * Other non-space characters must be after a
-                             * level start, after an element start, or after
-                             * an element delimiter. In any case we now must
-                             * be past an element start.
-                             *
-                             * If it's a space character, we can ignore it; it
-                             * might be data or not, but it doesn't change the
-                             * parsing state.
-                             */
+                        /*
+                         * Other non-space characters must be after a level
+                         * start, after an element start, or after an element
+                         * delimiter. In any case we now must be past an
+                         * element start.
+                         *
+                         * If it's a space character, we can ignore it; it
+                         * might be data or not, but it doesn't change the
+                         * parsing state.
+                         */
                         switch (parse_state)
                         {
                             case ARRAY_LEVEL_STARTED:
@@ -713,10 +711,10 @@ ArrayCount(const char *str, int *dim, char typdelim, Node *escontext)
                                          errmsg("malformed array literal: \"%s\"", str),
                                          errdetail("Unexpected array element.")));
                         }
-                        }
                     }
-                    break;
-            }
+                }
+                break;
+        }

         /* To reduce duplication, all new-element cases go through here. */
         if (new_element)
--
2.39.3


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Joseph Koshakow
Дата:
Сообщение: Re: Infinite Interval
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Re: Cleaning up array_in()