Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / TAO_IDL / include / idl_defines.h
blob037f9c26d3cd4717f56d9cbbe81e7a732394bb13
1 /*
3 COPYRIGHT
5 Copyright 1992, 1993, 1994 Sun Microsystems, Inc. Printed in the United
6 States of America. All Rights Reserved.
8 This product is protected by copyright and distributed under the following
9 license restricting its use.
11 The Interface Definition Language Compiler Front End (CFE) is made
12 available for your use provided that you include this license and copyright
13 notice on all media and documentation and the software program in which
14 this product is incorporated in whole or part. You may copy and extend
15 functionality (but may not remove functionality) of the Interface
16 Definition Language CFE without charge, but you are not authorized to
17 license or distribute it to anyone else except as part of a product or
18 program developed by you or with the express written consent of Sun
19 Microsystems, Inc. ("Sun").
21 The names of Sun Microsystems, Inc. and any of its subsidiaries or
22 affiliates may not be used in advertising or publicity pertaining to
23 distribution of Interface Definition Language CFE as permitted herein.
25 This license is effective until terminated by Sun for failure to comply
26 with this license. Upon termination, you shall destroy or return all code
27 and documentation for the Interface Definition Language CFE.
29 INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED AS IS WITH NO WARRANTIES OF
30 ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS
31 FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF
32 DEALING, USAGE OR TRADE PRACTICE.
34 INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED WITH NO SUPPORT AND WITHOUT
35 ANY OBLIGATION ON THE PART OF Sun OR ANY OF ITS SUBSIDIARIES OR AFFILIATES
36 TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT.
38 SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH
39 RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY
40 INTERFACE DEFINITION LANGUAGE CFE OR ANY PART THEREOF.
42 IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR
43 ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL
44 DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
46 Use, duplication, or disclosure by the government is subject to
47 restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
48 Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR
49 52.227-19.
51 Sun, Sun Microsystems and the Sun logo are trademarks or registered
52 trademarks of Sun Microsystems, Inc.
54 SunSoft, Inc.
55 2550 Garcia Avenue
56 Mountain View, California 94043
58 NOTE:
60 SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are
61 trademarks or registered trademarks of Sun Microsystems, Inc.
65 #ifndef _IDL_DEFINES_IDL_DEFINES_HH
66 #define _IDL_DEFINES_IDL_DEFINES_HH
68 #include "tao/idl_features.h"
70 #include "ace/os_include/os_limits.h"
73 * idl_defines.hh - Defines global compiler flags
76 // This cannot be an enum since more than one value may be active at
77 // a given time, hence bitflags are #define'd instead
79 // HP-UX 64-bit warns that the result of '<<' is widened from an int to long.
80 // They are assumed to be of type long within the tao_idl and IFR code.
82 #define IDL_CF_DUMP_AST (long)(1 << 1)
83 #define IDL_CF_ONLY_PREPROC (long)(1 << 2)
84 #define IDL_CF_INFORMATIVE (long)(1 << 4)
85 #define IDL_CF_NOWARNINGS (long)(1 << 5)
87 /**
88 * IDL_CF_ONLY_USAGE is deprecated but remains for backwards compatibility.
89 * It's direct successor is print_help (), but this was being used as part of
90 * an indicator of a argument being invalid. Convention is that cli programs
91 * only say that the argument(s) are wrong, not to print out the whole
92 * help/usage message, so instead this call should be used:
93 * idl_global->parse_args_exit (1);
95 * When this is called, the argument parser should state the mistake and exit
96 * the parsing early. Afterwards tao_idl will print how to see the help and
97 * exit with an error status.
99 #define IDL_CF_ONLY_USAGE (long)(1 << 3)
102 * This signals that tao_idl has void idl_global->parse_args_exit (int status).
103 * Use something like this to have backends use the new behavior with tao_idl
104 * newer than 2.5.1 but still remain backwards compatible with older versions
105 * of tao_idl:
106 * #ifdef TAO_IDL_HAS_PARSE_ARGS_EXIT
107 * #define PARSE_ARGS_ERROR idl_global->parse_args_exit (1);
108 * #else
109 * #define PARSE_ARGS_ERROR \
110 * idl_global->set_compile_flags ( \
111 * idl_global->compile_flags () | IDL_CF_ONLY_USAGE);
112 * #endif
114 #define TAO_IDL_HAS_PARSE_ARGS_EXIT
116 #define NAMEBUFSIZE 1024
117 // Maximum length of static buffers used to store names.
119 #define SUN_IDL_FE_VERSION "1.3.0"
121 #if !defined (NFILES)
122 # define NFILES 2048
123 #endif /* ! NFILES */
125 #endif // _IDL_DEFINES_IDL_DEFINES_HH