summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/util/utl_global.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/util/utl_global.cpp')
-rw-r--r--TAO/TAO_IDL/util/utl_global.cpp1021
1 files changed, 0 insertions, 1021 deletions
diff --git a/TAO/TAO_IDL/util/utl_global.cpp b/TAO/TAO_IDL/util/utl_global.cpp
deleted file mode 100644
index f7ed0257326..00000000000
--- a/TAO/TAO_IDL/util/utl_global.cpp
+++ /dev/null
@@ -1,1021 +0,0 @@
-// $Id$
-
-/*
-
-COPYRIGHT
-
-Copyright 1992, 1993, 1994 Sun Microsystems, Inc. Printed in the United
-States of America. All Rights Reserved.
-
-This product is protected by copyright and distributed under the following
-license restricting its use.
-
-The Interface Definition Language Compiler Front End (CFE) is made
-available for your use provided that you include this license and copyright
-notice on all media and documentation and the software program in which
-this product is incorporated in whole or part. You may copy and extend
-functionality (but may not remove functionality) of the Interface
-Definition Language CFE without charge, but you are not authorized to
-license or distribute it to anyone else except as part of a product or
-program developed by you or with the express written consent of Sun
-Microsystems, Inc. ("Sun").
-
-The names of Sun Microsystems, Inc. and any of its subsidiaries or
-affiliates may not be used in advertising or publicity pertaining to
-distribution of Interface Definition Language CFE as permitted herein.
-
-This license is effective until terminated by Sun for failure to comply
-with this license. Upon termination, you shall destroy or return all code
-and documentation for the Interface Definition Language CFE.
-
-INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED AS IS WITH NO WARRANTIES OF
-ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS
-FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF
-DEALING, USAGE OR TRADE PRACTICE.
-
-INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED WITH NO SUPPORT AND WITHOUT
-ANY OBLIGATION ON THE PART OF Sun OR ANY OF ITS SUBSIDIARIES OR AFFILIATES
-TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT.
-
-SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH
-RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY
-INTERFACE DEFINITION LANGUAGE CFE OR ANY PART THEREOF.
-
-IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR
-ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL
-DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-Use, duplication, or disclosure by the government is subject to
-restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
-Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR
-52.227-19.
-
-Sun, Sun Microsystems and the Sun logo are trademarks or registered
-trademarks of Sun Microsystems, Inc.
-
-SunSoft, Inc.
-2550 Garcia Avenue
-Mountain View, California 94043
-
-NOTE:
-
-SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are
-trademarks or registered trademarks of Sun Microsystems, Inc.
-
- */
-
-// utl_global.cc - Implementation of class IDL_GlobalData
-//
-
-#include "idl.h"
-#include "idl_extern.h"
-#include "ace/OS.h"
-
-ACE_RCSID(util, utl_global, "$Id$")
-
-// Define an increment for the size of the array used to store names of
-// included files
-#undef INCREMENT
-#define INCREMENT 64
-
-IDL_GlobalData::IDL_GlobalData (void)
- : pd_scopes (0),
- pd_root (0),
- pd_gen (0),
- pd_err (0),
- pd_err_count (0),
- pd_lineno (0),
- pd_filename (0),
- pd_main_filename (0),
- pd_real_filename (0),
- pd_in_main_file (I_FALSE),
- pd_prog_name (0),
- pd_cpp_location (0),
- pd_compile_flags (0),
- pd_be (0),
- pd_local_escapes (0),
- pd_indent (0),
- pd_pragmas (0),
- pd_read_from_stdin (I_FALSE),
- pd_include_file_names (0),
- pd_n_include_file_names (0),
- pd_n_alloced_file_names (0),
- included_idl_files_ (0),
- n_included_idl_files_ (0),
- n_allocated_idl_files_ (0),
- pd_parse_state (PS_NoState),
- pd_idl_src_file (0),
- export_macro_ (0),
- export_include_ (0),
- client_hdr_ending_ (ACE::strnew ("C.h")),
- client_stub_ending_ (ACE::strnew ("C.cpp")),
- client_inline_ending_ (ACE::strnew ("C.i")),
- server_hdr_ending_ (ACE::strnew ("S.h")),
- server_template_hdr_ending_ (ACE::strnew ("S_T.h")),
- server_skeleton_ending_ (ACE::strnew ("S.cpp")),
- server_template_skeleton_ending_ (ACE::strnew ("S_T.cpp")),
- server_inline_ending_ (ACE::strnew ("S.i")),
- server_template_inline_ending_ (ACE::strnew ("S_T.i")),
- gperf_path_ (0),
- output_dir_ (0),
- any_support_ (I_TRUE),
- tc_support_ (I_TRUE),
- compiled_marshaling_ (I_FALSE),
- exception_support_ (I_FALSE),
- opt_tc_ (I_FALSE)
-{
- // Path for the perfect hash generator(gperf) program. Default
- // is $ACE_ROOT/bin/gperf.
- // Form the absolute pathname.
- char* ace_root = ACE_OS::getenv ("ACE_ROOT");
- if (ace_root == 0)
- // This may not cause any problem if -g option is used to specify
- // the correct path for the gperf program. Let us ignore this
- // error here. It will be caught when we check the existence of
- // the perfect hasher and at that time, we can switch over to some
- // other scheme.
- {
- this->gperf_path_ = 0;
- }
- else
- {
- // Set it to the default value.
- ACE_NEW (this->gperf_path_,
- char [ACE_OS::strlen (ace_root) + ACE_OS::strlen ("/bin/gperf") + 1]);
-#if defined (ACE_WIN32)
- ACE_OS::sprintf (this->gperf_path_,
- "%s\\bin\\gperf",
- ace_root);
-#else /* Not ACE_WIN32 */
- ACE_OS::sprintf (this->gperf_path_,
- "%s/bin/gperf",
- ace_root);
-#endif /* ACE_WIN32 */
- }
-}
-
-// Get or set scopes stack
-UTL_ScopeStack *
-IDL_GlobalData::scopes (void)
-{
- return this->pd_scopes;
-}
-
-void
-IDL_GlobalData::set_scopes (UTL_ScopeStack *s)
-{
- this->pd_scopes = s;
-}
-
-// Get or set root of AST
-AST_Root *
-IDL_GlobalData::root (void)
-{
- return this->pd_root;
-}
-void
-IDL_GlobalData::set_root (AST_Root *r)
-{
- this->pd_root = r;
-}
-
-// Get or set generator object
-AST_Generator *
-IDL_GlobalData::gen (void)
-{
- return this->pd_gen;
-}
-void
-IDL_GlobalData::set_gen (AST_Generator *g)
-{
- this->pd_gen = g;
-}
-
-// Get or set error object
-UTL_Error *
-IDL_GlobalData::err (void)
-{
- return this->pd_err;
-}
-void
-IDL_GlobalData::set_err (UTL_Error *e)
-{
- this->pd_err = e;
-}
-
-// Get or set error count
-long
-IDL_GlobalData::err_count (void)
-{
- return this->pd_err_count;
-}
-void
-IDL_GlobalData::set_err_count (long c)
-{
- this->pd_err_count = c;
-}
-
-// Get or set line number
-long
-IDL_GlobalData::lineno (void)
-{
- return this->pd_lineno;
-}
-void
-IDL_GlobalData::set_lineno (long n)
-{
- this->pd_lineno = n;
-}
-
-// Get or set file name being read now
-String *
-IDL_GlobalData::filename (void)
-{
- return this->pd_filename;
-}
-void
-IDL_GlobalData::set_filename (String *f)
-{
- this->pd_filename = f;
-}
-
-// Get or set main file name
-String *
-IDL_GlobalData::main_filename (void)
-{
- return this->pd_main_filename;
-}
-void
-IDL_GlobalData::set_main_filename (String *n)
-{
- this->pd_main_filename = n;
-}
-
-// Get or set real file name
-String *
-IDL_GlobalData::real_filename (void)
-{
- return this->pd_real_filename;
-}
-void
-IDL_GlobalData::set_real_filename (String *n)
-{
- this->pd_real_filename = n;
-}
-
-// Get or set indicator whether import is on
-idl_bool
-IDL_GlobalData::imported (void)
-{
- return this->pd_in_main_file ? I_FALSE : pd_import;
-}
-idl_bool
-IDL_GlobalData::import (void)
-{
- return this->pd_import;
-}
-void
-IDL_GlobalData::set_import (idl_bool is_in)
-{
- this->pd_import = is_in;
-}
-
-// Get or set indicator whether we're reading the main file now
-idl_bool
-IDL_GlobalData::in_main_file (void)
-{
- return this->pd_in_main_file;
-}
-void
-IDL_GlobalData::set_in_main_file (idl_bool is_in)
-{
- this->pd_in_main_file = is_in;
-}
-
-// Get or set stripped file name
-String *
-IDL_GlobalData::stripped_filename (void)
-{
- return this->pd_stripped_filename;
-}
-void
-IDL_GlobalData::set_stripped_filename (String *nm)
-{
- this->pd_stripped_filename = nm;
-}
-
-// Get or set cache value for argv[0]
-char *
-IDL_GlobalData::prog_name (void)
-{
- return this->pd_prog_name;
-}
-void
-IDL_GlobalData::set_prog_name (char *pn)
-{
- this->pd_prog_name = pn;
-}
-
-// Get or set location to find C preprocessor
-char *
-IDL_GlobalData::cpp_location (void)
-{
- return this->pd_cpp_location;
-}
-void
-IDL_GlobalData::set_cpp_location (char *l)
-{
- this->pd_cpp_location = l;
-}
-
-// Get or set IDL compiler flags
-long
-IDL_GlobalData::compile_flags (void)
-{
- return this->pd_compile_flags;
-}
-void
-IDL_GlobalData::set_compile_flags (long cf)
-{
- this->pd_compile_flags = cf;
-}
-
-// Get or set BE to be used
-char *
-IDL_GlobalData::be (void)
-{
- return this->pd_be;
-}
-void
-IDL_GlobalData::set_be (char *nbe)
-{
- this->pd_be = nbe;
-}
-
-// Get or set local escapes string. This provides additional mechanism
-// to pass information to a BE.
-char *
-IDL_GlobalData::local_escapes (void)
-{
- return this->pd_local_escapes;
-}
-void
-IDL_GlobalData::set_local_escapes (char *e)
-{
- this->pd_local_escapes = e;
-}
-
-// Get or set indent object
-UTL_Indenter *
-IDL_GlobalData::indent (void)
-{
- return this->pd_indent;
-}
-void
-IDL_GlobalData::set_indent (UTL_Indenter *i)
-{
- this->pd_indent = i;
-}
-
-// Get or set list of pragmas being parsed
-UTL_StrList *
-IDL_GlobalData::pragmas (void)
-{
- UTL_StrList *p = this->pd_pragmas;
-
- this->pd_pragmas = 0;
- return p;
-}
-
-void
-IDL_GlobalData::set_pragmas (UTL_StrList *p)
-{
- this->pd_pragmas = p;
-}
-
-// Get or set indicator whether we're reading from stdin.
-idl_bool
-IDL_GlobalData::read_from_stdin (void)
-{
- return this->pd_read_from_stdin;
-}
-
-void
-IDL_GlobalData::set_read_from_stdin (idl_bool r)
-{
- this->pd_read_from_stdin = r;
-}
-
-// Have we seen this include file name before?
-long
-IDL_GlobalData::seen_include_file_before (String *n)
-{
- unsigned long i;
-
- for (i = 0; i < this->pd_n_include_file_names; i++)
- if (n->compare (this->pd_include_file_names[i]))
- return I_TRUE;
- return I_FALSE;
-}
-
-// Store a name of an #include file
-void
-IDL_GlobalData::store_include_file_name (String *n)
-{
- String **o_include_file_names;
- unsigned long o_n_alloced_file_names, i;
-
- /*
- * Check if we need to store it at all or whether we've seen it already
- */
- if (seen_include_file_before (n))
- return;
- /*
- * OK, need to store. Make sure there's space for one more string
- */
- if (this->pd_n_include_file_names == this->pd_n_alloced_file_names)
- {
- // Allocating more space.
-
- if (this->pd_n_alloced_file_names == 0)
- {
- this->pd_n_alloced_file_names = INCREMENT;
- this->pd_include_file_names = new String *[this->pd_n_alloced_file_names];
- }
- else
- {
- o_include_file_names = this->pd_include_file_names;
- o_n_alloced_file_names = this->pd_n_alloced_file_names;
- this->pd_n_alloced_file_names += INCREMENT;
- this->pd_include_file_names = new String *[this->pd_n_alloced_file_names];
- for (i = 0; i < o_n_alloced_file_names; i++)
- this->pd_include_file_names[i] = o_include_file_names[i];
- delete [] o_include_file_names;
- }
- }
-
- // Store it.
- this->pd_include_file_names[this->pd_n_include_file_names++] = n;
-}
-
-void
-IDL_GlobalData::set_include_file_names (String **ns)
-{
- this->pd_include_file_names = ns;
-}
-
-String **
-IDL_GlobalData::include_file_names (void)
-{
- return this->pd_include_file_names;
-}
-
-void
-IDL_GlobalData::set_n_include_file_names (unsigned long n)
-{
- pd_n_include_file_names = n;
-}
-
-unsigned long
-IDL_GlobalData::n_include_file_names()
-{
- return pd_n_include_file_names;
-}
-
-// Access methods to deal with other IDL files included in the main
-// IDL file.
-
-void
-IDL_GlobalData::add_to_included_idl_files (char* file_name)
-{
- // Is there enough space there to store one more file.
- if (this->n_included_idl_files_ == this->n_allocated_idl_files_)
- {
- // Allocating more space.
- if (this->n_allocated_idl_files_ == 0)
- {
- // First time creation.
- this->n_allocated_idl_files_ = INCREMENT;
- ACE_NEW (this->included_idl_files_,
- char *[this->n_allocated_idl_files_]);
- }
- else
- {
- // Adding more storage.
-
- char** old_included_idl_files;
- size_t n_old_allocated_idl_files;
-
- old_included_idl_files = this->included_idl_files_;
- n_old_allocated_idl_files = this->n_allocated_idl_files_;
- this->n_included_idl_files_ += INCREMENT;
- ACE_NEW (this->included_idl_files_,
- char *[this->n_allocated_idl_files_]);
- for (size_t i = 0; i < n_old_allocated_idl_files; i++)
- this->included_idl_files_ [i] = old_included_idl_files [i];
- delete [] old_included_idl_files;
- }
- }
-
- // Store it.
- this->included_idl_files_ [this->n_included_idl_files_++] =
- file_name;
-}
-
-char**
-IDL_GlobalData::included_idl_files (void)
-{
- return this->included_idl_files_;
-}
-
-size_t
-IDL_GlobalData::n_included_idl_files (void)
-{
- return this->n_included_idl_files_;
-}
-
-void
-IDL_GlobalData::set_parse_state(ParseState ps)
-{
- pd_parse_state = ps;
-}
-
-IDL_GlobalData::ParseState
-IDL_GlobalData::parse_state()
-{
- return pd_parse_state;
-}
-
-/*
- * Convert a PredefinedType to an ExprType
- */
-AST_Expression::ExprType
-IDL_GlobalData::PredefinedTypeToExprType(AST_PredefinedType::PredefinedType pt)
-{
- switch (pt) {
- case AST_PredefinedType::PT_long:
- return AST_Expression::EV_long;
- case AST_PredefinedType::PT_ulong:
- return AST_Expression::EV_ulong;
- case AST_PredefinedType::PT_short:
- return AST_Expression::EV_short;
- case AST_PredefinedType::PT_ushort:
- return AST_Expression::EV_ushort;
- case AST_PredefinedType::PT_float:
- return AST_Expression::EV_float;
- case AST_PredefinedType::PT_double:
- return AST_Expression::EV_double;
- case AST_PredefinedType::PT_char:
- return AST_Expression::EV_char;
- case AST_PredefinedType::PT_octet:
- return AST_Expression::EV_octet;
- case AST_PredefinedType::PT_boolean:
- return AST_Expression::EV_bool;
- default:
- return AST_Expression::EV_any;
- }
-}
-
-// returns the IDL source file being copiled
-String* IDL_GlobalData::idl_src_file()
-{
- return this->pd_idl_src_file;
-}
-
-// set the source IDL file that is being parsed
-void IDL_GlobalData::idl_src_file(String *s)
-{
- this->pd_idl_src_file = s;
-}
-
-/************ Helper functions **************/
-static const char*
-be_change_idl_file_extension (String* idl_file,
- const char *new_extension,
- int base_name_only = 0)
-{
- // @@ This shouldn't happen anyway; but a better error handling
- // mechanism is needed.
- if (idl_file == 0 || new_extension == 0)
- return 0;
-
- static char fname[MAXPATHLEN];
- ACE_OS::memset (fname, 0, MAXPATHLEN);
-
- // Get the char* from the String.
- const char* string = idl_file->get_string ();
-
- // Get the base part of the filename.
- const char *base = ACE_OS::strstr (string, ".idl");
-
- if (base == 0)
- return 0;
-
- if ((!base_name_only) && (idl_global->output_dir () != 0))
- {
- // Path info should also be added to fname.
-
- // Add path and "/".
- ACE_OS::sprintf (fname, "%s/", idl_global->output_dir ());
-
- // Append the base part to fname.
- ACE_OS::strncpy (fname + strlen (fname), string, base - string);
- }
- else
- // Base_name_only or no putput_dir specified by user. JUST put the
- // base part to fname.
- ACE_OS::strncpy (fname, string, base - string);
-
- // Turn '\' and '\\' into '/'.
- char* i = fname;
- for (char* j = fname; *j != 0; ++i, ++j)
- {
- if (*j == '\\')
- {
- *i = '/';
- if (*(j+1) == '\\')
- ++j;
- }
- else
- *i = *j;
- }
- *i = 0;
-
- // Append the newextension.
- ACE_OS::strcat (fname, new_extension);
-
- return fname;
-}
-
-const char *
-IDL_GlobalData::be_get_client_hdr (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->client_hdr_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_client_stub (String *idl_file_name)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->client_stub_ending ());
-}
-
-const char *
-IDL_GlobalData::be_get_client_inline (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->client_inline_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_hdr (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->server_hdr_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_template_hdr (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->server_template_hdr_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_skeleton (String *idl_file_name)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->server_skeleton_ending ());
-}
-
-const char *
-IDL_GlobalData::be_get_server_template_skeleton (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->server_template_skeleton_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_inline (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->server_inline_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_template_inline (String *idl_file_name,
- int base_name_only)
-{
- return be_change_idl_file_extension (idl_file_name,
- idl_global->server_template_inline_ending (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_client_hdr_fname (int base_name_only)
-{
- return be_get_client_hdr (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_client_stub_fname ()
-{
- return be_get_client_stub (idl_global->stripped_filename ());
-}
-
-const char *
-IDL_GlobalData::be_get_client_inline_fname (int base_name_only)
-{
- return be_get_client_inline (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_hdr_fname (int base_name_only)
-{
- return be_get_server_hdr (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_template_hdr_fname (int base_name_only)
-{
- return be_get_server_template_hdr (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_skeleton_fname ()
-{
- return be_get_server_skeleton (idl_global->stripped_filename ());
-}
-
-const char *
-IDL_GlobalData::be_get_server_template_skeleton_fname (int base_name_only)
-{
- return be_get_server_template_skeleton (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_inline_fname (int base_name_only)
-{
- return be_get_server_inline (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char *
-IDL_GlobalData::be_get_server_template_inline_fname (int base_name_only)
-{
- return be_get_server_template_inline (idl_global->stripped_filename (),
- base_name_only);
-}
-
-const char*
-IDL_GlobalData::export_macro (void) const
-{
- if (this->export_macro_ == 0)
- return "";
- return this->export_macro_;
-}
-
-void
-IDL_GlobalData::export_macro (const char *s)
-{
- this->export_macro_ = ACE_OS::strdup (s);
-}
-
-const char*
-IDL_GlobalData::export_include (void) const
-{
- return this->export_include_;
-}
-
-void
-IDL_GlobalData::export_include (const char *s)
-{
- this->export_include_ = ACE_OS::strdup (s);
-}
-
-// Set the client_hdr_ending.
-void
-IDL_GlobalData::client_hdr_ending (const char* s)
-{
- delete [] this->client_hdr_ending_;
- this->client_hdr_ending_ = ACE::strnew (s);
-}
-
-// Get the client_hdr_ending.
-const char*
-IDL_GlobalData::client_hdr_ending (void) const
-{
- return this->client_hdr_ending_;
-}
-
-void
-IDL_GlobalData::client_inline_ending (const char* s)
-{
- delete [] this->client_inline_ending_;
- this->client_inline_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::client_inline_ending (void) const
-{
- return this->client_inline_ending_;
-}
-
-// Set the client_stub_ending.
-void
-IDL_GlobalData::client_stub_ending (const char* s)
-{
- delete [] this->client_stub_ending_;
- this->client_stub_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::client_stub_ending (void) const
-{
- return this->client_stub_ending_;
-}
-
-void
-IDL_GlobalData::server_hdr_ending (const char* s)
-{
- delete [] this->server_hdr_ending_;
- this->server_hdr_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::server_hdr_ending (void) const
-{
- return this->server_hdr_ending_;
-}
-
-void
-IDL_GlobalData::server_template_hdr_ending (const char* s)
-{
- delete [] this->server_template_hdr_ending_;
- this->server_template_hdr_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::server_template_hdr_ending (void) const
-{
- return this->server_template_hdr_ending_;
-}
-
-void
-IDL_GlobalData::server_skeleton_ending (const char* s)
-{
- delete [] this->server_skeleton_ending_;
- this->server_skeleton_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::server_skeleton_ending (void) const
-{
- return this->server_skeleton_ending_;
-}
-
-void
-IDL_GlobalData::server_template_skeleton_ending (const char* s)
-{
- delete [] this->server_template_skeleton_ending_;
- this->server_template_skeleton_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::server_template_skeleton_ending (void) const
-{
- return this->server_template_skeleton_ending_;
-}
-
-void
-IDL_GlobalData::server_inline_ending (const char* s)
-{
- delete [] this->server_inline_ending_;
- this->server_inline_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::server_inline_ending (void) const
-{
- return this->server_inline_ending_;
-}
-
-void
-IDL_GlobalData::server_template_inline_ending (const char* s)
-{
- delete [] this->server_template_inline_ending_;
- this->server_template_inline_ending_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::server_template_inline_ending (void) const
-{
- return this->server_template_inline_ending_;
-}
-
-void
-IDL_GlobalData::output_dir (const char* s)
-{
- delete [] this->output_dir_;
- this->output_dir_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::output_dir (void) const
-{
- return this->output_dir_;
-}
-
-void
-IDL_GlobalData::gperf_path (const char* s)
-{
- delete [] this->gperf_path_;
- this->gperf_path_ = ACE::strnew (s);
-}
-
-const char*
-IDL_GlobalData::gperf_path (void) const
-{
- return this->gperf_path_;
-}
-
-void
-IDL_GlobalData::any_support (idl_bool val)
-{
- this->any_support_ = val;
-}
-
-idl_bool
-IDL_GlobalData::any_support (void)
-{
- return this->any_support_;
-}
-
-void
-IDL_GlobalData::tc_support (idl_bool val)
-{
- this->tc_support_ = val;
-}
-
-idl_bool
-IDL_GlobalData::tc_support (void)
-{
- return this->tc_support_;
-}
-
-void
-IDL_GlobalData::compiled_marshaling (idl_bool val)
-{
- this->compiled_marshaling_ = val;
-}
-
-idl_bool
-IDL_GlobalData::compiled_marshaling (void)
-{
- return this->compiled_marshaling_;
-}
-
-void
-IDL_GlobalData::exception_support (idl_bool val)
-{
- this->exception_support_ = val;
-}
-
-idl_bool
-IDL_GlobalData::exception_support (void)
-{
- return this->exception_support_;
-}
-
-void
-IDL_GlobalData::opt_tc (idl_bool val)
-{
- this->opt_tc_ = val;
-}
-
-idl_bool
-IDL_GlobalData::opt_tc (void)
-{
- return this->opt_tc_;
-}
-
-
-