LCOV - code coverage report
Current view: top level - sql/backends/monet5 - sql_assert.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 25 35 71.4 %
Date: 2024-04-25 20:03:45 Functions: 3 5 60.0 %

          Line data    Source code
       1             : /*
       2             :  * SPDX-License-Identifier: MPL-2.0
       3             :  *
       4             :  * This Source Code Form is subject to the terms of the Mozilla Public
       5             :  * License, v. 2.0.  If a copy of the MPL was not distributed with this
       6             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       7             :  *
       8             :  * Copyright 2024 MonetDB Foundation;
       9             :  * Copyright August 2008 - 2023 MonetDB B.V.;
      10             :  * Copyright 1997 - July 2008 CWI.
      11             :  */
      12             : 
      13             : /*
      14             :  * @f sql_scenario
      15             :  * @t SQL catwalk management
      16             :  * @a N. Nes, M.L. Kersten
      17             :  * @+ SQL scenario
      18             :  * The SQL scenario implementation is a derivative of the MAL session scenario.
      19             :  *
      20             :  * It is also the first version that uses state records attached to
      21             :  * the client record. They are initialized as part of the initialization
      22             :  * phase of the scenario.
      23             :  *
      24             :  */
      25             : /*
      26             :  * @+ Scenario routines
      27             :  * Before we are can process SQL statements the global catalog
      28             :  * should be initialized. Thereafter, each time a client enters
      29             :  * we update its context descriptor to denote an SQL scenario.
      30             :  */
      31             : #include "monetdb_config.h"
      32             : #include "mal_backend.h"
      33             : #include "sql_assert.h"
      34             : #include "sql_scenario.h"
      35             : /*
      36             :  * Assertion errors detected during the execution of a code block
      37             :  * raise an exception. A debugger dump is generated upon request
      38             :  * to ease debugging.
      39             :  */
      40             : static inline str
      41       36275 : do_assert(bool flg, const char *msg)
      42             : {
      43       36275 :         if (flg) {
      44         345 :                 if (strlen(msg) > 6 &&
      45         345 :                     msg[5] == '!' &&
      46         306 :                     (isdigit((unsigned char) msg[0]) ||
      47         306 :                      isupper((unsigned char) msg[0])) &&
      48         306 :                     (isdigit((unsigned char) msg[1]) ||
      49         306 :                      isupper((unsigned char) msg[1])) &&
      50         306 :                     (isdigit((unsigned char) msg[2]) ||
      51         306 :                      isupper((unsigned char) msg[2])) &&
      52         306 :                     (isdigit((unsigned char) msg[3]) ||
      53         306 :                      isupper((unsigned char) msg[3])) &&
      54         306 :                     (isdigit((unsigned char) msg[4]) ||
      55             :                      isupper((unsigned char) msg[4])))
      56         306 :                         throw(SQL, "assert", "%s", msg); /* includes state */
      57          39 :                 throw(SQL, "assert", SQLSTATE(M0M29) "%s", msg);
      58             :         }
      59             :         return MAL_SUCCEED;
      60             : }
      61             : str
      62       24959 : SQLassert(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
      63             : {
      64       24959 :         (void) cntxt;
      65       24959 :         (void) mb;
      66       24959 :         return do_assert((bool) *getArgReference_bit(stk, pci, 1),
      67       24959 :                          *getArgReference_str(stk, pci, 2));
      68             : }
      69             : 
      70             : str
      71           0 : SQLassertInt(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
      72             : {
      73           0 :         (void) cntxt;
      74           0 :         (void) mb;
      75           0 :         return do_assert((bool) *getArgReference_int(stk, pci, 1),
      76           0 :                          *getArgReference_str(stk, pci, 2));
      77             : }
      78             : 
      79             : str
      80       11316 : SQLassertLng(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
      81             : {
      82       11316 :         (void) cntxt;
      83       11316 :         (void) mb;
      84       11316 :         return do_assert((bool) *getArgReference_lng(stk, pci, 1),
      85       11316 :                          *getArgReference_str(stk, pci, 2));
      86             : }
      87             : 
      88             : #ifdef HAVE_HGE
      89             : str
      90           0 : SQLassertHge(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
      91             : {
      92           0 :         (void) cntxt;
      93           0 :         (void) mb;
      94           0 :         return do_assert((bool) *getArgReference_hge(stk, pci, 1),
      95           0 :                          *getArgReference_str(stk, pci, 2));
      96             : }
      97             : #endif

Generated by: LCOV version 1.14