8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 06:03:02 +01:00
firebird-mirror/src/gpre/dyntable.cpp
2005-05-27 22:45:31 +00:00

151 lines
4.1 KiB
C++

//____________________________________________________________
//
// PROGRAM: BLR Pretty Printer
// MODULE: dyntable.cpp
// DESCRIPTION: Dynamic DDL to internal conversion table generator
//
// 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): ______________________________________.
//
//
//____________________________________________________________
//
// $Id: dyntable.cpp,v 1.10 2005-05-27 22:42:14 asfernandes Exp $
//
// CVC: Strange, this file is only referenced in a MacOsX project and gpre
// works directly with dyntable.h.
#include "firebird.h"
#include <stdio.h>
#include "../jrd/ibase.h"
#define NODE(dyn) {dyn, "dyn"},
struct dyn {
SSHORT dyn_value;
const char* dyn_string;
} dyn_table[] = {
NODE(gds__dyn_begin)
NODE(gds__dyn_end)
NODE(gds__dyn_if)
NODE(gds__dyn_def_database)
NODE(gds__dyn_def_global_fld)
NODE(gds__dyn_def_local_fld)
NODE(gds__dyn_def_idx)
NODE(gds__dyn_def_rel)
NODE(gds__dyn_def_view)
NODE(gds__dyn_def_sql_fld)
NODE(gds__dyn_def_trigger)
NODE(gds__dyn_mod_rel)
NODE(gds__dyn_mod_global_fld)
NODE(gds__dyn_mod_local_fld)
NODE(gds__dyn_mod_view)
NODE(gds__dyn_delete_database)
NODE(gds__dyn_delete_rel)
NODE(gds__dyn_delete_global_fld)
NODE(gds__dyn_delete_local_fld)
NODE(gds__dyn_delete_idx)
NODE(gds__dyn_rel_defined)
NODE(gds__dyn_global_fld_defined)
NODE(gds__dyn_local_fld_defined)
NODE(gds__dyn_index_defined)
NODE(gds__dyn_not)
NODE(gds__dyn_and)
NODE(gds__dyn_or)
NODE(gds__dyn_rel_name)
NODE(gds__dyn_fld_name)
NODE(gds__dyn_idx_name)
NODE(gds__dyn_description)
NODE(gds__dyn_security_class)
NODE(gds__dyn_system_flag)
NODE(gds__dyn_update_flag)
NODE(gds__dyn_view_blr)
NODE(gds__dyn_view_source)
NODE(gds__dyn_view_relation)
NODE(gds__dyn_view_context)
NODE(gds__dyn_view_context_name)
NODE(gds__dyn_rel_dbkey_length)
NODE(gds__dyn_rel_store_trig)
NODE(gds__dyn_rel_modify_trig)
NODE(gds__dyn_rel_erase_trig)
NODE(gds__dyn_rel_store_trig_source)
NODE(gds__dyn_rel_modify_trig_source)
NODE(gds__dyn_rel_erase_trig_source)
NODE(gds__dyn_rel_sql_protection)
NODE(gds__dyn_fld_type)
NODE(gds__dyn_fld_length)
NODE(gds__dyn_fld_scale)
NODE(gds__dyn_fld_sub_type)
NODE(gds__dyn_fld_segment_length)
NODE(gds__dyn_fld_query_header)
NODE(gds__dyn_fld_edit_string)
NODE(gds__dyn_fld_validation_blr)
NODE(gds__dyn_fld_validate_source)
NODE(gds__dyn_fld_computed_blr)
NODE(gds__dyn_fld_computed_source)
NODE(gds__dyn_fld_missing_value)
NODE(gds__dyn_fld_default_value)
NODE(gds__dyn_fld_query_name)
NODE(gds__dyn_fld_source)
NODE(gds__dyn_fld_base_fld)
NODE(gds__dyn_fld_position)
NODE(gds__dyn_fld_update_flag)
NODE(gds__dyn_idx_unique)
NODE(gds__dyn_idx_active)
NODE(gds__dyn_trg_type)
NODE(gds__dyn_trg_blr)
NODE(gds__dyn_trg_source)
{0, 0}
};
//int *table[256];
//____________________________________________________________
//
// Spit out a conversion table.
//
int main()
{
int max;
const char* table[256];
for (max = 0; max < 256; max++)
table[max] = NULL;
max = 0;
for (const dyn* item = dyn_table; item->dyn_string; item++) {
if (table[item->dyn_value])
fprintf(stderr, "%s (%d) is duplicate\n",
item->dyn_string, item->dyn_value);
table[item->dyn_value] = item->dyn_string;
if (item->dyn_value > max)
max = item->dyn_value;
}
for (int dyn_iter = 0; dyn_iter <= max; dyn_iter++)
if (table[dyn_iter])
printf(" \"%s\",\n", table[dyn_iter]);
else
printf(" NULL,\n");
return 0;
}