8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-31 06:43:02 +01:00
firebird-mirror/src/gpre/jrdmet.cpp

157 lines
4.4 KiB
C++
Raw Normal View History

2001-05-23 15:26:42 +02:00
//____________________________________________________________
//
// PROGRAM: JRD Access Method
// MODULE: jrdmet.cpp
// DESCRIPTION: Non-database meta data for internal JRD stuff
//
// 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.
// Contributor(s): ______________________________________.
// TMN (Mike Nordell) 11.APR.2001 - Reduce compiler warnings
// There however is still a bunch of constness errors in this file
//
//
//____________________________________________________________
//
// $Id: jrdmet.cpp,v 1.1.1.1 2001-05-23 13:25:31 tamlin Exp $
//
#include "../include/jrd/gds.h"
#include "../jrd/common.h"
#include "../jrd/ods.h"
extern "C" {
struct blk {
SLONG blk_header;
};
} // extern "C"
#include "../gpre/gpre.h"
#include "../jrd/constants.h"
#define GPRE
#include "../jrd/ini.h"
#undef GPRE
#include "../gpre/hsh_proto.h"
#include "../gpre/jrdme_proto.h"
extern "C" {
//____________________________________________________________
//
// Initialize in memory meta data.
//
void JRDMET_init( DBB db)
{
REL relation;
SYM symbol;
FLD field;
TYP type;
CONST RTYP *rtype;
CONST UCHAR *relfld;
CONST UCHAR *fld;
int n;
struct gfld *gfield;
relfld = relfields;
while (relfld[RFLD_R_NAME]) {
relation = (REL) ALLOC(REL_LEN);
relation->rel_database = db;
relation->rel_next = db->dbb_relations;
relation->rel_id = relfld[RFLD_R_ID];
db->dbb_relations = relation;
relation->rel_symbol = symbol = (SYM) ALLOC(SYM_LEN);
symbol->sym_type = SYM_relation;
symbol->sym_object = (CTX) relation;
#pragma FB_COMPILER_MESSAGE("FIXFIX! const_cast")
symbol->sym_string = const_cast < char *>(names[relfld[RFLD_R_NAME]]);
HSH_insert(symbol);
for (n = 0, fld = relfld + RFLD_RPT; fld[RFLD_F_NAME];
n++, fld += RFLD_F_LENGTH) {
relation->rel_fields = field;
gfield = const_cast < gfld * >((fld[RFLD_F_UPD_MINOR]) ?
&gfields[fld[RFLD_F_UPD_ID]] :
&gfields[fld[RFLD_F_ID]]);
field = (FLD) ALLOC(FLD_LEN);
field->fld_relation = relation;
field->fld_next = relation->rel_fields;
field->fld_id = n;
field->fld_length = gfield->gfld_length;
field->fld_dtype = gfield->gfld_dtype;
field->fld_sub_type = gfield->gfld_sub_type;
if (field->fld_dtype == dtype_varying ||
field->fld_dtype == dtype_text) {
field->fld_dtype = dtype_cstring;
field->fld_flags |= FLD_text;
++field->fld_length;
if (gfield->gfld_sub_type == dsc_text_type_metadata) {
field->fld_flags |= FLD_charset;
field->fld_charset_id = CS_METADATA;
field->fld_collate_id = COLLATE_NONE;
field->fld_ttype = ttype_metadata;
}
else {
field->fld_flags |= FLD_charset;
field->fld_charset_id = CS_NONE;
field->fld_collate_id = COLLATE_NONE;
field->fld_ttype = ttype_none;
}
}
else if (field->fld_dtype == dtype_blob) {
field->fld_dtype = dtype_blob;
field->fld_flags |= FLD_blob;
if (gfield->gfld_sub_type == BLOB_text)
field->fld_charset_id = CS_METADATA;
}
field->fld_symbol = symbol = (SYM) ALLOC(SYM_LEN);
symbol->sym_type = SYM_field;
symbol->sym_object = (CTX) field;
symbol->sym_string =
const_cast < char *>(names[fld[RFLD_F_NAME]]);
HSH_insert(symbol);
field->fld_global = symbol = (SYM) ALLOC(SYM_LEN);
symbol->sym_type = SYM_field;
symbol->sym_object = (CTX) field;
symbol->sym_string =
const_cast < char *>(names[gfield->gfld_name]);
}
relfld = fld + 1;
}
for (rtype = types; rtype->rtyp_name; rtype++) {
type = (TYP) ALLOC(TYP_LEN);
type->typ_symbol = symbol = (SYM) ALLOC(SYM_LEN);
type->typ_value = rtype->rtyp_value;
symbol->sym_type = SYM_type;
symbol->sym_object = (CTX) type;
symbol->sym_string = const_cast < char *>(rtype->rtyp_name);
HSH_insert(symbol);
}
}
} // extern "C"