8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-25 00:43:03 +01:00
firebird-mirror/src/dsql/gen.cpp

2567 lines
66 KiB
C++
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: Dynamic SQL runtime support
2003-10-05 08:27:16 +02:00
* MODULE: gen.cpp
2001-05-23 15:26:42 +02:00
* DESCRIPTION: Routines to generate BLR.
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
2002-06-29 08:56:51 +02:00
* Contributor(s): ______________________________________
* 2001.6.21 Claudio Valderrama: BREAK and SUBSTRING.
* 2001.07.28 John Bellardo: Added code to generate blr_skip.
* 2002.07.30 Arno Brinkman: Added code, procedures to generate COALESCE, CASE
* 2002.09.28 Dmitry Yemanov: Reworked internal_info stuff, enhanced
* exception handling in SPs/triggers,
* implemented ROWS_AFFECTED system variable
* 2002.10.21 Nickolay Samofatov: Added support for explicit pessimistic locks
* 2002.10.29 Nickolay Samofatov: Added support for savepoints
* 2003.10.05 Dmitry Yemanov: Added support for explicit cursors in PSQL
* 2004.01.16 Vlad Horsun: Added support for default parameters and
* EXECUTE BLOCK statement
2007-04-13 03:37:44 +02:00
* Adriano dos Santos Fernandes
2001-05-23 15:26:42 +02:00
*/
#include "firebird.h"
2001-05-23 15:26:42 +02:00
#include <string.h>
#include <stdio.h>
#include "../dsql/dsql.h"
2008-02-28 14:48:16 +01:00
#include "../dsql/node.h"
#include "../dsql/DdlNodes.h"
#include "../dsql/StmtNodes.h"
2003-11-08 00:27:24 +01:00
#include "../jrd/ibase.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/align.h"
2005-05-28 00:45:31 +02:00
#include "../jrd/constants.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/intl.h"
2008-02-28 14:48:16 +01:00
#include "../jrd/jrd.h"
#include "../jrd/val.h"
2001-05-23 15:26:42 +02:00
#include "../dsql/ddl_proto.h"
#include "../dsql/errd_proto.h"
#include "../dsql/gen_proto.h"
#include "../dsql/make_proto.h"
#include "../dsql/metd_proto.h"
#include "../dsql/utld_proto.h"
2005-05-28 00:45:31 +02:00
#include "../jrd/thread_proto.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/dsc_proto.h"
#include "../jrd/why_proto.h"
#include "gen/iberror.h"
#include "../common/StatusArg.h"
2001-05-23 15:26:42 +02:00
2008-02-28 14:48:16 +01:00
using namespace Jrd;
using namespace Dsql;
using namespace Firebird;
2008-02-28 14:48:16 +01:00
static void gen_aggregate(DsqlCompilerScratch*, const dsql_nod*);
static void gen_cast(DsqlCompilerScratch*, const dsql_nod*);
static void gen_coalesce(DsqlCompilerScratch*, const dsql_nod*);
static void gen_constant(DsqlCompilerScratch*, const dsc*, bool);
static void gen_error_condition(DsqlCompilerScratch*, const dsql_nod*);
static void gen_exec_stmt(DsqlCompilerScratch* dsqlScratch, const dsql_nod* node);
static void gen_field(DsqlCompilerScratch*, const dsql_ctx*, const dsql_fld*, dsql_nod*);
static void gen_join_rse(DsqlCompilerScratch*, const dsql_nod*);
static void gen_map(DsqlCompilerScratch*, dsql_map*);
static inline void gen_optional_expr(DsqlCompilerScratch*, const UCHAR code, dsql_nod*);
static void gen_plan(DsqlCompilerScratch*, const dsql_nod*);
static void gen_relation(DsqlCompilerScratch*, dsql_ctx*);
static void gen_searched_case(DsqlCompilerScratch*, const dsql_nod*);
2009-12-21 15:20:26 +01:00
static void gen_select(DsqlCompilerScratch*, dsql_nod*);
static void gen_simple_case(DsqlCompilerScratch*, const dsql_nod*);
static void gen_sort(DsqlCompilerScratch*, dsql_nod*);
static void gen_statement(DsqlCompilerScratch*, const dsql_nod*);
static void gen_table_lock(DsqlCompilerScratch*, const dsql_nod*, USHORT);
static void gen_union(DsqlCompilerScratch*, const dsql_nod*);
static void stuff_context(DsqlCompilerScratch*, const dsql_ctx*);
2001-05-23 15:26:42 +02:00
void GEN_hidden_variables(DsqlCompilerScratch* dsqlScratch, bool inExpression)
{
/**************************************
*
* G E N _ h i d d e n _ v a r i a b l e s
*
**************************************
*
* Function
* Emit BLR for hidden variables.
*
**************************************/
if (dsqlScratch->hiddenVars.isEmpty())
return;
if (inExpression)
{
dsqlScratch->appendUChar(blr_stmt_expr);
if (dsqlScratch->hiddenVars.getCount() > 1)
dsqlScratch->appendUChar(blr_begin);
}
for (DsqlNodStack::const_iterator i(dsqlScratch->hiddenVars); i.hasData(); ++i)
{
2008-09-03 14:18:59 +02:00
const dsql_nod* varNode = i.object()->nod_arg[1];
const dsql_var* var = (dsql_var*) varNode->nod_arg[e_var_variable];
dsqlScratch->appendUChar(blr_dcl_variable);
dsqlScratch->appendUShort(var->var_variable_number);
GEN_descriptor(dsqlScratch, &varNode->nod_desc, true);
}
if (inExpression && dsqlScratch->hiddenVars.getCount() > 1)
dsqlScratch->appendUChar(blr_end);
// Clear it for GEN_expr not regenerate them.
dsqlScratch->hiddenVars.clear();
}
/**
GEN_expr
@brief Generate blr for an arbitrary expression.
@param dsqlScratch
@param node
**/
void GEN_expr(DsqlCompilerScratch* dsqlScratch, dsql_nod* node)
2001-05-23 15:26:42 +02:00
{
UCHAR blr_operator;
2008-07-02 11:46:44 +02:00
const dsql_ctx* context;
2001-05-23 15:26:42 +02:00
2009-01-06 06:53:34 +01:00
switch (node->nod_type)
{
case nod_class_exprnode:
{
ExprNode* exprNode = reinterpret_cast<ExprNode*>(node->nod_arg[0]);
exprNode->genBlr(dsqlScratch);
// Check whether the node we just processed is for a dialect 3
// operation which gives a different result than the corresponding
// operation in dialect 1. If it is, and if the client dialect is 2,
// issue a warning about the difference.
// ASF: Shouldn't we check nod_gen_id2 too?
if (exprNode->dsqlCompatDialectVerb &&
dsqlScratch->clientDialect == SQL_DIALECT_V6_TRANSITION)
{
dsc desc;
MAKE_desc(dsqlScratch, &desc, node, NULL);
if (desc.dsc_dtype == dtype_int64)
{
ERRD_post_warning(
Arg::Warning(isc_dsql_dialect_warning_expr) <<
Arg::Str(exprNode->dsqlCompatDialectVerb));
}
}
return;
}
2001-05-23 15:26:42 +02:00
case nod_alias:
GEN_expr(dsqlScratch, node->nod_arg[e_alias_value]);
2001-05-23 15:26:42 +02:00
return;
case nod_aggregate:
gen_aggregate(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
return;
case nod_constant:
GEN_constant(dsqlScratch, node, false);
2001-05-23 15:26:42 +02:00
return;
case nod_derived_field:
// ASF: If we are not referencing a field, we should evaluate the expression based on
// a set (ORed) of contexts. If any of them are in a valid position the expression is
// evaluated, otherwise a NULL will be returned. This is fix for CORE-1246.
if (node->nod_arg[e_derived_field_value]->nod_type != nod_derived_field &&
node->nod_arg[e_derived_field_value]->nod_type != nod_field &&
node->nod_arg[e_derived_field_value]->nod_type != nod_dbkey &&
node->nod_arg[e_derived_field_value]->nod_type != nod_map)
{
2009-01-07 10:30:57 +01:00
const dsql_ctx* ctx = (dsql_ctx*) node->nod_arg[e_derived_field_context];
if (ctx->ctx_main_derived_contexts.hasData())
{
if (ctx->ctx_main_derived_contexts.getCount() > MAX_UCHAR)
{
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-204) <<
Arg::Gds(isc_imp_exc) <<
Arg::Gds(isc_ctx_too_big));
}
dsqlScratch->appendUChar(blr_derived_expr);
dsqlScratch->appendUChar(ctx->ctx_main_derived_contexts.getCount());
2009-01-07 10:30:57 +01:00
for (DsqlContextStack::const_iterator stack(ctx->ctx_main_derived_contexts);
stack.hasData(); ++stack)
{
fb_assert(stack.object()->ctx_context <= MAX_UCHAR);
dsqlScratch->appendUChar(stack.object()->ctx_context);
}
}
}
GEN_expr(dsqlScratch, node->nod_arg[e_derived_field_value]);
return;
2001-05-23 15:26:42 +02:00
case nod_extract:
dsqlScratch->appendUChar(blr_extract);
dsqlScratch->appendUChar(node->nod_arg[e_extract_part]->getSlong());
GEN_expr(dsqlScratch, node->nod_arg[e_extract_value]);
2001-05-23 15:26:42 +02:00
return;
case nod_strlen:
dsqlScratch->appendUChar(blr_strlen);
dsqlScratch->appendUChar(node->nod_arg[e_strlen_type]->getSlong());
GEN_expr(dsqlScratch, node->nod_arg[e_strlen_value]);
2005-05-28 00:45:31 +02:00
return;
2001-05-23 15:26:42 +02:00
case nod_dbkey:
node = node->nod_arg[0];
context = (dsql_ctx*) node->nod_arg[e_rel_context];
dsqlScratch->appendUChar(blr_dbkey);
stuff_context(dsqlScratch, context);
2001-05-23 15:26:42 +02:00
return;
case nod_rec_version:
node = node->nod_arg[0];
context = (dsql_ctx*) node->nod_arg[e_rel_context];
dsqlScratch->appendUChar(blr_record_version);
stuff_context(dsqlScratch, context);
2001-05-23 15:26:42 +02:00
return;
case nod_dom_value:
dsqlScratch->appendUChar(blr_fid);
2010-06-22 02:53:35 +02:00
dsqlScratch->appendUChar(0); // Context
dsqlScratch->appendUShort(0); // Field id
2001-05-23 15:26:42 +02:00
return;
case nod_field:
gen_field(dsqlScratch,
(dsql_ctx*) node->nod_arg[e_fld_context],
(dsql_fld*) node->nod_arg[e_fld_field],
2001-05-23 15:26:42 +02:00
node->nod_arg[e_fld_indices]);
return;
case nod_variable:
2008-07-02 11:46:44 +02:00
{
const dsql_var* variable = (dsql_var*) node->nod_arg[e_var_variable];
2009-11-16 10:18:24 +01:00
if (variable->var_type == VAR_input)
{
dsqlScratch->appendUChar(blr_parameter2);
dsqlScratch->appendUChar(variable->var_msg_number);
dsqlScratch->appendUShort(variable->var_msg_item);
dsqlScratch->appendUShort(variable->var_msg_item + 1);
2008-07-02 11:46:44 +02:00
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_variable);
dsqlScratch->appendUShort(variable->var_variable_number);
2008-07-02 11:46:44 +02:00
}
2001-05-23 15:26:42 +02:00
}
return;
case nod_join:
gen_join_rse(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
return;
case nod_map:
2008-07-02 11:46:44 +02:00
{
const dsql_map* map = (dsql_map*) node->nod_arg[e_map_map];
dsqlScratch->appendUChar(blr_fid);
if (map->map_partition)
dsqlScratch->appendUChar(map->map_partition->context);
else
{
context = (dsql_ctx*) node->nod_arg[e_map_context];
stuff_context(dsqlScratch, context);
}
dsqlScratch->appendUShort(map->map_position);
2008-07-02 11:46:44 +02:00
}
2001-05-23 15:26:42 +02:00
return;
case nod_relation:
gen_relation(dsqlScratch, (dsql_ctx*) node->nod_arg[e_rel_context]);
2001-05-23 15:26:42 +02:00
return;
case nod_rse:
GEN_rse(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
return;
2003-08-15 01:34:37 +02:00
case nod_derived_table:
GEN_rse(dsqlScratch, node->nod_arg[e_derived_table_rse]);
2003-08-15 01:34:37 +02:00
return;
2001-05-23 15:26:42 +02:00
case nod_null:
blr_operator = blr_null;
2001-05-23 15:26:42 +02:00
break;
case nod_via:
blr_operator = blr_via;
2001-05-23 15:26:42 +02:00
break;
case nod_substr:
blr_operator = blr_substring;
2002-06-29 08:56:51 +02:00
break;
2001-05-23 15:26:42 +02:00
case nod_cast:
gen_cast(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
return;
case nod_coalesce:
gen_coalesce(dsqlScratch, node);
return;
case nod_simple_case:
gen_simple_case(dsqlScratch, node);
return;
case nod_searched_case:
gen_searched_case(dsqlScratch, node);
return;
2008-07-03 09:12:36 +02:00
case nod_assign:
dsqlScratch->appendUChar(blr_assignment);
GEN_expr(dsqlScratch, node->nod_arg[0]);
GEN_expr(dsqlScratch, node->nod_arg[1]);
return;
case nod_hidden_var:
dsqlScratch->appendUChar(blr_stmt_expr);
// If it was not pre-declared, declare it now.
if (dsqlScratch->hiddenVars.hasData())
{
2008-09-03 14:18:59 +02:00
const dsql_var* var = (dsql_var*) node->nod_arg[e_hidden_var_var]->nod_arg[e_var_variable];
dsqlScratch->appendUChar(blr_begin);
dsqlScratch->appendUChar(blr_dcl_variable);
dsqlScratch->appendUShort(var->var_variable_number);
GEN_descriptor(dsqlScratch, &node->nod_arg[e_hidden_var_var]->nod_desc, true);
}
dsqlScratch->appendUChar(blr_assignment);
GEN_expr(dsqlScratch, node->nod_arg[e_hidden_var_expr]);
GEN_expr(dsqlScratch, node->nod_arg[e_hidden_var_var]);
if (dsqlScratch->hiddenVars.hasData())
dsqlScratch->appendUChar(blr_end);
GEN_expr(dsqlScratch, node->nod_arg[e_hidden_var_var]);
return;
2001-05-23 15:26:42 +02:00
default:
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-901) <<
Arg::Gds(isc_dsql_internal_err) <<
// expression evaluation not supported
Arg::Gds(isc_expression_eval_err) <<
Arg::Gds(isc_dsql_eval_unknode) << Arg::Num(node->nod_type));
2001-05-23 15:26:42 +02:00
}
dsqlScratch->appendUChar(blr_operator);
2001-05-23 15:26:42 +02:00
dsql_nod* const* ptr = node->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + node->nod_count; ptr < end; ptr++)
GEN_expr(dsqlScratch, *ptr);
2001-05-23 15:26:42 +02:00
}
/**
GEN_port
@brief Generate a port from a message. Feel free to rearrange the
order of parameters.
@param dsqlScratch
@param message
**/
void GEN_port(DsqlCompilerScratch* dsqlScratch, dsql_msg* message)
2001-05-23 15:26:42 +02:00
{
2008-02-28 14:48:16 +01:00
thread_db* tdbb = JRD_get_thread_data();
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(blr_message);
dsqlScratch->appendUChar(message->msg_number);
dsqlScratch->appendUShort(message->msg_parameter);
2001-05-23 15:26:42 +02:00
ULONG offset = 0;
for (size_t i = 0; i < message->msg_parameters.getCount(); ++i)
{
dsql_par* parameter = message->msg_parameters[i];
parameter->par_parameter = (USHORT) i;
2001-05-23 15:26:42 +02:00
2007-07-08 10:43:30 +02:00
const USHORT fromCharSet = parameter->par_desc.getCharSet();
const USHORT toCharSet = (fromCharSet == CS_NONE || fromCharSet == CS_BINARY) ?
fromCharSet : tdbb->getCharSet();
if (parameter->par_desc.dsc_dtype <= dtype_any_text &&
tdbb->getCharSet() != CS_NONE && tdbb->getCharSet() != CS_BINARY)
2005-05-28 00:45:31 +02:00
{
USHORT adjust = 0;
2005-05-28 00:45:31 +02:00
if (parameter->par_desc.dsc_dtype == dtype_varying)
adjust = sizeof(USHORT);
2005-05-28 00:45:31 +02:00
else if (parameter->par_desc.dsc_dtype == dtype_cstring)
adjust = 1;
parameter->par_desc.dsc_length -= adjust;
2005-05-28 00:45:31 +02:00
const USHORT fromCharSetBPC = METD_get_charset_bpc(dsqlScratch->getTransaction(), fromCharSet);
const USHORT toCharSetBPC = METD_get_charset_bpc(dsqlScratch->getTransaction(), toCharSet);
2005-05-28 00:45:31 +02:00
2009-11-28 20:39:23 +01:00
parameter->par_desc.setTextType(INTL_CS_COLL_TO_TTYPE(toCharSet,
(fromCharSet == toCharSet ? INTL_GET_COLLATE(&parameter->par_desc) : 0)));
2005-05-28 00:45:31 +02:00
parameter->par_desc.dsc_length =
UTLD_char_length_to_byte_length(parameter->par_desc.dsc_length / fromCharSetBPC, toCharSetBPC);
2005-05-28 00:45:31 +02:00
parameter->par_desc.dsc_length += adjust;
2005-05-28 00:45:31 +02:00
}
else if (parameter->par_desc.dsc_dtype == dtype_blob &&
2007-07-08 10:43:30 +02:00
parameter->par_desc.dsc_sub_type == isc_blob_text &&
tdbb->getCharSet() != CS_NONE && tdbb->getCharSet() != CS_BINARY)
{
if (fromCharSet != toCharSet)
parameter->par_desc.setTextType(toCharSet);
}
2005-05-28 00:45:31 +02:00
2009-04-18 16:13:26 +02:00
// For older clients - generate an error should they try and
// access data types which did not exist in the older dialect
if (dsqlScratch->clientDialect <= SQL_DIALECT_V5)
{
2009-01-06 06:53:34 +01:00
switch (parameter->par_desc.dsc_dtype)
{
2009-04-18 16:13:26 +02:00
// In V6.0 - older clients, which we distinguish by
// their use of SQL DIALECT 0 or 1, are forbidden
// from selecting values of new datatypes
case dtype_sql_date:
case dtype_sql_time:
case dtype_int64:
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-804) <<
Arg::Gds(isc_dsql_datatype_err) <<
2009-01-06 06:53:34 +01:00
Arg::Gds(isc_sql_dialect_datatype_unsupport) <<
Arg::Num(dsqlScratch->clientDialect) <<
2009-01-06 06:53:34 +01:00
Arg::Str(DSC_dtype_tostring(parameter->par_desc.dsc_dtype)));
break;
default:
// No special action for other data types
break;
}
}
2009-01-07 10:30:57 +01:00
const USHORT align = type_alignments[parameter->par_desc.dsc_dtype];
2001-05-23 15:26:42 +02:00
if (align)
offset = FB_ALIGN(offset, align);
parameter->par_desc.dsc_address = (UCHAR*)(IPTR) offset;
offset += parameter->par_desc.dsc_length;
GEN_descriptor(dsqlScratch, &parameter->par_desc, false);
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
if (offset > MAX_FORMAT_SIZE)
{
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-204) <<
Arg::Gds(isc_imp_exc) <<
Arg::Gds(isc_blktoobig));
}
message->msg_length = (USHORT) offset;
dsqlScratch->ports.add(message);
2001-05-23 15:26:42 +02:00
}
/**
GEN_request
@brief Generate complete blr for a dsqlScratch.
@param dsqlScratch
@param node
**/
void GEN_request(DsqlCompilerScratch* scratch, dsql_nod* node)
2001-05-23 15:26:42 +02:00
{
DsqlCompiledStatement* statement = scratch->getStatement();
if (statement->getType() == DsqlCompiledStatement::TYPE_CREATE_DB ||
statement->getType() == DsqlCompiledStatement::TYPE_DDL)
2008-02-28 14:48:16 +01:00
{
DDL_generate(scratch, node);
2001-05-23 15:26:42 +02:00
return;
}
if (statement->getFlags() & DsqlCompiledStatement::FLAG_BLR_VERSION4)
scratch->appendUChar(blr_version4);
2001-05-23 15:26:42 +02:00
else
scratch->appendUChar(blr_version5);
if (statement->getType() == DsqlCompiledStatement::TYPE_SAVEPOINT)
{
// Do not generate BEGIN..END block around savepoint statement
// to avoid breaking of savepoint logic
statement->setSendMsg(NULL);
statement->setReceiveMsg(NULL);
GEN_statement(scratch, node);
}
else
{
scratch->appendUChar(blr_begin);
2001-05-23 15:26:42 +02:00
GEN_hidden_variables(scratch, false);
switch (statement->getType())
2004-10-26 09:21:47 +02:00
{
case DsqlCompiledStatement::TYPE_SELECT:
case DsqlCompiledStatement::TYPE_SELECT_UPD:
2009-12-21 15:20:26 +01:00
gen_select(scratch, node);
2008-01-16 07:52:43 +01:00
break;
case DsqlCompiledStatement::TYPE_EXEC_BLOCK:
case DsqlCompiledStatement::TYPE_SELECT_BLOCK:
GEN_statement(scratch, node);
2008-01-16 07:52:43 +01:00
break;
default:
{
dsql_msg* message = statement->getSendMsg();
2008-01-16 07:52:43 +01:00
if (!message->msg_parameter)
statement->setSendMsg(NULL);
2009-11-16 10:18:24 +01:00
else
{
GEN_port(scratch, message);
scratch->appendUChar(blr_receive);
scratch->appendUChar(message->msg_number);
2008-01-16 07:52:43 +01:00
}
message = statement->getReceiveMsg();
2008-01-16 07:52:43 +01:00
if (!message->msg_parameter)
statement->setReceiveMsg(NULL);
2008-01-16 07:52:43 +01:00
else
GEN_port(scratch, message);
GEN_statement(scratch, node);
2001-05-23 15:26:42 +02:00
}
}
scratch->appendUChar(blr_end);
2001-05-23 15:26:42 +02:00
}
scratch->appendUChar(blr_eoc);
2001-05-23 15:26:42 +02:00
}
/**
GEN_start_transaction
@brief Generate tpb for set transaction. Use blr string of dsqlScratch.
If a value is not specified, default is not STUFF'ed, let the
engine handle it.
Do not allow an option to be specified more than once.
@param dsqlScratch
@param tran_node
**/
void GEN_start_transaction( DsqlCompilerScratch* dsqlScratch, const dsql_nod* tran_node)
2001-05-23 15:26:42 +02:00
{
SSHORT count = tran_node->nod_count;
2001-05-23 15:26:42 +02:00
if (!count)
return;
const dsql_nod* node = tran_node->nod_arg[0];
2001-05-23 15:26:42 +02:00
if (!node)
return;
// Find out isolation level - if specified. This is required for
// specifying the correct lock level in reserving clause.
2001-05-23 15:26:42 +02:00
2003-11-08 00:27:24 +01:00
USHORT lock_level = isc_tpb_shared;
2001-05-23 15:26:42 +02:00
2009-01-07 10:30:57 +01:00
if (count = node->nod_count)
{
2009-11-16 10:18:24 +01:00
while (count--)
{
const dsql_nod* ptr = node->nod_arg[count];
2001-05-23 15:26:42 +02:00
2008-06-06 04:25:35 +02:00
if (!ptr || ptr->nod_type != nod_isolation)
2001-05-23 15:26:42 +02:00
continue;
2009-01-06 06:53:34 +01:00
lock_level = (ptr->nod_flags & NOD_CONSISTENCY) ? isc_tpb_protected : isc_tpb_shared;
2001-05-23 15:26:42 +02:00
}
}
bool sw_access = false, sw_wait = false, sw_isolation = false,
sw_reserve = false, sw_lock_timeout = false;
int misc_flags = 0;
2009-04-18 16:13:26 +02:00
// Stuff some version info.
2001-05-23 15:26:42 +02:00
if (count = node->nod_count)
dsqlScratch->appendUChar(isc_tpb_version1);
2001-05-23 15:26:42 +02:00
while (count--)
{
const dsql_nod* ptr = node->nod_arg[count];
2001-05-23 15:26:42 +02:00
if (!ptr)
continue;
2009-01-06 06:53:34 +01:00
switch (ptr->nod_type)
{
2001-05-23 15:26:42 +02:00
case nod_access:
if (sw_access)
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_dup_option));
2001-05-23 15:26:42 +02:00
sw_access = true;
2001-05-23 15:26:42 +02:00
if (ptr->nod_flags & NOD_READ_ONLY)
dsqlScratch->appendUChar(isc_tpb_read);
2001-05-23 15:26:42 +02:00
else
dsqlScratch->appendUChar(isc_tpb_write);
2001-05-23 15:26:42 +02:00
break;
case nod_wait:
if (sw_wait)
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_dup_option));
2001-05-23 15:26:42 +02:00
sw_wait = true;
2001-05-23 15:26:42 +02:00
if (ptr->nod_flags & NOD_NO_WAIT)
dsqlScratch->appendUChar(isc_tpb_nowait);
2001-05-23 15:26:42 +02:00
else
dsqlScratch->appendUChar(isc_tpb_wait);
2001-05-23 15:26:42 +02:00
break;
case nod_isolation:
if (sw_isolation)
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_dup_option));
2001-05-23 15:26:42 +02:00
sw_isolation = true;
2001-05-23 15:26:42 +02:00
if (ptr->nod_flags & NOD_CONCURRENCY)
dsqlScratch->appendUChar(isc_tpb_concurrency);
2001-05-23 15:26:42 +02:00
else if (ptr->nod_flags & NOD_CONSISTENCY)
dsqlScratch->appendUChar(isc_tpb_consistency);
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(isc_tpb_read_committed);
2001-05-23 15:26:42 +02:00
2009-01-06 06:53:34 +01:00
if (ptr->nod_count && ptr->nod_arg[0] && ptr->nod_arg[0]->nod_type == nod_version)
2004-10-26 09:21:47 +02:00
{
2001-05-23 15:26:42 +02:00
if (ptr->nod_arg[0]->nod_flags & NOD_VERSION)
dsqlScratch->appendUChar(isc_tpb_rec_version);
2001-05-23 15:26:42 +02:00
else
dsqlScratch->appendUChar(isc_tpb_no_rec_version);
2001-05-23 15:26:42 +02:00
}
else
dsqlScratch->appendUChar(isc_tpb_no_rec_version);
2001-05-23 15:26:42 +02:00
}
break;
case nod_reserve:
{
if (sw_reserve)
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_dup_option));
sw_reserve = true;
const dsql_nod* reserve = ptr->nod_arg[0];
2009-11-16 10:18:24 +01:00
if (reserve)
{
const dsql_nod* const* temp = reserve->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* end = temp + reserve->nod_count; temp < end; temp++)
{
gen_table_lock(dsqlScratch, *temp, lock_level);
}
}
}
2009-01-07 10:30:57 +01:00
break;
case nod_tra_misc:
if (misc_flags & ptr->nod_flags)
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_dup_option));
misc_flags |= ptr->nod_flags;
if (ptr->nod_flags & NOD_NO_AUTO_UNDO)
dsqlScratch->appendUChar(isc_tpb_no_auto_undo);
else if (ptr->nod_flags & NOD_IGNORE_LIMBO)
dsqlScratch->appendUChar(isc_tpb_ignore_limbo);
else if (ptr->nod_flags & NOD_RESTART_REQUESTS)
dsqlScratch->appendUChar(isc_tpb_restart_requests);
break;
case nod_lock_timeout:
if (sw_lock_timeout)
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_dup_option));
sw_lock_timeout = true;
if (ptr->nod_count == 1 && ptr->nod_arg[0]->nod_type == nod_constant)
{
const int lck_timeout = (int) ptr->nod_arg[0]->getSlong();
dsqlScratch->appendUChar(isc_tpb_lock_timeout);
dsqlScratch->appendUChar(2);
dsqlScratch->appendUShort(lck_timeout);
}
break;
2001-05-23 15:26:42 +02:00
default:
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_dsql_tran_err));
2001-05-23 15:26:42 +02:00
}
}
// Store DYN data in the statement.
2010-06-17 18:06:54 +02:00
dsqlScratch->getStatement()->setDdlData(dsqlScratch->getBlrData());
2001-05-23 15:26:42 +02:00
}
/**
GEN_statement
@brief Generate blr for an arbitrary expression.
@param dsqlScratch
@param node
**/
void GEN_statement( DsqlCompilerScratch* dsqlScratch, dsql_nod* node)
2001-05-23 15:26:42 +02:00
{
dsql_nod* temp;
dsql_nod** ptr;
const dsql_nod* const* end;
2003-11-10 10:16:38 +01:00
dsql_str* string;
2001-05-23 15:26:42 +02:00
2009-01-06 06:53:34 +01:00
switch (node->nod_type)
{
2001-05-23 15:26:42 +02:00
case nod_assign:
dsqlScratch->appendUChar(blr_assignment);
GEN_expr(dsqlScratch, node->nod_arg[0]);
GEN_expr(dsqlScratch, node->nod_arg[1]);
2001-05-23 15:26:42 +02:00
return;
case nod_block:
dsqlScratch->appendUChar(blr_block);
GEN_statement(dsqlScratch, node->nod_arg[e_blk_action]);
2009-11-16 10:18:24 +01:00
if (node->nod_count > 1)
{
2001-05-23 15:26:42 +02:00
temp = node->nod_arg[e_blk_errs];
2009-01-06 06:53:34 +01:00
for (ptr = temp->nod_arg, end = ptr + temp->nod_count; ptr < end; ptr++)
{
GEN_statement(dsqlScratch, *ptr);
}
2001-05-23 15:26:42 +02:00
}
dsqlScratch->appendUChar(blr_end);
2001-05-23 15:26:42 +02:00
return;
case nod_class_stmtnode:
2009-11-16 10:18:24 +01:00
{
DmlNode* dmlNode = reinterpret_cast<DmlNode*>(node->nod_arg[0]);
dmlNode->genBlr(dsqlScratch);
2009-11-16 10:18:24 +01:00
}
return;
2008-01-16 07:52:43 +01:00
2001-05-23 15:26:42 +02:00
case nod_set_generator:
case nod_set_generator2:
dsqlScratch->appendUChar(blr_set_generator);
2003-11-10 10:16:38 +01:00
string = (dsql_str*) node->nod_arg[e_gen_id_name];
dsqlScratch->appendNullString(string->str_data);
GEN_expr(dsqlScratch, node->nod_arg[e_gen_id_value]);
2001-05-23 15:26:42 +02:00
return;
case nod_list:
if (!(node->nod_flags & NOD_SIMPLE_LIST))
dsqlScratch->appendUChar(blr_begin);
2009-01-06 06:53:34 +01:00
for (ptr = node->nod_arg, end = ptr + node->nod_count; ptr < end; ptr++)
{
GEN_statement(dsqlScratch, *ptr);
}
if (!(node->nod_flags & NOD_SIMPLE_LIST))
dsqlScratch->appendUChar(blr_end);
2001-05-23 15:26:42 +02:00
return;
case nod_erase:
case nod_erase_current:
2001-05-23 15:26:42 +02:00
case nod_modify:
case nod_modify_current:
case nod_store:
case nod_exec_procedure:
gen_statement(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
return;
case nod_on_error:
dsqlScratch->appendUChar(blr_error_handler);
2001-05-23 15:26:42 +02:00
temp = node->nod_arg[e_err_errs];
dsqlScratch->appendUShort(temp->nod_count);
2009-01-06 06:53:34 +01:00
for (ptr = temp->nod_arg, end = ptr + temp->nod_count; ptr < end; ptr++)
{
gen_error_condition(dsqlScratch, *ptr);
}
GEN_statement(dsqlScratch, node->nod_arg[e_err_action]);
2001-05-23 15:26:42 +02:00
return;
2002-04-04 15:53:20 +02:00
case nod_exec_sql:
dsqlScratch->appendUChar(blr_exec_sql);
GEN_expr(dsqlScratch, node->nod_arg[e_exec_sql_stmnt]);
return;
case nod_exec_into:
2009-11-16 10:18:24 +01:00
if (node->nod_arg[e_exec_into_block])
{
dsqlScratch->appendUChar(blr_label);
dsqlScratch->appendUChar((int) (IPTR) node->nod_arg[e_exec_into_label]->nod_arg[e_label_number]);
}
dsqlScratch->appendUChar(blr_exec_into);
temp = node->nod_arg[e_exec_into_list];
dsqlScratch->appendUShort(temp->nod_count);
GEN_expr(dsqlScratch, node->nod_arg[e_exec_into_stmnt]);
2009-11-16 10:18:24 +01:00
if (node->nod_arg[e_exec_into_block])
{
dsqlScratch->appendUChar(0); // Non-singleton
GEN_statement(dsqlScratch, node->nod_arg[e_exec_into_block]);
}
else
dsqlScratch->appendUChar(1); // Singleton
2009-01-06 06:53:34 +01:00
for (ptr = temp->nod_arg, end = ptr + temp->nod_count; ptr < end; ptr++)
{
GEN_expr(dsqlScratch, *ptr);
}
2002-04-04 15:53:20 +02:00
return;
case nod_exec_stmt:
gen_exec_stmt(dsqlScratch, node);
return;
2006-06-02 10:03:22 +02:00
case nod_breakleave:
dsqlScratch->appendUChar(blr_leave);
dsqlScratch->appendUChar((int)(IPTR) node->nod_arg[e_breakleave_label]->nod_arg[e_label_number]);
return;
case nod_continue:
dsqlScratch->appendUChar(blr_continue_loop);
dsqlScratch->appendUChar((int)(IPTR) node->nod_arg[e_continue_label]->nod_arg[e_label_number]);
2006-06-02 10:03:22 +02:00
return;
2001-05-23 15:26:42 +02:00
case nod_start_savepoint:
dsqlScratch->appendUChar(blr_start_savepoint);
2001-05-23 15:26:42 +02:00
return;
case nod_end_savepoint:
dsqlScratch->appendUChar(blr_end_savepoint);
2001-05-23 15:26:42 +02:00
return;
2001-05-23 15:26:42 +02:00
case nod_while:
dsqlScratch->appendUChar(blr_label);
2010-06-22 02:53:35 +02:00
dsqlScratch->appendUChar((int)(IPTR) node->nod_arg[e_while_label]->nod_arg[e_label_number]);
dsqlScratch->appendUChar(blr_loop);
dsqlScratch->appendUChar(blr_begin);
dsqlScratch->appendUChar(blr_if);
GEN_expr(dsqlScratch, node->nod_arg[e_while_cond]);
GEN_statement(dsqlScratch, node->nod_arg[e_while_action]);
dsqlScratch->appendUChar(blr_leave);
2010-06-22 02:53:35 +02:00
dsqlScratch->appendUChar((int)(IPTR) node->nod_arg[e_while_label]->nod_arg[e_label_number]);
dsqlScratch->appendUChar(blr_end);
2001-05-23 15:26:42 +02:00
return;
case nod_sqlcode:
case nod_gdscode:
dsqlScratch->appendUChar(blr_abort);
gen_error_condition(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
return;
case nod_cursor:
dsqlScratch->appendUChar(blr_dcl_cursor);
2010-06-22 02:53:35 +02:00
dsqlScratch->appendUShort((int)(IPTR) node->nod_arg[e_cur_number]);
if (node->nod_arg[e_cur_scroll])
{
dsqlScratch->appendUChar(blr_scrollable);
}
GEN_rse(dsqlScratch, node->nod_arg[e_cur_rse]);
temp = node->nod_arg[e_cur_rse]->nod_arg[e_rse_items];
dsqlScratch->appendUShort(temp->nod_count);
ptr = temp->nod_arg;
end = ptr + temp->nod_count;
while (ptr < end) {
GEN_expr(dsqlScratch, *ptr++);
}
return;
case nod_cursor_open:
case nod_cursor_close:
case nod_cursor_fetch:
{
const dsql_nod* scroll = node->nod_arg[e_cur_stmt_scroll];
2008-07-03 09:12:36 +02:00
// op-code
dsqlScratch->appendUChar(blr_cursor_stmt);
2008-07-03 09:12:36 +02:00
if (node->nod_type == nod_cursor_open)
dsqlScratch->appendUChar(blr_cursor_open);
2008-07-03 09:12:36 +02:00
else if (node->nod_type == nod_cursor_close)
dsqlScratch->appendUChar(blr_cursor_close);
else if (scroll)
dsqlScratch->appendUChar(blr_cursor_fetch_scroll);
2008-07-03 09:12:36 +02:00
else
dsqlScratch->appendUChar(blr_cursor_fetch);
2008-07-03 09:12:36 +02:00
// cursor reference
dsql_nod* cursor = node->nod_arg[e_cur_stmt_id];
dsqlScratch->appendUShort((int) (IPTR) cursor->nod_arg[e_cur_number]);
// scrolling
if (scroll)
{
dsqlScratch->appendUChar(scroll->nod_arg[0]->getSlong());
if (scroll->nod_arg[1])
{
GEN_expr(dsqlScratch, scroll->nod_arg[1]);
}
else
{
dsqlScratch->appendUChar(blr_null);
}
2008-07-03 09:12:36 +02:00
}
// assignment
dsql_nod* list_into = node->nod_arg[e_cur_stmt_into];
2009-01-07 10:30:57 +01:00
if (list_into)
{
2008-07-03 09:12:36 +02:00
dsql_nod* list = cursor->nod_arg[e_cur_rse]->nod_arg[e_rse_items];
if (list->nod_count != list_into->nod_count)
2008-07-06 18:42:52 +02:00
{
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-313) <<
Arg::Gds(isc_dsql_count_mismatch));
2008-07-06 18:42:52 +02:00
}
dsqlScratch->appendUChar(blr_begin);
2008-07-03 09:12:36 +02:00
ptr = list->nod_arg;
end = ptr + list->nod_count;
dsql_nod** ptr_to = list_into->nod_arg;
2009-11-16 10:18:24 +01:00
while (ptr < end)
{
dsqlScratch->appendUChar(blr_assignment);
GEN_expr(dsqlScratch, *ptr++);
GEN_expr(dsqlScratch, *ptr_to++);
2008-07-03 09:12:36 +02:00
}
dsqlScratch->appendUChar(blr_end);
}
}
return;
case nod_src_info:
dsqlScratch->putDebugSrcInfo(node->nod_line, node->nod_column);
GEN_statement(dsqlScratch, node->nod_arg[e_src_info_stmt]);
return;
2001-05-23 15:26:42 +02:00
default:
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-901) <<
Arg::Gds(isc_dsql_internal_err) <<
// gen.c: node not supported
Arg::Gds(isc_node_err));
2001-05-23 15:26:42 +02:00
}
}
/**
gen_aggregate
@brief Generate blr for a relation reference.
@param
@param
**/
static void gen_aggregate( DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
2001-05-23 15:26:42 +02:00
{
dsql_ctx* context = (dsql_ctx*) node->nod_arg[e_agg_context];
const bool window = (node->nod_flags & NOD_AGG_WINDOW);
dsqlScratch->appendUChar((window ? blr_window : blr_aggregate));
if (!window)
stuff_context(dsqlScratch, context);
GEN_rse(dsqlScratch, node->nod_arg[e_agg_rse]);
2001-05-23 15:26:42 +02:00
// Handle PARTITION BY and GROUP BY clause
2001-05-23 15:26:42 +02:00
if (window)
{
fb_assert(context->ctx_win_maps.hasData());
dsqlScratch->appendUChar(context->ctx_win_maps.getCount()); // number of windows
for (Array<PartitionMap*>::iterator i = context->ctx_win_maps.begin();
i != context->ctx_win_maps.end();
++i)
{
dsqlScratch->appendUChar(blr_partition_by);
dsql_nod* partition = (*i)->partition;
dsql_nod* partitionRemapped = (*i)->partitionRemapped;
dsql_nod* order = (*i)->order;
dsqlScratch->appendUChar((*i)->context);
if (partition)
{
dsqlScratch->appendUChar(partition->nod_count); // partition by expression count
dsql_nod** ptr = partition->nod_arg;
for (const dsql_nod* const* end = ptr + partition->nod_count; ptr < end; ++ptr)
GEN_expr(dsqlScratch, *ptr);
ptr = partitionRemapped->nod_arg;
for (const dsql_nod* const* end = ptr + partitionRemapped->nod_count; ptr < end; ++ptr)
GEN_expr(dsqlScratch, *ptr);
}
else
dsqlScratch->appendUChar(0); // partition by expression count
if (order)
gen_sort(dsqlScratch, order);
else
{
dsqlScratch->appendUChar(blr_sort);
dsqlScratch->appendUChar(0);
}
gen_map(dsqlScratch, (*i)->map);
}
}
else
{
dsqlScratch->appendUChar(blr_group_by);
2001-05-23 15:26:42 +02:00
dsql_nod* list = node->nod_arg[e_agg_group];
2009-11-16 10:18:24 +01:00
if (list != NULL)
{
dsqlScratch->appendUChar(list->nod_count);
dsql_nod** ptr = list->nod_arg;
for (const dsql_nod* const* end = ptr + list->nod_count; ptr < end; ptr++)
GEN_expr(dsqlScratch, *ptr);
}
else
dsqlScratch->appendUChar(0);
gen_map(dsqlScratch, context->ctx_map);
}
2001-05-23 15:26:42 +02:00
}
/**
gen_cast
@brief Generate BLR for a data-type cast operation
@param dsqlScratch
@param node
**/
static void gen_cast( DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
2001-05-23 15:26:42 +02:00
{
dsqlScratch->appendUChar(blr_cast);
const dsql_fld* field = (dsql_fld*) node->nod_arg[e_cast_target];
dsqlScratch->putDtype(field, true);
GEN_expr(dsqlScratch, node->nod_arg[e_cast_source]);
2001-05-23 15:26:42 +02:00
}
/**
gen_coalesce
@brief Generate BLR for coalesce function
Generate the blr values, begin with a cast and then :
blr_value_if
blr_missing
blr for expression 1
blr_value_if
blr_missing
blr for expression n-1
expression n
blr for expression n-1
@param dsqlScratch
@param node
**/
static void gen_coalesce( DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
{
// blr_value_if is used for building the coalesce function
dsql_nod* list = node->nod_arg[0];
dsqlScratch->appendUChar(blr_cast);
GEN_descriptor(dsqlScratch, &node->nod_desc, true);
dsql_nod* const* ptr = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + (list->nod_count - 1); ptr < end; ptr++)
{
// IF (expression IS NULL) THEN
dsqlScratch->appendUChar(blr_value_if);
dsqlScratch->appendUChar(blr_missing);
GEN_expr(dsqlScratch, *ptr);
}
// Return values
GEN_expr(dsqlScratch, *ptr);
list = node->nod_arg[1];
const dsql_nod* const* const begin = list->nod_arg;
ptr = list->nod_arg + list->nod_count;
// if all expressions are NULL return NULL
for (ptr--; ptr >= begin; ptr--)
{
GEN_expr(dsqlScratch, *ptr);
}
}
// Generate BLR for a constant.
static void gen_constant(DsqlCompilerScratch* dsqlScratch, const dsc* desc, bool negateValue)
2001-05-23 15:26:42 +02:00
{
SLONG value;
SINT64 i64value;
dsqlScratch->appendUChar(blr_literal);
2001-05-23 15:26:42 +02:00
const UCHAR* p = desc->dsc_address;
2001-05-23 15:26:42 +02:00
2009-01-06 06:53:34 +01:00
switch (desc->dsc_dtype)
{
2001-05-23 15:26:42 +02:00
case dtype_short:
GEN_descriptor(dsqlScratch, desc, true);
2010-06-22 02:53:35 +02:00
value = *(SSHORT*) p;
if (negateValue)
2001-05-23 15:26:42 +02:00
value = -value;
dsqlScratch->appendUShort(value);
2001-05-23 15:26:42 +02:00
break;
case dtype_long:
GEN_descriptor(dsqlScratch, desc, true);
2010-06-22 02:53:35 +02:00
value = *(SLONG*) p;
if (negateValue)
2001-05-23 15:26:42 +02:00
value = -value;
//printf("gen.cpp = %p %d\n", *((void**)p), value);
dsqlScratch->appendUShort(value);
dsqlScratch->appendUShort(value >> 16);
2001-05-23 15:26:42 +02:00
break;
case dtype_sql_time:
case dtype_sql_date:
GEN_descriptor(dsqlScratch, desc, true);
2010-06-22 02:53:35 +02:00
value = *(SLONG*) p;
dsqlScratch->appendUShort(value);
dsqlScratch->appendUShort(value >> 16);
2001-05-23 15:26:42 +02:00
break;
case dtype_double:
{
2009-04-18 16:13:26 +02:00
// this is used for approximate/large numeric literal
// which is transmitted to the engine as a string.
GEN_descriptor(dsqlScratch, desc, true);
// Length of string literal, cast because it could be > 127 bytes.
2008-05-28 04:11:00 +02:00
const USHORT l = (USHORT)(UCHAR) desc->dsc_scale;
if (negateValue)
2009-11-16 10:18:24 +01:00
{
dsqlScratch->appendUShort(l + 1);
dsqlScratch->appendUChar('-');
}
else {
dsqlScratch->appendUShort(l);
}
2001-05-23 15:26:42 +02:00
if (l)
dsqlScratch->appendBytes(p, l);
}
2001-05-23 15:26:42 +02:00
break;
case dtype_int64:
2010-06-22 02:53:35 +02:00
i64value = *(SINT64*) p;
2001-05-23 15:26:42 +02:00
if (negateValue)
2001-05-23 15:26:42 +02:00
i64value = -i64value;
2009-01-06 06:53:34 +01:00
else if (i64value == MIN_SINT64)
{
2009-04-18 16:13:26 +02:00
// UH OH!
// yylex correctly recognized the digits as the most-negative
// possible INT64 value, but unfortunately, there was no
// preceding '-' (a fact which the lexer could not know).
// The value is too big for a positive INT64 value, and it
// didn't contain an exponent so it's not a valid DOUBLE
// PRECISION literal either, so we have to bounce it.
2008-09-03 04:26:45 +02:00
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-104) <<
Arg::Gds(isc_arith_except) <<
Arg::Gds(isc_numeric_out_of_range));
2001-05-23 15:26:42 +02:00
}
2009-04-18 16:13:26 +02:00
// We and the lexer both agree that this is an SINT64 constant,
// and if the value needed to be negated, it already has been.
// If the value will fit into a 32-bit signed integer, generate
// it that way, else as an INT64.
2009-01-06 06:53:34 +01:00
if ((i64value >= (SINT64) MIN_SLONG) && (i64value <= (SINT64) MAX_SLONG))
{
dsqlScratch->appendUChar(blr_long);
dsqlScratch->appendUChar(desc->dsc_scale);
dsqlScratch->appendUShort(i64value);
dsqlScratch->appendUShort(i64value >> 16);
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_int64);
dsqlScratch->appendUChar(desc->dsc_scale);
dsqlScratch->appendUShort(i64value);
dsqlScratch->appendUShort(i64value >> 16);
dsqlScratch->appendUShort(i64value >> 32);
dsqlScratch->appendUShort(i64value >> 48);
2001-05-23 15:26:42 +02:00
}
break;
case dtype_quad:
case dtype_blob:
case dtype_array:
case dtype_timestamp:
GEN_descriptor(dsqlScratch, desc, true);
2010-06-22 02:53:35 +02:00
value = *(SLONG*) p;
dsqlScratch->appendUShort(value);
dsqlScratch->appendUShort(value >> 16);
2010-06-22 02:53:35 +02:00
value = *(SLONG*) (p + 4);
dsqlScratch->appendUShort(value);
dsqlScratch->appendUShort(value >> 16);
2001-05-23 15:26:42 +02:00
break;
case dtype_text:
{
const USHORT length = desc->dsc_length;
GEN_descriptor(dsqlScratch, desc, true);
if (length)
dsqlScratch->appendBytes(p, length);
}
break;
2001-05-23 15:26:42 +02:00
default:
// gen_constant: datatype not understood
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-103) <<
Arg::Gds(isc_dsql_constant_err));
2001-05-23 15:26:42 +02:00
}
}
// Generate BLR for a constant.
void GEN_constant(DsqlCompilerScratch* dsqlScratch, dsql_nod* node, bool negateValue)
{
if (node->nod_desc.dsc_dtype == dtype_text)
node->nod_desc.dsc_length = ((dsql_str*) node->nod_arg[0])->str_length;
gen_constant(dsqlScratch, &node->nod_desc, negateValue);
}
/**
GEN_descriptor
@brief Generate a blr descriptor from an internal descriptor.
@param dsqlScratch
@param desc
@param texttype
**/
void GEN_descriptor( DsqlCompilerScratch* dsqlScratch, const dsc* desc, bool texttype)
2001-05-23 15:26:42 +02:00
{
2009-01-06 06:53:34 +01:00
switch (desc->dsc_dtype)
{
2001-05-23 15:26:42 +02:00
case dtype_text:
2009-11-16 10:18:24 +01:00
if (texttype || desc->dsc_ttype() == ttype_binary || desc->dsc_ttype() == ttype_none)
{
dsqlScratch->appendUChar(blr_text2);
dsqlScratch->appendUShort(desc->dsc_ttype());
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_text2); // automatic transliteration
dsqlScratch->appendUShort(ttype_dynamic);
2001-05-23 15:26:42 +02:00
}
dsqlScratch->appendUShort(desc->dsc_length);
2001-05-23 15:26:42 +02:00
break;
case dtype_varying:
2009-11-16 10:18:24 +01:00
if (texttype || desc->dsc_ttype() == ttype_binary || desc->dsc_ttype() == ttype_none)
{
dsqlScratch->appendUChar(blr_varying2);
dsqlScratch->appendUShort(desc->dsc_ttype());
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_varying2); // automatic transliteration
dsqlScratch->appendUShort(ttype_dynamic);
2001-05-23 15:26:42 +02:00
}
dsqlScratch->appendUShort(desc->dsc_length - sizeof(USHORT));
2001-05-23 15:26:42 +02:00
break;
case dtype_short:
dsqlScratch->appendUChar(blr_short);
dsqlScratch->appendUChar(desc->dsc_scale);
2001-05-23 15:26:42 +02:00
break;
case dtype_long:
dsqlScratch->appendUChar(blr_long);
dsqlScratch->appendUChar(desc->dsc_scale);
2001-05-23 15:26:42 +02:00
break;
case dtype_quad:
dsqlScratch->appendUChar(blr_quad);
dsqlScratch->appendUChar(desc->dsc_scale);
2001-05-23 15:26:42 +02:00
break;
case dtype_int64:
dsqlScratch->appendUChar(blr_int64);
dsqlScratch->appendUChar(desc->dsc_scale);
2001-05-23 15:26:42 +02:00
break;
case dtype_real:
dsqlScratch->appendUChar(blr_float);
2001-05-23 15:26:42 +02:00
break;
case dtype_double:
dsqlScratch->appendUChar(blr_double);
2001-05-23 15:26:42 +02:00
break;
case dtype_sql_date:
dsqlScratch->appendUChar(blr_sql_date);
2001-05-23 15:26:42 +02:00
break;
case dtype_sql_time:
dsqlScratch->appendUChar(blr_sql_time);
2001-05-23 15:26:42 +02:00
break;
case dtype_timestamp:
dsqlScratch->appendUChar(blr_timestamp);
2001-05-23 15:26:42 +02:00
break;
case dtype_array:
dsqlScratch->appendUChar(blr_quad);
dsqlScratch->appendUChar(0);
2001-05-23 15:26:42 +02:00
break;
case dtype_blob:
dsqlScratch->appendUChar(blr_blob2);
dsqlScratch->appendUShort(desc->dsc_sub_type);
dsqlScratch->appendUShort(desc->getTextType());
break;
2001-05-23 15:26:42 +02:00
default:
// don't understand dtype
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-804) <<
Arg::Gds(isc_dsql_datatype_err));
2001-05-23 15:26:42 +02:00
}
}
/**
gen_error_condition
@brief Generate blr for an error condtion
@param dsqlScratch
@param node
**/
static void gen_error_condition( DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
2001-05-23 15:26:42 +02:00
{
2003-11-10 10:16:38 +01:00
const dsql_str* string;
2001-05-23 15:26:42 +02:00
2009-01-06 06:53:34 +01:00
switch (node->nod_type)
{
2001-05-23 15:26:42 +02:00
case nod_sqlcode:
dsqlScratch->appendUChar(blr_sql_code);
dsqlScratch->appendUShort((USHORT)(IPTR) node->nod_arg[0]);
2001-05-23 15:26:42 +02:00
return;
case nod_gdscode:
dsqlScratch->appendUChar(blr_gds_code);
2003-11-10 10:16:38 +01:00
string = (dsql_str*) node->nod_arg[0];
dsqlScratch->appendNullString(string->str_data);
2001-05-23 15:26:42 +02:00
return;
case nod_exception:
dsqlScratch->appendUChar(blr_exception);
2003-11-10 10:16:38 +01:00
string = (dsql_str*) node->nod_arg[0];
dsqlScratch->appendNullString(string->str_data);
2001-05-23 15:26:42 +02:00
return;
case nod_default:
dsqlScratch->appendUChar(blr_default_code);
2001-05-23 15:26:42 +02:00
return;
default:
2003-11-04 00:59:24 +01:00
fb_assert(false);
2001-05-23 15:26:42 +02:00
return;
}
}
/**
gen_exec_stmt
@brief Generate blr for the EXECUTE STATEMENT clause
@param dsqlScratch
@param node
**/
static void gen_exec_stmt(DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
{
if (node->nod_arg[e_exec_stmt_proc_block])
{
dsqlScratch->appendUChar(blr_label);
dsqlScratch->appendUChar((int)(IPTR) node->nod_arg[e_exec_stmt_label]->nod_arg[e_label_number]);
}
dsqlScratch->appendUChar(blr_exec_stmt);
// counts of input and output parameters
2008-06-13 03:42:58 +02:00
const dsql_nod* temp = node->nod_arg[e_exec_stmt_inputs];
if (temp)
{
dsqlScratch->appendUChar(blr_exec_stmt_inputs);
dsqlScratch->appendUShort(temp->nod_count);
}
temp = node->nod_arg[e_exec_stmt_outputs];
if (temp)
{
dsqlScratch->appendUChar(blr_exec_stmt_outputs);
dsqlScratch->appendUShort(temp->nod_count);
}
// query expression
dsqlScratch->appendUChar(blr_exec_stmt_sql);
GEN_expr(dsqlScratch, node->nod_arg[e_exec_stmt_sql]);
// proc block body
dsql_nod* temp2 = node->nod_arg[e_exec_stmt_proc_block];
if (temp2)
{
dsqlScratch->appendUChar(blr_exec_stmt_proc_block);
GEN_statement(dsqlScratch, temp2);
}
// external data source, user, password and role
gen_optional_expr(dsqlScratch, blr_exec_stmt_data_src, node->nod_arg[e_exec_stmt_data_src]);
gen_optional_expr(dsqlScratch, blr_exec_stmt_user, node->nod_arg[e_exec_stmt_user]);
gen_optional_expr(dsqlScratch, blr_exec_stmt_pwd, node->nod_arg[e_exec_stmt_pwd]);
gen_optional_expr(dsqlScratch, blr_exec_stmt_role, node->nod_arg[e_exec_stmt_role]);
// dsqlScratch's transaction behavior
temp = node->nod_arg[e_exec_stmt_tran];
if (temp)
{
dsqlScratch->appendUChar(blr_exec_stmt_tran_clone); // transaction parameters equal to current transaction
dsqlScratch->appendUChar((UCHAR)(IPTR) temp->nod_flags);
}
// inherit caller's privileges ?
if (node->nod_arg[e_exec_stmt_privs]) {
dsqlScratch->appendUChar(blr_exec_stmt_privs);
}
// inputs
temp = node->nod_arg[e_exec_stmt_inputs];
if (temp)
{
const dsql_nod* const* ptr = temp->nod_arg;
const bool haveNames = ((*ptr)->nod_arg[e_named_param_name] != 0);
if (haveNames)
dsqlScratch->appendUChar(blr_exec_stmt_in_params2);
else
dsqlScratch->appendUChar(blr_exec_stmt_in_params);
for (const dsql_nod* const* end = ptr + temp->nod_count; ptr < end; ptr++)
{
if (haveNames)
{
const dsql_str* name = (dsql_str*) (*ptr)->nod_arg[e_named_param_name];
dsqlScratch->appendNullString(name->str_data);
}
GEN_expr(dsqlScratch, (*ptr)->nod_arg[e_named_param_expr]);
}
}
// outputs
temp = node->nod_arg[e_exec_stmt_outputs];
if (temp)
{
dsqlScratch->appendUChar(blr_exec_stmt_out_params);
for (size_t i = 0; i < temp->nod_count; ++i) {
GEN_expr(dsqlScratch, temp->nod_arg[i]);
}
}
2010-06-22 02:53:35 +02:00
dsqlScratch->appendUChar(blr_end);
}
/**
gen_field
@brief Generate blr for a field - field id's
are preferred but not for trigger or view blr.
@param dsqlScratch
@param context
@param field
@param indices
**/
static void gen_field( DsqlCompilerScratch* dsqlScratch, const dsql_ctx* context,
const dsql_fld* field, dsql_nod* indices)
2001-05-23 15:26:42 +02:00
{
2009-04-18 16:13:26 +02:00
// For older clients - generate an error should they try and
// access data types which did not exist in the older dialect
if (dsqlScratch->clientDialect <= SQL_DIALECT_V5)
2009-01-06 06:53:34 +01:00
{
switch (field->fld_dtype)
{
2001-05-23 15:26:42 +02:00
case dtype_sql_date:
case dtype_sql_time:
case dtype_int64:
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-804) <<
Arg::Gds(isc_dsql_datatype_err) <<
2009-01-06 06:53:34 +01:00
Arg::Gds(isc_sql_dialect_datatype_unsupport) <<
Arg::Num(dsqlScratch->clientDialect) <<
2009-01-06 06:53:34 +01:00
Arg::Str(DSC_dtype_tostring(static_cast<UCHAR>(field->fld_dtype))));
2001-05-23 15:26:42 +02:00
break;
default:
// No special action for other data types
2001-05-23 15:26:42 +02:00
break;
}
}
if (indices)
dsqlScratch->appendUChar(blr_index);
2001-05-23 15:26:42 +02:00
if (DDL_ids(dsqlScratch))
2009-11-16 10:18:24 +01:00
{
dsqlScratch->appendUChar(blr_fid);
stuff_context(dsqlScratch, context);
dsqlScratch->appendUShort(field->fld_id);
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_field);
stuff_context(dsqlScratch, context);
dsqlScratch->appendMetaString(field->fld_name.c_str());
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
if (indices)
{
dsqlScratch->appendUChar(indices->nod_count);
dsql_nod** ptr = indices->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* end = ptr + indices->nod_count; ptr < end; ptr++)
{
GEN_expr(dsqlScratch, *ptr);
}
2001-05-23 15:26:42 +02:00
}
}
/**
gen_join_rse
@brief Generate a record selection expression
with an explicit join type.
@param dsqlScratch
@param rse
**/
static void gen_join_rse( DsqlCompilerScratch* dsqlScratch, const dsql_nod* rse)
2001-05-23 15:26:42 +02:00
{
dsqlScratch->appendUChar(blr_rs_stream);
dsqlScratch->appendUChar(2);
2001-05-23 15:26:42 +02:00
GEN_expr(dsqlScratch, rse->nod_arg[e_join_left_rel]);
GEN_expr(dsqlScratch, rse->nod_arg[e_join_rght_rel]);
2001-05-23 15:26:42 +02:00
const dsql_nod* node = rse->nod_arg[e_join_type];
2009-01-06 06:53:34 +01:00
if (node->nod_type != nod_join_inner)
{
dsqlScratch->appendUChar(blr_join_type);
2001-05-23 15:26:42 +02:00
if (node->nod_type == nod_join_left)
dsqlScratch->appendUChar(blr_left);
2001-05-23 15:26:42 +02:00
else if (node->nod_type == nod_join_right)
dsqlScratch->appendUChar(blr_right);
2001-05-23 15:26:42 +02:00
else
dsqlScratch->appendUChar(blr_full);
2001-05-23 15:26:42 +02:00
}
if (rse->nod_arg[e_join_boolean])
{
dsqlScratch->appendUChar(blr_boolean);
GEN_expr(dsqlScratch, rse->nod_arg[e_join_boolean]);
}
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(blr_end);
2001-05-23 15:26:42 +02:00
}
/**
gen_map
@brief Generate a value map for a record selection expression.
@param dsqlScratch
@param map
**/
static void gen_map( DsqlCompilerScratch* dsqlScratch, dsql_map* map)
2001-05-23 15:26:42 +02:00
{
USHORT count = 0;
dsql_map* temp;
2001-05-23 15:26:42 +02:00
for (temp = map; temp; temp = temp->map_next)
++count;
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(blr_map);
dsqlScratch->appendUShort(count);
2001-05-23 15:26:42 +02:00
2009-11-16 10:18:24 +01:00
for (temp = map; temp; temp = temp->map_next)
{
dsqlScratch->appendUShort(temp->map_position);
GEN_expr(dsqlScratch, temp->map_node);
2001-05-23 15:26:42 +02:00
}
}
static void gen_optional_expr(DsqlCompilerScratch* dsqlScratch, const UCHAR code, dsql_nod* node)
{
if (node)
{
dsqlScratch->appendUChar(code);
GEN_expr(dsqlScratch, node);
}
}
2001-05-23 15:26:42 +02:00
2010-10-09 03:57:37 +02:00
// Generate a parameter reference.
void GEN_parameter( DsqlCompilerScratch* dsqlScratch, const dsql_par* parameter)
2001-05-23 15:26:42 +02:00
{
const dsql_msg* message = parameter->par_message;
2001-05-23 15:26:42 +02:00
2004-02-02 12:02:12 +01:00
const dsql_par* null = parameter->par_null;
2009-11-16 10:18:24 +01:00
if (null != NULL)
{
dsqlScratch->appendUChar(blr_parameter2);
dsqlScratch->appendUChar(message->msg_number);
dsqlScratch->appendUShort(parameter->par_parameter);
dsqlScratch->appendUShort(null->par_parameter);
2001-05-23 15:26:42 +02:00
return;
}
dsqlScratch->appendUChar(blr_parameter);
dsqlScratch->appendUChar(message->msg_number);
dsqlScratch->appendUShort(parameter->par_parameter);
2001-05-23 15:26:42 +02:00
}
/**
gen_plan
@brief Generate blr for an access plan expression.
@param dsqlScratch
@param plan_expression
**/
static void gen_plan( DsqlCompilerScratch* dsqlScratch, const dsql_nod* plan_expression)
2001-05-23 15:26:42 +02:00
{
2009-04-18 16:13:26 +02:00
// stuff the join type
2001-05-23 15:26:42 +02:00
const dsql_nod* list = plan_expression->nod_arg[0];
2009-11-16 10:18:24 +01:00
if (list->nod_count > 1)
{
dsqlScratch->appendUChar(blr_join);
dsqlScratch->appendUChar(list->nod_count);
2001-05-23 15:26:42 +02:00
}
2009-04-18 16:13:26 +02:00
// stuff one or more plan items
2001-05-23 15:26:42 +02:00
const dsql_nod* const* ptr = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + list->nod_count; ptr < end; ptr++)
{
const dsql_nod* node = *ptr;
2009-11-16 10:18:24 +01:00
if (node->nod_type == nod_plan_expr)
{
gen_plan(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
continue;
}
// if we're here, it must be a nod_plan_item
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(blr_retrieve);
2001-05-23 15:26:42 +02:00
2009-04-18 16:13:26 +02:00
// stuff the relation--the relation id itself is redundant except
// when there is a need to differentiate the base tables of views
2001-05-23 15:26:42 +02:00
const dsql_nod* arg = node->nod_arg[0];
gen_relation(dsqlScratch, (dsql_ctx*) arg->nod_arg[e_rel_context]);
2001-05-23 15:26:42 +02:00
// now stuff the access method for this stream
2003-11-10 10:16:38 +01:00
const dsql_str* index_string;
2001-05-23 15:26:42 +02:00
arg = node->nod_arg[1];
2009-01-06 06:53:34 +01:00
switch (arg->nod_type)
{
2001-05-23 15:26:42 +02:00
case nod_natural:
dsqlScratch->appendUChar(blr_sequential);
2001-05-23 15:26:42 +02:00
break;
case nod_index_order:
dsqlScratch->appendUChar(blr_navigational);
2003-11-10 10:16:38 +01:00
index_string = (dsql_str*) arg->nod_arg[0];
dsqlScratch->appendNullString(index_string->str_data);
if (!arg->nod_arg[1])
break;
// dimitr: FALL INTO, if the plan item is ORDER ... INDEX (...)
2001-05-23 15:26:42 +02:00
case nod_index:
{
dsqlScratch->appendUChar(blr_indices);
2009-01-06 06:53:34 +01:00
arg = (arg->nod_type == nod_index) ? arg->nod_arg[0] : arg->nod_arg[1];
dsqlScratch->appendUChar(arg->nod_count);
const dsql_nod* const* ptr2 = arg->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end2 = ptr2 + arg->nod_count; ptr2 < end2; ptr2++)
{
2003-11-10 10:16:38 +01:00
index_string = (dsql_str*) * ptr2;
dsqlScratch->appendNullString(index_string->str_data);
}
break;
2001-05-23 15:26:42 +02:00
}
default:
2003-11-04 00:59:24 +01:00
fb_assert(false);
2001-05-23 15:26:42 +02:00
break;
}
}
}
/**
gen_relation
@brief Generate blr for a relation reference.
@param dsqlScratch
@param context
**/
static void gen_relation( DsqlCompilerScratch* dsqlScratch, dsql_ctx* context)
2001-05-23 15:26:42 +02:00
{
const dsql_rel* relation = context->ctx_relation;
const dsql_prc* procedure = context->ctx_procedure;
2001-05-23 15:26:42 +02:00
// if this is a trigger or procedure, don't want relation id used
2009-01-06 06:53:34 +01:00
if (relation)
{
if (DDL_ids(dsqlScratch))
2009-11-16 10:18:24 +01:00
{
dsqlScratch->appendUChar(context->ctx_alias ? blr_rid2 : blr_rid);
dsqlScratch->appendUShort(relation->rel_id);
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(context->ctx_alias ? blr_relation2 : blr_relation);
dsqlScratch->appendMetaString(relation->rel_name.c_str());
2001-05-23 15:26:42 +02:00
}
if (context->ctx_alias)
dsqlScratch->appendMetaString(context->ctx_alias);
stuff_context(dsqlScratch, context);
2001-05-23 15:26:42 +02:00
}
2009-01-06 06:53:34 +01:00
else if (procedure)
{
if (DDL_ids(dsqlScratch))
{
dsqlScratch->appendUChar(context->ctx_alias ? blr_pid2 : blr_pid);
dsqlScratch->appendUShort(procedure->prc_id);
2001-05-23 15:26:42 +02:00
}
else
{
if (procedure->prc_name.package.hasData())
{
dsqlScratch->appendUChar(context->ctx_alias ? blr_procedure4 : blr_procedure3);
dsqlScratch->appendMetaString(procedure->prc_name.package.c_str());
dsqlScratch->appendMetaString(procedure->prc_name.identifier.c_str());
}
else
{
dsqlScratch->appendUChar(context->ctx_alias ? blr_procedure2 : blr_procedure);
dsqlScratch->appendMetaString(procedure->prc_name.identifier.c_str());
}
2001-05-23 15:26:42 +02:00
}
if (context->ctx_alias)
dsqlScratch->appendMetaString(context->ctx_alias);
stuff_context(dsqlScratch, context);
dsql_nod* inputs = context->ctx_proc_inputs;
2009-11-16 10:18:24 +01:00
if (inputs)
{
dsqlScratch->appendUShort(inputs->nod_count);
dsql_nod* const* ptr = inputs->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + inputs->nod_count; ptr < end; ptr++)
{
GEN_expr(dsqlScratch, *ptr);
}
}
else
dsqlScratch->appendUShort(0);
2001-05-23 15:26:42 +02:00
}
}
/**
GEN_rse
@brief Generate a record selection expression.
@param dsqlScratch
@param rse
**/
void GEN_rse( DsqlCompilerScratch* dsqlScratch, const dsql_nod* rse)
2001-05-23 15:26:42 +02:00
{
if (rse->nod_flags & NOD_SELECT_EXPR_SINGLETON)
2003-10-05 08:27:16 +02:00
{
dsqlScratch->appendUChar(blr_singular);
2003-10-05 08:27:16 +02:00
}
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(blr_rse);
2001-05-23 15:26:42 +02:00
dsql_nod* list = rse->nod_arg[e_rse_streams];
2001-05-23 15:26:42 +02:00
2009-04-18 16:13:26 +02:00
// Handle source streams
2001-05-23 15:26:42 +02:00
2009-11-16 10:18:24 +01:00
if (list->nod_type == nod_union)
{
dsqlScratch->appendUChar(1);
gen_union(dsqlScratch, rse);
2001-05-23 15:26:42 +02:00
}
2009-01-06 06:53:34 +01:00
else if (list->nod_type == nod_list)
{
dsqlScratch->appendUChar(list->nod_count);
dsql_nod* const* ptr = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + list->nod_count; ptr < end; ptr++)
{
dsql_nod* node = *ptr;
2009-01-06 06:53:34 +01:00
switch (node->nod_type)
{
2009-01-06 06:53:34 +01:00
case nod_relation:
case nod_aggregate:
case nod_join:
GEN_expr(dsqlScratch, node);
2009-01-06 06:53:34 +01:00
break;
case nod_derived_table:
GEN_expr(dsqlScratch, node->nod_arg[e_derived_table_rse]);
2009-01-06 06:53:34 +01:00
break;
2003-08-15 01:34:37 +02:00
}
2001-05-23 15:26:42 +02:00
}
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(1);
GEN_expr(dsqlScratch, list);
2001-05-23 15:26:42 +02:00
}
if (rse->nod_arg[e_rse_lock])
dsqlScratch->appendUChar(blr_writelock);
dsql_nod* node;
2009-11-16 10:18:24 +01:00
if ((node = rse->nod_arg[e_rse_first]) != NULL)
{
dsqlScratch->appendUChar(blr_first);
GEN_expr(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
}
2009-11-16 10:18:24 +01:00
if ((node = rse->nod_arg[e_rse_skip]) != NULL)
{
dsqlScratch->appendUChar(blr_skip);
2010-01-20 08:34:31 +01:00
GEN_expr(dsqlScratch, node);
2006-06-02 10:03:22 +02:00
}
2002-06-29 08:56:51 +02:00
2009-11-16 10:18:24 +01:00
if ((node = rse->nod_arg[e_rse_boolean]) != NULL)
{
dsqlScratch->appendUChar(blr_boolean);
GEN_expr(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
}
if ((list = rse->nod_arg[e_rse_sort]) != NULL)
2010-01-20 08:34:31 +01:00
{
gen_sort(dsqlScratch, list);
2010-01-20 08:34:31 +01:00
}
2001-05-23 15:26:42 +02:00
2009-11-16 10:18:24 +01:00
if ((list = rse->nod_arg[e_rse_reduced]) != NULL)
{
dsqlScratch->appendUChar(blr_project);
dsqlScratch->appendUChar(list->nod_count);
dsql_nod** ptr = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + list->nod_count; ptr < end; ptr++)
{
GEN_expr(dsqlScratch, *ptr);
}
2001-05-23 15:26:42 +02:00
}
2009-04-18 16:13:26 +02:00
// if the user specified an access plan to use, add it here
2001-05-23 15:26:42 +02:00
2009-11-16 10:18:24 +01:00
if ((node = rse->nod_arg[e_rse_plan]) != NULL)
{
dsqlScratch->appendUChar(blr_plan);
gen_plan(dsqlScratch, node);
2001-05-23 15:26:42 +02:00
}
dsqlScratch->appendUChar(blr_end);
2001-05-23 15:26:42 +02:00
}
/**
gen_searched_case
@brief Generate BLR for CASE function (searched)
@param dsqlScratch
@param node
**/
static void gen_searched_case( DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
{
// blr_value_if is used for building the case expression
dsqlScratch->appendUChar(blr_cast);
GEN_descriptor(dsqlScratch, &node->nod_desc, true);
2009-01-06 06:53:34 +01:00
const SSHORT count = node->nod_arg[e_searched_case_search_conditions]->nod_count;
dsql_nod* boolean_list = node->nod_arg[e_searched_case_search_conditions];
dsql_nod* results_list = node->nod_arg[e_searched_case_results];
dsql_nod* const* bptr = boolean_list->nod_arg;
dsql_nod* const* rptr = results_list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = bptr + count; bptr < end; bptr++, rptr++)
{
dsqlScratch->appendUChar(blr_value_if);
GEN_expr(dsqlScratch, *bptr);
GEN_expr(dsqlScratch, *rptr);
}
// else_result
GEN_expr(dsqlScratch, node->nod_arg[e_searched_case_results]->nod_arg[count]);
}
/**
gen_select
@brief Generate BLR for a SELECT statement.
@param dsqlScratch
@param rse
**/
2009-12-21 15:20:26 +01:00
static void gen_select(DsqlCompilerScratch* dsqlScratch, dsql_nod* rse)
2001-05-23 15:26:42 +02:00
{
dsql_ctx* context;
fb_assert(rse->nod_type == nod_rse);
2001-05-23 15:26:42 +02:00
2009-12-21 15:20:26 +01:00
DsqlCompiledStatement* statement = dsqlScratch->getStatement();
2009-04-18 16:13:26 +02:00
// Set up parameter for things in the select list
const dsql_nod* list = rse->nod_arg[e_rse_items];
dsql_nod* const* ptr = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + list->nod_count; ptr < end; ptr++)
{
dsql_par* parameter = MAKE_parameter(statement->getReceiveMsg(), true, true, 0, *ptr);
parameter->par_node = *ptr;
MAKE_desc(dsqlScratch, &parameter->par_desc, *ptr, NULL);
}
2001-05-23 15:26:42 +02:00
2009-04-18 16:13:26 +02:00
// Set up parameter to handle EOF
2001-05-23 15:26:42 +02:00
dsql_par* parameter_eof = MAKE_parameter(statement->getReceiveMsg(), false, false, 0, NULL);
statement->setEof(parameter_eof);
parameter_eof->par_desc.dsc_dtype = dtype_short;
parameter_eof->par_desc.dsc_scale = 0;
parameter_eof->par_desc.dsc_length = sizeof(SSHORT);
2009-04-18 16:13:26 +02:00
// Save DBKEYs for possible update later
2001-05-23 15:26:42 +02:00
list = rse->nod_arg[e_rse_streams];
GenericMap<NonPooled<dsql_par*, dsql_ctx*> > paramContexts(*getDefaultMemoryPool());
2009-01-06 06:53:34 +01:00
if (!rse->nod_arg[e_rse_reduced])
{
2006-08-17 14:08:49 +02:00
dsql_nod* const* ptr2 = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end2 = ptr2 + list->nod_count; ptr2 < end2; ptr2++)
{
2006-08-17 14:08:49 +02:00
dsql_nod* item = *ptr2;
2009-01-06 06:53:34 +01:00
if (item && item->nod_type == nod_relation)
{
context = (dsql_ctx*) item->nod_arg[e_rel_context];
2009-11-16 10:18:24 +01:00
const dsql_rel* relation = context->ctx_relation;
if (relation)
2009-01-06 06:53:34 +01:00
{
// Set up dbkey
dsql_par* parameter = MAKE_parameter(statement->getReceiveMsg(), false,
2009-12-21 15:20:26 +01:00
false, 0, NULL);
parameter->par_dbkey_relname = relation->rel_name;
paramContexts.put(parameter, context);
2001-05-23 15:26:42 +02:00
parameter->par_desc.dsc_dtype = dtype_text;
parameter->par_desc.dsc_ttype() = ttype_binary;
2009-01-06 06:53:34 +01:00
parameter->par_desc.dsc_length = relation->rel_dbkey_length;
2001-05-23 15:26:42 +02:00
// Set up record version - for post v33 databases
2001-05-23 15:26:42 +02:00
parameter = MAKE_parameter(statement->getReceiveMsg(), false, false, 0, NULL);
parameter->par_rec_version_relname = relation->rel_name;
paramContexts.put(parameter, context);
parameter->par_desc.dsc_dtype = dtype_text;
parameter->par_desc.dsc_ttype() = ttype_binary;
2009-01-06 06:53:34 +01:00
parameter->par_desc.dsc_length = relation->rel_dbkey_length / 2;
2001-05-23 15:26:42 +02:00
}
}
}
2001-05-23 15:26:42 +02:00
}
2009-04-18 16:13:26 +02:00
// Generate definitions for the messages
2001-05-23 15:26:42 +02:00
GEN_port(dsqlScratch, statement->getReceiveMsg());
dsql_msg* message = statement->getSendMsg();
2001-05-23 15:26:42 +02:00
if (message->msg_parameter)
GEN_port(dsqlScratch, message);
2001-05-23 15:26:42 +02:00
else
statement->setSendMsg(NULL);
2001-05-23 15:26:42 +02:00
2009-04-18 16:13:26 +02:00
// If there is a send message, build a RECEIVE
2001-05-23 15:26:42 +02:00
if ((message = statement->getSendMsg()) != NULL)
2009-11-16 10:18:24 +01:00
{
dsqlScratch->appendUChar(blr_receive);
dsqlScratch->appendUChar(message->msg_number);
2001-05-23 15:26:42 +02:00
}
2009-04-18 16:13:26 +02:00
// Generate FOR loop
2001-05-23 15:26:42 +02:00
message = statement->getReceiveMsg();
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(blr_for);
dsqlScratch->appendUChar(blr_stall);
GEN_rse(dsqlScratch, rse);
dsqlScratch->appendUChar(blr_send);
dsqlScratch->appendUChar(message->msg_number);
dsqlScratch->appendUChar(blr_begin);
2001-05-23 15:26:42 +02:00
2009-04-18 16:13:26 +02:00
// Build body of FOR loop
2001-05-23 15:26:42 +02:00
SSHORT constant;
dsc constant_desc;
constant_desc.dsc_dtype = dtype_short;
constant_desc.dsc_scale = 0;
constant_desc.dsc_sub_type = 0;
constant_desc.dsc_flags = 0;
constant_desc.dsc_length = sizeof(SSHORT);
constant_desc.dsc_address = (UCHAR*) & constant;
// Add invalid usage here
dsqlScratch->appendUChar(blr_assignment);
2001-05-23 15:26:42 +02:00
constant = 1;
gen_constant(dsqlScratch, &constant_desc, false);
2010-10-09 03:57:37 +02:00
GEN_parameter(dsqlScratch, statement->getEof());
2001-05-23 15:26:42 +02:00
for (size_t i = 0; i < message->msg_parameters.getCount(); ++i)
2004-10-26 09:21:47 +02:00
{
dsql_par* parameter = message->msg_parameters[i];
2009-11-16 10:18:24 +01:00
if (parameter->par_node)
{
dsqlScratch->appendUChar(blr_assignment);
GEN_expr(dsqlScratch, parameter->par_node);
2010-10-09 03:57:37 +02:00
GEN_parameter(dsqlScratch, parameter);
2001-05-23 15:26:42 +02:00
}
if (parameter->par_dbkey_relname.hasData() && paramContexts.get(parameter, context))
2009-11-16 10:18:24 +01:00
{
dsqlScratch->appendUChar(blr_assignment);
dsqlScratch->appendUChar(blr_dbkey);
stuff_context(dsqlScratch, context);
2010-10-09 03:57:37 +02:00
GEN_parameter(dsqlScratch, parameter);
}
if (parameter->par_rec_version_relname.hasData() && paramContexts.get(parameter, context))
{
dsqlScratch->appendUChar(blr_assignment);
dsqlScratch->appendUChar(blr_record_version);
stuff_context(dsqlScratch, context);
2010-10-09 03:57:37 +02:00
GEN_parameter(dsqlScratch, parameter);
2001-05-23 15:26:42 +02:00
}
}
dsqlScratch->appendUChar(blr_end);
dsqlScratch->appendUChar(blr_send);
dsqlScratch->appendUChar(message->msg_number);
dsqlScratch->appendUChar(blr_assignment);
2001-05-23 15:26:42 +02:00
constant = 0;
gen_constant(dsqlScratch, &constant_desc, false);
2010-10-09 03:57:37 +02:00
GEN_parameter(dsqlScratch, statement->getEof());
2001-05-23 15:26:42 +02:00
}
/**
gen_simple_case
@brief Generate BLR for CASE function (simple)
@param dsqlScratch
@param node
**/
static void gen_simple_case( DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
{
// blr_value_if is used for building the case expression
dsqlScratch->appendUChar(blr_cast);
GEN_descriptor(dsqlScratch, &node->nod_desc, true);
2008-08-26 12:28:58 +02:00
const SSHORT count = node->nod_arg[e_simple_case_when_operands]->nod_count;
dsql_nod* when_list = node->nod_arg[e_simple_case_when_operands];
dsql_nod* results_list = node->nod_arg[e_simple_case_results];
dsql_nod* const* wptr = when_list->nod_arg;
dsql_nod* const* rptr = results_list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = wptr + count; wptr < end; wptr++, rptr++)
{
dsqlScratch->appendUChar(blr_value_if);
dsqlScratch->appendUChar(blr_eql);
if (wptr == when_list->nod_arg || !node->nod_arg[e_simple_case_case_operand2])
GEN_expr(dsqlScratch, node->nod_arg[e_simple_case_case_operand]);
else
GEN_expr(dsqlScratch, node->nod_arg[e_simple_case_case_operand2]);
GEN_expr(dsqlScratch, *wptr);
GEN_expr(dsqlScratch, *rptr);
}
// else_result
GEN_expr(dsqlScratch, node->nod_arg[e_simple_case_results]->nod_arg[count]);
}
/**
gen_sort
@brief Generate a sort clause.
@param dsqlScratch
@param list
**/
static void gen_sort( DsqlCompilerScratch* dsqlScratch, dsql_nod* list)
2001-05-23 15:26:42 +02:00
{
dsqlScratch->appendUChar(blr_sort);
dsqlScratch->appendUChar(list->nod_count);
2001-05-23 15:26:42 +02:00
dsql_nod* const* ptr = list->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + list->nod_count; ptr < end; ptr++)
{
dsql_nod* nulls_placement = (*ptr)->nod_arg[e_order_nulls];
2009-01-06 06:53:34 +01:00
if (nulls_placement)
{
switch (nulls_placement->getSlong())
{
case NOD_NULLS_FIRST:
dsqlScratch->appendUChar(blr_nullsfirst);
break;
case NOD_NULLS_LAST:
dsqlScratch->appendUChar(blr_nullslast);
break;
}
}
2002-09-10 20:28:23 +02:00
if ((*ptr)->nod_arg[e_order_flag])
dsqlScratch->appendUChar(blr_descending);
2001-05-23 15:26:42 +02:00
else
dsqlScratch->appendUChar(blr_ascending);
GEN_expr(dsqlScratch, (*ptr)->nod_arg[e_order_field]);
2001-05-23 15:26:42 +02:00
}
}
/**
gen_statement
@brief Generate BLR for DML statements.
@param dsqlScratch
@param node
**/
static void gen_statement(DsqlCompilerScratch* dsqlScratch, const dsql_nod* node)
{
dsql_nod* rse = NULL;
const dsql_msg* message = NULL;
bool innerSend = dsqlScratch->flags & DsqlCompilerScratch::FLAG_UPDATE_OR_INSERT;
2010-06-30 10:55:16 +02:00
const bool merge = dsqlScratch->flags & DsqlCompilerScratch::FLAG_MERGE;
2009-01-06 06:53:34 +01:00
switch (node->nod_type)
{
case nod_store:
rse = node->nod_arg[e_sto_rse];
break;
case nod_modify:
rse = node->nod_arg[e_mod_rse];
break;
case nod_erase:
rse = node->nod_arg[e_era_rse];
break;
default:
innerSend = true;
break;
}
if (dsqlScratch->getStatement()->getType() == DsqlCompiledStatement::TYPE_EXEC_PROCEDURE &&
!innerSend && !merge)
{
if ((message = dsqlScratch->getStatement()->getReceiveMsg()))
{
dsqlScratch->appendUChar(blr_send);
dsqlScratch->appendUChar(message->msg_number);
}
}
2009-11-16 10:18:24 +01:00
if (rse)
{
dsqlScratch->appendUChar(blr_for);
GEN_expr(dsqlScratch, rse);
}
if (dsqlScratch->getStatement()->getType() == DsqlCompiledStatement::TYPE_EXEC_PROCEDURE)
{
if ((message = dsqlScratch->getStatement()->getReceiveMsg()))
{
dsqlScratch->appendUChar(blr_begin);
if (innerSend && !merge)
{
dsqlScratch->appendUChar(blr_send);
dsqlScratch->appendUChar(message->msg_number);
}
2006-09-03 03:09:23 +02:00
}
}
dsql_nod* temp;
2008-07-02 11:46:44 +02:00
const dsql_ctx* context;
const dsql_str* name;
2009-01-06 06:53:34 +01:00
switch (node->nod_type)
{
case nod_store:
dsqlScratch->appendUChar(node->nod_arg[e_sto_return] ? blr_store2 : blr_store);
GEN_expr(dsqlScratch, node->nod_arg[e_sto_relation]);
GEN_statement(dsqlScratch, node->nod_arg[e_sto_statement]);
if (node->nod_arg[e_sto_return]) {
GEN_statement(dsqlScratch, node->nod_arg[e_sto_return]);
}
break;
case nod_modify:
dsqlScratch->appendUChar(node->nod_arg[e_mod_return] ? blr_modify2 : blr_modify);
temp = node->nod_arg[e_mod_source];
context = (dsql_ctx*) temp->nod_arg[e_rel_context];
stuff_context(dsqlScratch, context);
temp = node->nod_arg[e_mod_update];
context = (dsql_ctx*) temp->nod_arg[e_rel_context];
stuff_context(dsqlScratch, context);
GEN_statement(dsqlScratch, node->nod_arg[e_mod_statement]);
if (node->nod_arg[e_mod_return]) {
GEN_statement(dsqlScratch, node->nod_arg[e_mod_return]);
}
break;
case nod_modify_current:
dsqlScratch->appendUChar(node->nod_arg[e_mdc_return] ? blr_modify2 : blr_modify);
context = (dsql_ctx*) node->nod_arg[e_mdc_context];
stuff_context(dsqlScratch, context);
temp = node->nod_arg[e_mdc_update];
context = (dsql_ctx*) temp->nod_arg[e_rel_context];
stuff_context(dsqlScratch, context);
GEN_statement(dsqlScratch, node->nod_arg[e_mdc_statement]);
if (node->nod_arg[e_mdc_return]) {
GEN_statement(dsqlScratch, node->nod_arg[e_mdc_return]);
}
break;
case nod_erase:
temp = node->nod_arg[e_era_relation];
context = (dsql_ctx*) temp->nod_arg[e_rel_context];
2009-11-16 10:18:24 +01:00
if (node->nod_arg[e_era_return])
{
dsqlScratch->appendUChar(blr_begin);
GEN_statement(dsqlScratch, node->nod_arg[e_era_return]);
dsqlScratch->appendUChar(blr_erase);
stuff_context(dsqlScratch, context);
dsqlScratch->appendUChar(blr_end);
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_erase);
stuff_context(dsqlScratch, context);
}
break;
case nod_erase_current:
context = (dsql_ctx*) node->nod_arg[e_erc_context];
2009-11-16 10:18:24 +01:00
if (node->nod_arg[e_erc_return])
{
dsqlScratch->appendUChar(blr_begin);
GEN_statement(dsqlScratch, node->nod_arg[e_erc_return]);
dsqlScratch->appendUChar(blr_erase);
stuff_context(dsqlScratch, context);
dsqlScratch->appendUChar(blr_end);
}
2009-11-16 10:18:24 +01:00
else
{
dsqlScratch->appendUChar(blr_erase);
stuff_context(dsqlScratch, context);
}
break;
case nod_exec_procedure:
if (node->nod_arg[e_exe_package])
{
dsqlScratch->appendUChar(blr_exec_proc2);
dsqlScratch->appendMetaString(((dsql_str*) node->nod_arg[e_exe_package])->str_data);
}
else
dsqlScratch->appendUChar(blr_exec_proc);
name = (dsql_str*) node->nod_arg[e_exe_procedure];
dsqlScratch->appendMetaString(name->str_data);
// Input parameters
2009-11-16 10:18:24 +01:00
if ( (temp = node->nod_arg[e_exe_inputs]) )
{
dsqlScratch->appendUShort(temp->nod_count);
dsql_nod** ptr = temp->nod_arg;
const dsql_nod* const* end = ptr + temp->nod_count;
while (ptr < end)
{
GEN_expr(dsqlScratch, *ptr++);
}
}
else {
dsqlScratch->appendUShort(0);
}
// Output parameters
2009-11-16 10:18:24 +01:00
if ( ( temp = node->nod_arg[e_exe_outputs]) )
{
dsqlScratch->appendUShort(temp->nod_count);
dsql_nod** ptr = temp->nod_arg;
const dsql_nod* const* end = ptr + temp->nod_count;
while (ptr < end)
{
GEN_expr(dsqlScratch, *ptr++);
}
}
else {
dsqlScratch->appendUShort(0);
}
break;
default:
fb_assert(false);
}
if (message) {
dsqlScratch->appendUChar(blr_end);
}
}
/**
gen_table_lock
@brief Generate tpb for table lock.
If lock level is specified, it overrrides the transaction lock level.
@param dsqlScratch
@param tbl_lock
@param lock_level
**/
static void gen_table_lock( DsqlCompilerScratch* dsqlScratch, const dsql_nod* tbl_lock, USHORT lock_level)
2001-05-23 15:26:42 +02:00
{
2008-06-03 08:14:59 +02:00
if (!tbl_lock || tbl_lock->nod_type != nod_table_lock)
2001-05-23 15:26:42 +02:00
return;
const dsql_nod* tbl_names = tbl_lock->nod_arg[e_lock_tables];
SSHORT flags = 0;
2001-05-23 15:26:42 +02:00
if (tbl_lock->nod_arg[e_lock_mode])
flags = tbl_lock->nod_arg[e_lock_mode]->nod_flags;
if (flags & NOD_PROTECTED)
2003-11-08 00:27:24 +01:00
lock_level = isc_tpb_protected;
2001-05-23 15:26:42 +02:00
else if (flags & NOD_SHARED)
2003-11-08 00:27:24 +01:00
lock_level = isc_tpb_shared;
2001-05-23 15:26:42 +02:00
2009-01-07 10:30:57 +01:00
const USHORT lock_mode = (flags & NOD_WRITE) ? isc_tpb_lock_write : isc_tpb_lock_read;
2001-05-23 15:26:42 +02:00
2006-06-02 10:03:22 +02:00
const dsql_nod* const* ptr = tbl_names->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + tbl_names->nod_count; ptr < end; ptr++)
{
2001-05-23 15:26:42 +02:00
if ((*ptr)->nod_type != nod_relation_name)
continue;
dsqlScratch->appendUChar(lock_mode);
2001-05-23 15:26:42 +02:00
// stuff table name
2003-11-10 10:16:38 +01:00
const dsql_str* temp = (dsql_str*) ((*ptr)->nod_arg[e_rln_name]);
dsqlScratch->appendNullString(temp->str_data);
2001-05-23 15:26:42 +02:00
dsqlScratch->appendUChar(lock_level);
2001-05-23 15:26:42 +02:00
}
}
/**
gen_union
@brief Generate a union of substreams.
@param dsqlScratch
@param union_node
**/
static void gen_union( DsqlCompilerScratch* dsqlScratch, const dsql_nod* union_node)
2001-05-23 15:26:42 +02:00
{
if (union_node->nod_arg[0]->nod_flags & NOD_UNION_RECURSIVE) {
dsqlScratch->appendUChar(blr_recurse);
}
else {
dsqlScratch->appendUChar(blr_union);
}
2001-05-23 15:26:42 +02:00
2009-04-18 16:13:26 +02:00
// Obtain the context for UNION from the first dsql_map* node
dsql_nod* items = union_node->nod_arg[e_rse_items];
dsql_nod* map_item = items->nod_arg[0];
// AB: First item could be a virtual field generated by derived table.
if (map_item->nod_type == nod_derived_field) {
2010-01-20 08:34:31 +01:00
map_item = map_item->nod_arg[e_derived_field_value];
2003-08-15 01:34:37 +02:00
}
dsql_ctx* union_context = (dsql_ctx*) map_item->nod_arg[e_map_context];
stuff_context(dsqlScratch, union_context);
// secondary context number must be present once in generated blr
union_context->ctx_flags &= ~CTX_recursive;
2001-05-23 15:26:42 +02:00
dsql_nod* streams = union_node->nod_arg[e_rse_streams];
dsqlScratch->appendUChar(streams->nod_count); // number of substreams
2001-05-23 15:26:42 +02:00
2006-06-02 10:03:22 +02:00
dsql_nod** ptr = streams->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const end = ptr + streams->nod_count; ptr < end; ptr++)
{
dsql_nod* sub_rse = *ptr;
GEN_rse(dsqlScratch, sub_rse);
2001-05-23 15:26:42 +02:00
items = sub_rse->nod_arg[e_rse_items];
dsqlScratch->appendUChar(blr_map);
dsqlScratch->appendUShort(items->nod_count);
USHORT count = 0;
dsql_nod** iptr = items->nod_arg;
2009-01-06 06:53:34 +01:00
for (const dsql_nod* const* const iend = iptr + items->nod_count; iptr < iend; iptr++)
{
dsqlScratch->appendUShort(count);
GEN_expr(dsqlScratch, *iptr);
2001-05-23 15:26:42 +02:00
count++;
}
}
}
/**
stuff_context
@brief Write a context number into the BLR buffer.
Check for possible overflow.
@param dsqlScratch
@param context
**/
static void stuff_context(DsqlCompilerScratch* dsqlScratch, const dsql_ctx* context)
{
if (context->ctx_context > MAX_UCHAR) {
ERRD_post(Arg::Gds(isc_too_many_contexts));
}
dsqlScratch->appendUChar(context->ctx_context);
if (context->ctx_flags & CTX_recursive)
{
if (context->ctx_recursive > MAX_UCHAR) {
ERRD_post(Arg::Gds(isc_too_many_contexts));
}
dsqlScratch->appendUChar(context->ctx_recursive);
}
}