en:docs:tk:som

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:docs:tk:som [2024/07/25 07:39] – [somtgetAbistyle, somtgetAbistyleSL function] prokusheven:docs:tk:som [2024/10/09 03:34] (current) prokushev
Line 1: Line 1:
-====== somFree Compiler and Emitter Framework ====== +  * [[en:docs:tk:som:sc|somFree Compiler and Emitter Framework]]
- +
-====== User's Guide ====== +
- +
-===== Introduction ===== +
- +
-somFree Compiler and Emitter Framework is a free open source binary compatible reimplementation of IBM SOM Compiler and Emitter Framework. It is tries to be as compatible as possible on API and ABI level. +
- +
-===== Changes ===== +
- +
-Changes from original somFree compiler: +
- +
-  * Most of internal structures now also present as in old IBM SOM 2.1 NT Toolkit. +
-  * New emitters: +
-    * LNK - Open Watcom WLink support. +
-    * DUMP - displays structures, available to emitter. +
-    * PAS - Pascal client support. +
-    * IPAS - Pascal implementation classes support. +
-  * SOM Compiler library now mostly documented. +
-  * SOMLINK style functions for most of SOM Compiler library added. +
-  * Emitters now IBM SOM 2.1 and IBM SOM 3.0 compatible without recompilation. +
-  * somFree Compiler supports IBM SOM 2.1, IBM SOM 3.0, and somFree 1.0 emitters. +
-  * somtShowEntry function outputs more info. +
-  * Undocumented SOMTTypes now documented. +
-  * SOMIPC now supports IDL 4.2 specification. +
-  * CORBA C Language Mapping Specification 1.0 now supported by default instead of SOM C Language mapping. +
-  * Added support of OIDL files +
- +
-===== somFree Compiler ===== +
- +
-The somFree Compiler is a tool to produce various file formats from Interface Definition Language (IDL) files or Object Interface Definition Language (OIDL) files. somFree Compiler reads IDL or OIDL file and produces an abstract graph tree. Using abstract tree, somFree Compiler generates an object graph tree. After the object graph is ready, somFree Compiler produces an output using template. +
- +
-The somFree Compiler uses DLL-name based loading of classes libraries (other programs can user another approach, like WPS does. WPS uses an Interface Repository to find corresponding class). Most of the somFree Compiler classes libraries it is implementation of corresponding emitter. Emitters can be created with help of Emitter Framework. +
- +
-somFree Compiler actually is a client program which uses Emitter Framework classes. somFree Compiler is open source program with an open architecture. The only things that couldn't be easily extended are parser, abstract graph builder and object graph builder. Other things can be ''shadowed'' and replaced by our own. +
- +
-Let's look at somFree Compiler command line syntax to understand how to produce corresponding skeleton code from somFree Compiler template (below is somFree Compiler help screen): +
- +
-  sc [-C:D:E:I:S:VU:cd:hi:m:prsvw] f1 f2 ... +
-  Where: +
-        -C <n>            - size of comment buffer (default: 200000) +
-        -D <DEFINE>       - same as -D option for cpp. +
-        -E <var>=<value>  - set environment variable. +
-        -I <INCLUDE>      - same as -I option for cpp. +
-        -S <n>            - size of string buffer (default: 200000) +
-        -U <UNDEFINE>     - same as -U option for cpp. +
-        -V                - show version number of compiler. +
-        -c                - ignore all comments. +
-        -d <dir>          - output directory for each emitted file. +
-        -h                - this message. +
-        -i <file>         - use this file name as supplied. +
-        -m <name[=value]> - add global modifier. +
-        -p                - shorthand for -D__PRIVATE__. +
-        -r                - check releaseorder entries exist (default: FALSE). +
-        -s <string>       - replace SMEMIT variable with <string> +
-        -u                - update interface repository. +
-        -v                - verbose debugging mode (default: FALSE). +
-        -w                - don't display warnings (default: FALSE). +
-   +
-  Modifiers: +
-        addprefixes : adds `functionprefix' to method names in template file +
-        [no]addstar : [no]add `*' to C bindings for interface references. +
-              corba : check the source for CORBA compliance. +
-                csc : force running of OIDL compiler. +
-         emitappend : append the emitted files at the end of the existing file. +
-           noheader : don't add a header to the emitted file. +
-              noint : don't warn about "int" causing portability problems. +
-             nolock : don't lock the IR during update. +
-               nopp : don't run the source through the pre-processor. +
-               notc : don't use typecodes for emit information. +
-         nouseshort : don't generate short names for types. +
-          pp=<path> : specify a local pre-processor to use. +
-           tcconsts : generate CORBA TypeCode constants. +
-   +
-  Note: All command-line modifiers can be set in the environment +
-  by changing them to UPPERCASE and preappending "SM" to them. +
-   +
-  Environment Variables: +
-        SMEMIT=[h;ih;c;xh;xih;xc;def;ir;pdl] +
-        : emitters to run (default : h;ih). +
-        SMINCLUDE=<dir1>[;<dir2>]+ +
-        : where to search for .idl and .efw files. +
-        SMKNOWNEXTS=ext[;ext]+ +
-        : add headers to user written emitters. +
-        SMTMP=<dir> +
-        : directory to hold intermediate files. +
-        SOMIR=<path>[;<path>]+ +
-        : list of IRs to search. +
-   +
-  Pragmas: +
-        #pragma somemittypes on          : turn on emission of global types. +
-        #pragma somemittypes off         : turn off emission of global types. +
-        #pragma modifier <modifier stm>; : instead of modifier statement. +
- +
-Now let's explain some command line switches deeper. +
- +
-First of the most interesting switch is -s. By default somFree Compiler uses SMEMIT environment variable to determine which emitter to use. Look at emit*.dll files for corresponding emitter. Using switch -s you can change default logic and select one-time emitter instead of global emitters. In easy situation you need only one emitter (say, C emitter). In complex situations you need use more emitters (say, C, H, DEF and IH emitters). You can create your own emitter to produces, for example, some sort of documentation and other stuff. +
- +
-Another interesting switch is -m. Using -m you can set and/or unset so named modifiers. Modifiers allow you to change default behaviour of emitter and compiler. As example, by default compiler adds new methods or modifies existent. You can tell compiler just add new text to end of file. Modifiers can control emitters. addstart and noaddstar controls C emitter to add or not add pointer sign (%%*%%) to references of objects. +
- +
-Switch -u adds or updates Interface Repository with new information about class interface. Interface repository filename controlled by SOMIR environment variable. This thing useful to add info for Object REXX access and other things which uses Interface Repository. +
- +
-Other switches are like for standard C/C++ preprocessor and not described here. +
- +
-Now let's play with somFree Compiler. Most often, you need to create interface files for C/C++ client programs. Usually you need to call the SOM Compiler as following: +
- +
-  sc -sdef somobj.idl +
-  sc -sh somobj.idl +
-   +
-In case of C++ you need to call: +
- +
-  sc -sdef somobj.idl +
-  sc -sxh somobj.idl +
-   +
-Of course, not very nice to call somFree Compiler so often. And somFree Compiler provides such functionality: +
- +
-  sc -sdef;h;xh somobj.idl +
-   +
-The above command will do exactly as all recent commands. +
- +
-The above emitters were designed for IBM toolset. Nowadays, developers also use GCC or Open Watcom Compilers. The problem here is that Watcom Linker doesn't support .DEF files, but has its own .LNK linker files. In case of one or two classes no many problems to convert .DEF files to .LNK files manually. But such approach just ugly for MUCH classes. So, one of good solution is write REXX script for DEF→LNK conversion. But somFree Compilers contains Open Watcom Linker Emitter for such approaches. +
- +
-Now let's talk about internals of somFree Compiler. somFree Compiler designed in the way as most of C compilers implemented. It is exists of following parts: +
- +
-  * IDL Preprocessor +
-  * IDL Parser +
-  * OIDL Preprocessor +
-  * OIDL Parser +
-  * Emitter Framework +
- +
-somFree Compiler first calls IDL or OIDL Preprocessor. Output of IDL/OIDL Preprocessor goes to IDL/OIDL Parser. IDL/OIDL Parser creates Object tree from IDL/OIDL source. Object tree, using templates and emitters, stored to file.  +
- +
-As you see, most of the parts can be extended or replaced by its own implementation. For example, we can reuse CPP instead of SPP. Why not? Just support required command-line switches for compatibility. Also, default emitters can be rewritten. For C and C++ emitter it is not so hard. For other, more structured languages, like Pascal, Modula, etc. emitter creation is more hard work, but it is also possible. +
- +
-Actually, we can extend and rewrite somFree Compiler as we want.  +
- +
-Usage of somFree Compiler will not be problem for most of you. But understanding some details about compiler internals makes life easer. +
- +
-===== SOM Interface Definition Language ===== +
- +
-Latest IBM SOM 3.0 supports CORBA IDL mostly at level of CORBA 1.1. somFree supports CORBA IDL 4.2 with all extensions found in SOM IDL. +
- +
-  * Include Directives (optional) +
-  * Type and Constant Declarations (optional) +
-  * Exception Declarations (optional) +
-  * Interface Declarations (optional) +
-  * Module declaration (optional) +
- +
-Let's try to define our class interface. +
- +
-Interface Definition Language (IDL) is the core of System Object Model. All classes have definition of its interface via IDL. With help of somFree Compiler IDL file can be translated to various formats, including various language bindings. For example, to produce C header you can run +
- +
-  sc -s"h" somcls.idl +
- +
-to produce DEF file you can run +
- +
-  sc -s"def" somcls.idl +
-   +
-somFree Compiler uses emitter to produce corresponding language binding. You can create new bindings emitter using Emitter Framework. +
- +
-First of all, think about your class. What it must do? Define them in terms of object. Propose attributes and methods of class. +
- +
-Ok. Imagine, we need class to have access to Java objects. Let's write a class interface in terms of Interface Definition Language. +
- +
-<code> +
- #include <somobj.idl> +
-  +
- interface JavaObject : [[SOMObject]] +
- { +
-   implementation +
-   { +
-     somDefaultInit: override; +
-     // Init Java Virtual Machine (if no current) and create Java object +
-     somDefaultDestruct: override; +
-     // Destruct Java object and close Java Virtual Machine (if needed) +
-   } +
- } +
-</code> +
- +
-As you can see, no many problems. Syntax of IDL too closest to C-like languages. First thing you need is to include definitions of parent classes. In our case it is '''SOMObject''' definition. Generic Java object doesn't need to have any methods. Only thing '''JavaObject''' will do its check for existence of [[Java Virtual Machine]] and execution of it if required. +
- +
-On object destruction checks is Java Virtual Machine still required will be done and it will be destroyed if not required. Also same constructor and destructor will call corresponding constructor and destructor of Java object. +
- +
-Classic IDL file contains definitions like +
- +
-<code> +
- interface <class> : <parent_class> +
- { +
-   attribute <type> <name> +
-  +
-   <type> <method>(<parameters>+
- } +
- +
-</code> +
- +
-[http://www.omg.org OMG] IDL doesn't support methods override. SOM IDL has such feature (and incompatibility with OMG CORBA). This is done via keyword '''implementation'''. To solve problems with other IDL compilers such part must be wrapped to #ifdef structure: +
- +
-<code> +
- #include <somobj.idl> +
-  +
- interface JavaObject : [[SOMObject]] +
- { +
-  +
-   #ifdef __SOMIDL__ +
-   implementation +
-   { +
-     somDefaultInit: override; +
-     // Init Java Virtual Machine (if no current) and create Java object +
-     somDefaultDestruct: override; +
-     // Destruct Java object and close Java Virtual Machine (if needed) +
-   } +
-   #endif +
- } +
-</code> +
- +
-Such approach well known in C-world, but also have some problems. For example, IDL of Document Object Model (DOM) (Yes, [http://www.w3.org W3C] DOM uses same IDL as SOM and CORBA) has attribute '''implementation'''. As result, somFree Compiler has some problems with IDL compilation. +
- +
-As a first step we'll create SOM class interface for java.lang.Object. It can be done with help of javah tool. +
- +
-  javah -jni java.lang.Object +
- +
-As result you'll have such file: +
- +
-<code c> +
- +
- /DO NOT EDIT THIS FILE - it is machine generated */ +
- #include <jni.h> +
- /* Header for class java_lang_Object */ +
-  +
- #ifndef _Included_java_lang_Object +
- #define _Included_java_lang_Object +
- #ifdef __cplusplus +
- extern "C"+
- #endif +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    hashCode +
-  * Signature: ()I +
-  */ +
- JNIEXPORT jint JNICALL Java_java_lang_Object_hashCode +
-   (JNIEnv *, jobject); +
-  +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    notify +
-  * Signature: ()V +
-  */ +
- JNIEXPORT void JNICALL Java_java_lang_Object_notify +
-   (JNIEnv *, jobject); +
-  +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    notifyAll +
-  * Signature: ()V +
-  */ +
- JNIEXPORT void JNICALL Java_java_lang_Object_notifyAll +
-   (JNIEnv *, jobject); +
-  +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    registerNatives +
-  * Signature: ()V +
-  */ +
- JNIEXPORT void JNICALL Java_java_lang_Object_registerNatives +
-   (JNIEnv *, jclass); +
-  +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    wait +
-  * Signature: (J)V +
-  */ +
- JNIEXPORT void JNICALL Java_java_lang_Object_wait +
-   (JNIEnv *, jobject, jlong); +
-  +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    getClass +
-  * Signature: ()Ljava/lang/Class; +
-  */ +
- JNIEXPORT jclass JNICALL Java_java_lang_Object_getClass +
-   (JNIEnv *, jobject); +
-  +
- /* +
-  * Class:     java_lang_Object +
-  * Method:    clone +
-  * Signature: ()Ljava/lang/Object; +
-  */ +
- JNIEXPORT jobject JNICALL Java_java_lang_Object_clone +
-   (JNIEnv *, jobject); +
-  +
- #ifdef __cplusplus +
- } +
- #endif +
- #endif +
-</code> +
- +
-So, this header can be used to generate actual class interface +
-using this script: +
- +
-<code> +
- /* REXX - our best dog */ +
-  +
- do while lines('java_lang_Object.h'+
-   s=linein('java_lang_Object.h'); +
-   parse value s with x 'Header for class' name '*/' +
-   if name\='' then +
-   do +
-     classname=strip(name) +
-     say '#include <JavaObject.idl>' +
-     say '' +
-     say 'interface '||classname||' : JavaObject' +
-     say '{' +
-   end +
-   parse value s with x 'Method:' name +
-   if name\='' then +
-   do +
-     /* skip 3 lines */ +
-     s=linein('java_lang_Object.h'); +
-     s=linein('java_lang_Object.h'); +
-     s=linein('java_lang_Object.h'); +
-     s2=linein('java_lang_Object.h'); +
-     interpret("parse value s with 'JNIEXPORT' type 'JNICALL Java_"||classname||"_' name"+
-     name=strip(name) +
-     s2=strip(s2) +
-     parse value s2 with start 'JNIEnv *, jobject' end +
-     s2=start||end +
-     parse value s2 with x ', ' y +
-     if x='(' then s2='('||y +
-     say '  '||type||name||' '||s2 +
-   end +
- end +
- say '}' +
-</code> +
- +
-As result, you'll have following: +
- +
-<code> +
- #include <JavaObject.idl> +
-  +
- interface java_lang_Object : JavaObject +
- { +
-    jint hashCode (); +
-    void notify (); +
-    void notifyAll (); +
-    void registerNatives (JNIEnv *, jclass); +
-    void wait (jlong); +
-    jclass getClass (); +
-    jobject clone (); +
- }  +
-</code> +
- +
-Using such approach you can easily make SOM wrappers for all Java classes. Using Java_JNI_API you can create Java classes and using SOM wrappers you integrate Java code to SOM-based applications. Because SOM API more generic then Java API you can use any available language bindings for development. Also, you can start to extend Java classes by native code with help of SOM engine. +
- +
-===== SOM Object Interface Definition Language ===== +
- +
-SOM Object Interface Definition Language is a pre-IDL object definition language used before IBM SOM 2.1. Since IBM SOM 2.1 uses CORBA IDL as defined in OMG CORBA 1.1. SOM Object Interface Definition Language (OIDL) is a simple definition language and not recommended to use. SOM Compiler support is only for compatibility with old source code. OIDL support implementation mostly based on [1] and various OIDL source files found on the Web. +
-OIDL consist of sections set: +
- +
-  * Include section (optional) +
-  * Class section (required) +
-  * Release order section (optional) +
-  * Parent class section (required) +
-  * Passthru section (optionsl) +
-  * Metaclass section (optional) +
-  * Data section (optional) +
-  * Methods section (optional) +
- +
-==== Include section ==== +
- +
-Include section is optional and contains names of OIDL files with definition of parent class, metaclasses and private interfaces of ancestor classes. +
- +
-<code> +
-[#include ( <ancestor> | "ancestor" ) ] * +
-#include ( <parent> | "parent"+
-[#include ( <metaclass> | "metaclass" ) ] +
-</code> +
- +
-==== Class section ==== +
- +
-<code> +
-classname +
-  [, file stem = stem] +
-  [, external stem = stem] +
-  [, function prefix = prefix | +
-  , external prefix = prefix | +
-  , classprefix = prefix] +
-  [, major version = number] +
-  [, minor version = number] +
-  [, global | local]; +
-  [, classInit = function]; +
-[description] +
-</code> +
-==== Release order section ==== +
- +
-<code> +
-release ordername [, name ]* ; +
-</code> +
-==== Parent class section ==== +
- +
-<code> +
-parent [class]: name; +
-description +
-</code> +
- +
-==== Passthru section ==== +
- +
-<code> +
-[passthru: language.suffix, [ before | after ]; +
-line 1 +
-line 2 +
-endpassthru; [description]]* +
-</code> +
- +
-==== Metaclass section ==== +
- +
-<code> +
-metaclass: name; +
-[description] +
-</code> +
-==== Data section ==== +
- +
-<code> +
-data: +
-[description1 ] +
-[declaration [ , private | , public | , internal] [, class]; +
-[ description2]]* +
-</code> +
- +
-==== Methods section ==== +
- +
-<code> +
-methods: +
-[description1 ] +
-[[group: name; +
-[ description2]] +
-[method prototype +
-[, public | , private] +
-[, method | , procedure] +
-[, class] +
-[, offset | , name lookup] +
-[, local | , external] +
-[, use = name]; +
-[descriptionS]]* +
-[override: method name +
-[, public | , private] +
-[, class] +
-[, local | , external] +
-[, use = name]; +
-[description4]] * +
-</code> +
- +
-====== Programmer's Guide ====== +
- +
-===== Introduction ===== +
- +
-somFree compiler is a tool to convert various interface definition languages to another one or language bindings. somFree compiler frontend is a sc or somc command which control workflow. Because somFree compiler and Emitter Framework modeled after IBM SOM Compiler from here SOM Compiler term will be used. Most of somFree Compiler and Emitter Framework and SOM Compiler and Emitter Framework are same and binary compatible at the documented level. Internal structures of somFree and IBM versions are different. +
- +
-===== Structure of SOM Compiler and Emitter Framwork ===== +
- +
-SOM Compiler at file level consist of: +
-  * SOM Compiler frontend +
-    * sc [Linux] +
-    * sc.exe [OS/2, Windows] +
-    *somc.exe [Windows] +
-  * IDL SOM Pre-processor +
-    * somcpp [Linux] +
-    * somcpp.exe [OS/2, Windows] +
-  * IDL SOM Compiler +
-    * somipc [Linux] +
-    * somipc.exe [OS/2, Windows] +
-  * OIDL SOM Pre-processor +
-    * spp [Linux] +
-    * spp.exe [OS/2, Windows] +
-  * OIDL SOM Compiler +
-    * somopc [Linux] +
-    * somopc.exe [OS/2, Windows] +
-  * SOM Compiler Library +
-    * somc.so [Linux] +
-    * somc.dll [OS/2, Windows] +
-  * SOM Emitter Framework +
-    * some.so [Linux] +
-    * some.dll [OS/2, Windows] +
-  * Emitters +
-    * emit*.so [Linux] +
-    * emit*.dll [OS/2, Windows] +
-  * Public IDL files generator +
-    * pdl [Linux] +
-    * pdl.exe [OS/2, Windows] +
- +
-Currently SOM Compiler provides following emitters: +
- +
-  * IDL - IDL Emitter +
-  * CSC - OIDL Emitter +
-  * SC - OIDL public emitter +
-  * GEN - Generic Emitter +
-  * IR - Interface Repository Emitter +
-  * H - C Binding public header files +
-  * C - C Binding implementation template file +
-  * IH - C Binding implementation header files +
-  * XH - C++ Binding public header files +
-  * XIH - C++ Binding implementation header files +
-  * DEF - DEF Module Definition file +
-  * LNK - LNK Module Linking file +
-  * HC +
-  * IMOD - SOM Module initialization emitter +
-  * MODS - List of class modifiers +
-  * PDL - Private IDL emitter +
-  * PH +
-  * PSC - OIDL private emitter +
-  * UC +
-  * UXC +
-  * XPH +
-  * XTM +
-  * PAS - Pascal client library for use of SOM +
-  * IPAS - Pascal implementation library to write SOM classes. +
- +
-Some of Emitters uses Templates such as: +
- +
-  * cpp.efw +
-  * ctm.efw +
-  * gen_c.efc +
-  * gen_c.efs +
-  * gen_c.efw +
-  * gen_cpp.efw +
-  * gen_def.efw +
-  * gen_emit.efc +
-  * gen_emit.efs +
-  * gen_emit.efw +
-  * gen_emit.efx +
-  * gen_idl.efw +
-  * gen_make.efc +
-  * gen_make.efs +
-  * gen_make.efw +
-  * gen_make.efx +
-  * gen_mk32.efc +
-  * gen_mk32.efs +
-  * gen_mk32.efw +
-  * gen_mk32.efx +
-  * gen_mknt.efs +
-  * gen_mknt.efw +
-  * gen_mknt.efx +
-  * gen_nid.efw +
-  * gen_temp.efw +
-  * imod.efw +
- +
-===== Interaction of SOM Compiler components ===== +
- +
-Emitter Framework is a set of classes and SOM Compiler tool. Emitter Framework is used to produce various file formats from the SOM Interface Definition Language files. Emitter Framework classes consist of Emitter classes and Entry classes. Classes can be shadowed. This means a programmer can replace original classes with his own classes. So the SOM Compiler can be highly customized. The only things hard-coded (and closed source) are the IDL file reader and abstract graph builder. +
- +
-Before starting description of Emitter Framework let's talk about SOM Compiler. We already talked briefly about SOM Compiler. But for emitters we need to know internals of SOM Compiler much better. +
- +
-Let's start from visible parts of SOM Compiler that requires for its work the following files: +
- +
-  * sc.exe, somc.dll and somc.msg - Main part of compiler. +
-  * somcpp.exe - SOM Preprocessor +
-  * somipc.exe - Goals not known. Seems just execute different emitters +
-  * emit*.dll - Emitters +
-  * *.efw - Emitter templates +
- +
-''sc.exe'' is general part of compiler. Let's try to investigate some internals of sc.exe. First of all we can switch on verbose output and look on it: +
- +
-  Running shell command: +
-  somcpp -D__OS2__  -I. -IC:\os2tk45\h -IC:\os2tk45\idl -IC:\os2tk45\som\include \ +
-        -D__SOMIDL_VERSION_1__ -D__SOMIDL__ -C somobj.idl > C:\var\temp\0a500000.CTN +
-  somipc -mppfile=C:\var\temp\0a500000.CTN -v -e emith -e emitih -e emitctm -e emitc \ +
-        -o somobj somobj.idl +
-  Loading  emith. +
-  "SOMObject" +
-  Unloading  emith. +
-  Loading  emitih. +
-  "SOMObject" +
-  Unloading  emitih. +
-  Loading  emitctm. +
-  "SOMObject" +
-  Unloading  emitctm. +
-  Loading  emitc. +
-  "SOMObject" +
-  Unloading  emitc. +
-  Removed "C:\var\temp\0a500000.CTN"+
- +
-Not so many info, but some information here. If we look at SMINCLUDE environment variable: +
- +
-  SMINCLUDE=.;C:\os2tk45\h;C:\os2tk45\idl;C:\os2tk45\som\include; +
- +
-then we will see all paths in -I option.  +
- +
-Considering -D is same as for CPP we can see three symbols defined: +
-* __OS2__ +
-* __SOMIDL_VERSION_1__   +
-* __SOMIDL__ +
-somobj.idl it is file we emitted and CTN file is output from preprocessor. The only unknown switch is -C. After small playing we can see it means "leave comments"+
- +
-So, we can try to replace somcpp with some preprocessor. In [http://www.osfree.org osFree] project we tried to use [http://mcpp.sourceforge.net MCPP] preprocessor. Results is well. +
- +
-sc.exe reads SMINCLUDE variable and puts its content to -I options of somcpp.exe and redirect output to temporary file. +
- +
-Ok. Now we can try to detect what is somipc.exe. If we try to execute it with command line pointed above, then we will see: +
- Loading  emith. +
- "SOMObject" +
- Unloading  emith. +
- Loading  emitih. +
- "SOMObject" +
- Unloading  emitih. +
- Loading  emitctm. +
- "SOMObject" +
- Unloading  emitctm. +
- Loading  emitc. +
- "SOMObject" +
- Unloading  emitc. +
- +
-Heh. Actually, somipc.exe is a real SOM Compiler. Not sc.exe. sc.exe only prepares the input file for the compiler and handles command line and environment variables. +
- +
-After some playing we can see, somipc returns 0 if all ok and -1 if error. +
- +
-So, somipc.exe parses preprocessed IDL file and builds Abstract graph. From Abstract graph Object Graph are build. After this somipc.exe calls one by one all emit*.dll files according to -e switches. emit*.dll are set of DLLs with SOM classes. +
- +
-Drawing here!! +
- +
-SOM Compiler IDL SOM Preprocessor IDL SOM Compiler Emitter Template +
- OIDL SOM Preprocessor OIDL SOM Compiler +
- +
-Разрисовать по аналогии с со структурой, что в патентах и документации по SOM, но с учетом наличия OIDL и SOMC. +
- +
-SOM Compiler sc or somc is a frontend which controls basic workflow. Depending on source file extension it call or IDL or OIDL pre-processor and, after preprocessing, IDL or OIDL compiler. IDL or OIDL compiler builds abstract syntax graph using Entry structure. Entry structure contains information about entry type, pointer to object wrapper and all information about object specific attributes. +
- +
-Note! Entry structure is not documented and differs in somFree and IBM SOM versions. +
- +
-IDL or OIDL calls required emitters with root Entry structure on emitter entry. Emitter requests root object wrapper and, using or not using template faculty, process all graph using Object Syntax Graph. Object Syntax Graph generates required Entry objects on demand. +
- +
-Emitter is a subclass of '''[[SOMTEmitC]]''' class. Emitter used to produce output file using template file from object graph of [[the SOM Interface Definition Language]] file. Physically emitter represented as DLL with name EMIT<identificator>.DLL. For C headers emith.dll emitter DLL is used. For C++ headers emitxh.dll emitter DLL is used. Emitter DLL contains only one entry with ordinal 1 and name '''emit'''+
- +
-<code> +
-SOMEXTERN FILE * SOMLINK emit(char *file, Entry * cls, Stab * stab); +
-</code> +
- +
-'''emit''' function creates emitter object (from emitter class, which based on '''[[SOMTEmitC]]''') and calls '''somtGenerateSections''' method. +
- +
-Usually an emitter file can be generated using '''newemit.cmd''' script (can be found at Hobbes in SOMObjects toolkit). +
- +
-<code> +
-newemit -C <className> <file_stem> +
-</code> +
- +
-To emitter passed Entry object which is root of Object Graph. The root object can be an interface or module class. Processing of such classes slightly different. +
- +
-Last part of Emitter Framework is template files. Template files allow you to make some control of emitting process. Templates are usual text files with extension *.efw. Here you can modify output for your wish. Not all emitters support templates. +
- +
-So, now you have some imagination about that Emitter Framework is and how it works. +
- +
-===== Template faculty ===== +
- +
-Emitters uses template faculty to produce output file. Template file has structure divided by sections. Each section begins from section name ended by colon. Each emitter can use its own section names. Refer to corresponding emitter and Entry classes description for section names information. Here is template file example: +
- +
-<code> +
-:copyrightS +
-This is example template +
-:templateS +
-/* Template output example */ +
-<className> +
-</code> +
- +
-Core of Template faculty is a Key-Value strings collection represented by SOMStringTableC class. All substitutable to template values stored in SOMStringTableC class instance. On template file process, First of all SOMTEmitC method somtSetPredefinedSymbols sets section names symbols. By default it is following sections:  +
- +
-prologSN | prologS | +
-| baseIncludesPrologSN | baseIncludesPrologS | +
-| baseIncludesSN | baseIncludesS | +
-| baseIncludesEpilogSN | baseIncludesEpilogS | +
-| metaIncludeSN | metaIncludeS | +
-| classSN | classS | +
-| metaSN | metaS | +
-| basePrologSN | basePrologS | +
-| baseSN | baseS | +
-| baseEpilogSN | baseEpilogS | +
-| constantPrologSN | constantPrologS | +
-| constantSN | constantS | +
-| constantEpilogSN | constantEpilogS | +
-| typedefPrologSN | typedefPrologS | +
-| typedefSN | typedefS | +
-| typedefEpilogSN | typedefEpilogS | +
-| structPrologSN | structPrologS | +
-| structSN | structS | +
-| structEpilogSN | structEpilogS | +
-| unionPrologSN | unionPrologS | +
-| unionSN | unionS | +
-| unionEpilogSN | unionEpilogS | +
-| enumPrologSN | enumPrologS | +
-| enumSN | enumS | +
-| enumEpilogSN | enumEpilogS | +
-| attributePrologSN | attributePrologS | +
-| attributeSN | attributeS | +
-| attributeEpilogSN | attributeEpilogS | +
-| interfacePrologSN | interfacePrologS | +
-| interfaceSN | interfaceS | +
-| interfaceEpilogSN | interfaceEpilogS | +
-| modulePrologSN | modulePrologS | +
-| moduleSN | moduleS | +
-| moduleEpilogSN | moduleEpilogS | +
-| passthruPrologSN | passthruPrologS | +
-| passthruSN | passthruS | +
-| passthruEpilogSN | passthruEpilogS | +
-| releaseSN | releaseS | +
-| dataPrologSN | dataPrologS | +
-| dataSN | dataS | +
-| dataEpilogSN | dataEpilogS | +
-| methodsPrologSN | methodsPrologS | +
-| methodsSN | methodsS | +
-| overrideMethodsSN | overrideMethodsS | +
-| overriddenMethodsSN | overriddenMethodsS | +
-| inheritedMethodsSN | inheritedMethodsS | +
-| methodsEpilogSN | methodsEpilogS | +
-| epilogSN | epilogS | +
- +
-===== Generic Emitter ===== +
- +
-Generic emitter is a generic template based emitter. It uses simplest template with only one section "template". Main goal of Generic Emitter is to produce Generic framework emitter files. It is used by newemit tool to produce full set of files required to build new emitter. +
-Добавить описание символов шаблона и описание, какой шаблон за что отвечает. +
- +
-===== DEF Emitter ===== +
- +
-DEF emitter used to generate definition file for DLL creation using MS LINK. somFree version of emitter uses template file to generate DEF file. Original IBM SOM DEF Emitter uses hard coded generation. +
-Добавить описание символов шаблона. +
- +
-===== LNK Emitter ===== +
- +
-LNK emitter used to generate linking file for DLL creation using Watcom WLINK. somFree version of emitter uses template file to generate LNK file. Original IBM SOM DEF Emitter doesn't have such emitter. +
-Добавить описание символов шаблона. +
- +
-===== CSC, PSC, SC Emitters ===== +
- +
-CSC emitter used to generate OIDL class definition file (CSC) used in IBM SOM 1.0. somFree version of emitter uses template file to generate CSC file. Original IBM SOM CSC Emitter uses hard coded generation. +
-Добавить описание символов шаблона. +
- +
-===== IDL, PDL Emitters ===== +
- +
-IDL emitter used to generate IDL class definition file used in IBM SOM 2.0 and higher. somFree version of emitter uses template file to generate IDL file. Original IBM SOM IDL Emitter uses hard coded generation. +
-Добавить описание символов шаблона. +
- +
-===== Developing new emitter ===== +
- +
-somFree Emitter Framework provides templates and libraries for developing emitters compatible with both IBM SOM 2.1 and IBM SOM 3.0 compilers. Because of different ABI (refer Appendix 1 for more information) somFree emitters automatically configures for corresponding API. +
- +
-===== CORBA C Language mapping ===== +
- +
-somFree Compiler support CORBA C Language Mapping Specification 1.0 [1]. CORBA C Language mapping slightly differ from SOM C Language mapping, used by original IBM SOM 2.1. CORBA C Language mapping is default for somFree Compiler. This chapter provides short description of mapping. For full description refer to [1]. +
- +
-===== SOM C Language mapping ===== +
- +
-SOM C Language mapping is a IBM SOM mapping variant. For some reason (most probably because variable arguments support) IBM SOM not exactly implements C Language Mapping Specification. +
- +
-====== Programmer's reference ====== +
- +
-===== SOM Runtime C library ===== +
- +
-SOM Runtime C library somwm35i is a subset of C runtime library functions found to be used by IBM SOM 3.0 for NT emitters. SOM Runtime C library provided only for support of IBM SOM 3.0 for NT emitters. This is not full featured C library but compatibility layer and must not be used for development. Functions utilize IBM Optlink calling convention. This library required only under Windows NT systems. +
- +
-List of emulated function and variables. +
- +
-  * _CRT_init +
-  * _CRT_term +
-  * _abort_in_progress +
-  * _exception_dllinit +
-  * _matherr +
-  * fclose +
-  * _fprintfieee +
-  * strlen +
-  * _sprintfieee +
-  * strcmp +
-  * strstr +
-  * _ctype +
-  * feof +
-  * fgetc +
-  * fgets +
-  * fputs +
-  * fread +
-  * fseek +
-  * fwrite +
-  * memmove +
-  * memset +
-  * remove +
-  * rename +
-  * rewind +
-  * strchr +
-  * strcpy +
-  * strlen +
-  * strncmp +
-  * strncpy +
-  * strrchr +
-  * strtok +
-  * tolower +
-  * memcpy +
-  * strcat +
-  * getenv +
-  * _printfieee +
-  * _sscanfieee +
-  * exit +
-  * stderr +
-  * _putenv +
-  * _terminate +
-  * _PrintErrMsg +
-  * _SysFindFirst +
-  * _SysFindNext +
-  * _SysFindClose +
-  * malloc +
-  * free +
-  * strdup +
-  * strpbrk +
- +
-===== somFree Compiler library ===== +
- +
-somFree Compiler library somc is a set of helper functions for compiler tasks. Used by IBM SOM emitters. Library provided solely to provide support of IBM emitters. Must not be used to write new code. +
-==== somtfexists, somtfexistsSL function ==== +
- +
-<code> +
-SOMEXTERN BOOL somtfexists(char *file); +
-SOMEXTERN BOOL SOMLINK somtfexistsSL(char *file); +
-</code> +
- +
-Check is file exists in paths. +
- +
-Note: somtfexists version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtsearchFile, somtsearchFileSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtsearchFile(char *file, char *fullpath, char *env); +
-SOMEXTERN char * SOMLINK somtsearchFileSL(char *file, char *fullpath, char *env); +
-</code> +
- +
-Search path using file and env dirs and return full path if exists. +
- +
-Note: somtsearchFile version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somttraverseParents, somttraverseParentsSL function ==== +
- +
-<code> +
-SOMEXTERN int somttraverseParents(FILE *fp, Entry * cls, Entry *arg, int (*fn)(FILE*,Entry*,Entry*), SMTraverse flg); +
-SOMEXTERN int SOMLINK somttraverseParentsSL(FILE *fp, Entry * cls, Entry *arg, int (*fn)(FILE*,Entry*,Entry*), SMTraverse flg); +
-</code> +
- +
-Note: somttraverseParents version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtloadSL function ==== +
- +
-<code c> +
-SOMEXTERN EmitFn  SOMLINK somtloadSL(char *fileName, char *functionName, void **modHandle); +
-</code> +
- +
-Load emitter <fileName> and return pointer <EmitFn> to emit or emitSL function <functionName> and return handle <modHandle> of loaded module. +
-This function switches somc to IBM SOM 3.0 ABI if emitSL function found or to IBM SOM 2.1 ABI if emit function found. +
- +
-==== somtfindBaseEp, somtfindBaseEpSL function ==== +
- +
-<code> +
-SOMEXTERN Entry * somtfindBaseEp(Entry *ep); +
-SOMEXTERN Entry * SOMLINK somtfindBaseEpSL(Entry *ep); +
-</code> +
- +
-Note: somtfindBaseEp version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtgetType, somtgetTypeSL function ==== +
- +
-<code> +
-SOMEXTERN Entry * somtgetType(char *name, SOMTTypes type); +
-SOMEXTERN Entry * SOMLINK somtgetTypeSL(char *name, SOMTTypes type); +
-</code> +
- +
-Note: somtGetType version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtokfopen, somtokfopenSL function ==== +
- +
-<code> +
-SOMEXTERN FILE * somtokfopen(char *path, char *mode); +
-SOMEXTERN FILE * SOMLINK somtokfopenSL(char *path, char *mode); +
-</code> +
- +
-Same as C fopen function. +
- +
-Note: somtokfopen version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtokrename, somtokrenameSL function ==== +
- +
-<code> +
-SOMEXTERN int somtokrename(const char*, const char *); +
-SOMEXTERN int SOMLINK somtokrenameSL(const char*, const char *); +
-</code> +
- +
-Note: somtokrename version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtopenEmitFile, somtopenEmitFileSL function ==== +
- +
-<code> +
-SOMEXTERN FILE * somtopenEmitFile(char *file, char *ext); +
-SOMEXTERN FILE * SOMLINK somtopenEmitFileSL(char *file, char *ext); +
-</code> +
- +
-Note: somtopenEmitFile version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtisDbcs, somtisDbcsSL function ==== +
- +
-<code> +
-SOMEXTERN BOOL somtisDbcs(int c); +
-SOMEXTERN BOOL SOMLINK somtisDbcsSL(int c); +
-</code> +
- +
-Note: somtisDbcs version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtremoveExt, somtremoveExtSL function ==== +
- +
-<code> +
-SOMEXTERN boolean somtremoveExt(char *name, char *ext, char *buf); +
-SOMEXTERN boolean SOMLINK somtremoveExt(char *name, char *ext, char *buf); +
-</code> +
- +
-Remove extension from<name> and return to <buf> +
- +
-Note: somtremoveExt version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtaddExt, somtaddExtSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtaddExt(char *name, char *ext, char *buf); +
-SOMEXTERN char * SOMLINK somtaddExtSL(char *name, char *ext, char *buf); +
-</code> +
- +
-Add <ext> extension to <name> filestem and return result in <buf> +
- +
-Note: somtaddExt version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtarrayToPtr, somtarrayToPtrSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtarrayToPtr(Entry *ep, char *stars, char *buf); +
-SOMEXTERN char * SOMLINK somtarrayToPtrSL(Entry *ep, char *stars, char *buf); +
-</code> +
- +
-Note: somtarrayToPtr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtattNormalise, somtattNormaliseSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtattNormalise(char *name, char *buf); +
-SOMEXTERN char * SOMLINK somtattNormaliseSL(char *name, char *buf); +
-</code> +
- +
-Note: somtattNormalise version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtbasename, somtbasenameSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtbasenameSL(char *path); +
-SOMEXTERN char * SOMLINK somtbasenameSL(char *path); +
-</code> +
- +
-Return filename without path. +
- +
-Note: somtbasename version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtctos, somtctosSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtctos(Const *con, char *buf); +
-SOMEXTERN char * SOMLINK somtctosSL(Const *con, char *buf); +
-</code> +
- +
-Note: somtctos version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtdbcsPostincr, somtdbcsPostincrSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtdbcsPostincr(char **p); +
-SOMEXTERN char * SOMLINK somtdbcsPostincrSL(char **p); +
-</code> +
- +
-Note: somtdbcsPostincr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtdbcsPreincr, somtdbcsPreincrSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtdbcsPreincr(char **p); +
-SOMEXTERN char * SOMLINK somtdbcsPreincrSL(char **p); +
-</code> +
- +
-Note: somtdbcsPreincr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtdbcsStrchr, somtdbcsStrchrSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtdbcsStrchr(char *s, int c); +
-SOMEXTERN char * SOMLINK somtdbcsStrchrSL(char *s, int c); +
-</code> +
- +
-Note: somtdbcsStrchr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtdbcsStrrchr, somtdbcsStrrchrsL function ==== +
- +
-<code> +
-SOMEXTERN char * somtdbcsStrrchr(char *s, int c); +
-SOMEXTERN char * SOMLINK somtdbcsStrrchrSL(char *s, int c); +
-</code> +
- +
-Note: somtdbcsStrrchr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdbcsStrstr, somtdbcsStrstrSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtdbcsStrstr(char *s1, char *s2); +
-SOMEXTERN char * SOMLINK somtdbcsStrstrSL(char *s1, char *s2); +
-</code> +
- +
- +
- +
-Note: somtdbcsStrstr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somteptotype, somteptotypeSL function ==== +
- +
-<code> +
-SOMEXTERN char * somteptotype(Entry *ep, char *ptrs, char *buf); +
-SOMEXTERN char * SOMLINK somteptotypeSL(Entry *ep, char *ptrs, char *buf); +
-</code> +
- +
-Note: somteptotype version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtgetDesc, somtgetDescSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtgetDesc(Stab *stab, Entry *cls, Entry *method, char *desc, BOOL addQuotes, BOOL use, BOOL versflg); +
-SOMEXTERN char * SOMLINK somtgetDescSL(Stab *stab, Entry *cls, Entry *method, char *desc, BOOL addQuotes, BOOL use, BOOL versflg); +
-</code> +
- +
-Note: somtgetDesc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtgetVersion, somtgetVersionSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtgetVersion(char *sccsid, char *version); +
-SOMEXTERN char * SOMLINK somtgetVersionSL(char *sccsid, char *version); +
-</code> +
- +
-Note: somtgetVersion version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtgetgatt, somtgetgattSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtgetgatt(char *s); +
-SOMEXTERN char * SOMLINK somtgetgattSL(char *s); +
-</code> +
- +
-Note: somtgetgatt version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtnextword, somtnextwordSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtnextword(const char *s, char *buf); +
-SOMEXTERN char * SOMLINK somtnextwordSL(const char *s, char *buf); +
-</code> +
- +
-Note: somtnextword version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtnormaliseDesc, somtnormaliseDescSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtnormaliseDesc(char *desc, char *normal); +
-SOMEXTERN char * SOMLINK somtnormaliseDescSL(char *desc, char *normal); +
-</code> +
- +
-Note: somtnormaliseDesc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtsatos, somtsatosSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtsatos(char **sa, char *sep, char *buf); +
-SOMEXTERN char * SOMLINK somtsatosSL(char **sa, char *sep, char *buf); +
-</code> +
- +
-Note: somtsatos version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtsearchFile, somtsearchFileSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtsearchFile(char *file, char *path, char *envvar); +
-SOMEXTERN char * SOMLINK somtsearchFileSL(char *file, char *path, char *envvar); +
-</code> +
- +
-Note: somtsearchFile version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtskipws, somtskipwsSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtskipws(const char *s); +
-SOMEXTERN char * SOMLINK somtskipwsSL(const char *s); +
-</code> +
- +
-Note: somtskipws version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtstringFmt, somtstringFmtSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtstringFmtSL(char *fmt, ...) +
-SOMEXTERN char * SOMLINK somtstringFmtSL(char *fmt, ...) +
-</code> +
- +
-Allocate buffer for string, format it using <fmt> and return pointer to buffer. +
- +
-Note: somtstringFmt version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somttype, somttypeSL function ==== +
- +
-<code> +
-SOMEXTERN char * somttype(SOMTType type); +
-SOMEXTERN char * SOMLINK somttypeSL(SOMTType type); +
-</code> +
-Return string representation of type of Entry structure except special case SOMTEmitterBeginE and SOMTEmitterEndE types. +
- +
-Note: somttype version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-Warning: Depricated. Use somtEntryTypeName instead. +
- +
-==== somtuniqFmt, somtuniqFmtSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtuniqFmt(MemBuf *membuf, char *fmt, ...) +
-SOMEXTERN char * SOMLINK somtuniqFmtSL(MemBuf *membuf, char *fmt, ...) +
-</code> +
- +
-Return unique formatted string. +
- +
-Note: somtuniqFmt version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
-==== somtargFlag, somtargFlagSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtargFlag(int *argc, char ***argv); +
-SOMEXTERN int SOMLINK somtargFlagSL(int *argc, char ***argv); +
-</code> +
- +
-Note: somtargFlag version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
- +
-==== somtattjoin, somtattjoinSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtattjoin(register AttList *ap1, AttList *ap2); +
-SOMEXTERN int SOMLINK somtattjoinSL(register AttList *ap1, AttList *ap2); +
-</code> +
- +
-Note: somtattjoin version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdbcsLastChar, somtdbcsLastCharSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtdbcsLastChar(char *buf); +
-SOMEXTERN int SOMLINK somtdbcsLastCharSL(char *buf); +
-</code> +
- +
-Note: somtdbcsLastChar version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdbcsScan, somtdbcsScanSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtdbcsScan(char **buf); +
-SOMEXTERN int SOMLINK somtdbcsScanSL(char **buf); +
-</code> +
- +
-Note: somtdbcsScan version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdiskFull, somtdiskFullSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtdiskFull(FILE *fp); +
-SOMEXTERN int SOMLINK somtdiskFullSL(FILE *fp); +
-</code> +
- +
-Note: somtdiskFull version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfclose, somtfcloseSL function ==== +
- +
-<code> +
-SOMEXTERN int somtfclose(FILE *fp); +
-SOMEXTERN int SOMLINK somtfcloseSL(FILE *fp); +
-</code> +
- +
-Same as C fclose function. +
- +
-Note: somtfclose version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtisparent, somtisparentSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtisparent(Entry *cls, Entry *parent); +
-SOMEXTERN int SOMLINK somtisparentSL(Entry *cls, Entry *parent); +
-</code> +
- +
-Note: somtisparent version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmget, somtmgetSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtmget(int setnum, int msgnum, char *msgbuf); +
-SOMEXTERN int SOMLINK somtmgetSL(int setnum, int msgnum, char *msgbuf); +
-</code> +
- +
-Note: somtmget version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmopen, somtmopenSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtmopen(char *filename); +
-SOMEXTERN int SOMLINK somtmopenSL(char *filename); +
-</code> +
- +
-Note: somtmopen version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmprintf, somtmprintfSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtmprintf(int setnum, int msgnum, ...); +
-SOMEXTERN int SOMLINK somtmprintfSL(int setnum, int msgnum, ...); +
-</code> +
- +
-Note: somtmprintf version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtokremove, somtokremoveSL function ==== +
- +
-<code> +
-SOMEXTERN int somtokremove(char *file); +
-SOMEXTERN int SOMLINK somtokremoveSL(char *file); +
-</code> +
- +
-Alias of C remove function. +
- +
-Note: somtokremove version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtunload, somtunloadSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtunload(void *modHandle); +
-SOMEXTERN int SOMLINK somtunloadSL(void *modHandle); +
-</code> +
- +
-Note: somtunload version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtwriteaccess, somtwriteaccessSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtwriteaccess(char *file); +
-SOMEXTERN int SOMLINK somtwriteaccessSL(char *file); +
-</code> +
- +
-Note: somtwriteaccess version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsmalloc, somtsmallocSL function ==== +
- +
-<code> +
-SOMEXTERN void * somtsmalloc(size_t nbytes, BYTE clear); +
-SOMEXTERN void * SOMLINK somtsmallocSL(size_t nbytes, BYTE clear); +
-</code> +
- +
-Allocate <nbytes> of memory and fill it by zeroes if <clear> flag is set. +
- +
-Note: somtsmalloc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtaddGAtt, somtaddGAttSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtaddGAtt(MemBuf **membuf, AttList **ap, char *buf); +
-SOMEXTERN void SOMLINK somtaddGAttSL(MemBuf **membuf, AttList **ap, char *buf); +
-</code> +
- +
-Note: somtaddGAtt version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtcalcFileName, somtcalcFileNameSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtcalcFileName(char *def, char *over, char *ext); +
-SOMEXTERN void SOMLINK somtcalcFileNameSL(char *def, char *over, char *ext); +
-</code> +
- +
-Note: somtcalcFileName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtcleanFilesFatal, somtcleanFilesFatalSL function ==== +
- +
-<code> +
-SOMEXTERN void  somtcleanFilesFatal(int status); +
-SOMEXTERN void  SOMLINK somtcleanFilesFatalSL(int status); +
-</code> +
- +
-Delete temporary files (if emitted file opened)  and exit. +
- +
-Note: somtcleanFilesFatal version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtemitTypes, somtemitTypesSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtemitTypes(FILE *fp, Mlist *mp, Stab *stab); +
-SOMEXTERN void SOMLINK somtemitTypesSL(FILE *fp, Mlist *mp, Stab *stab); +
-</code> +
- +
-Note: somtemitTypes version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somterror, somterrorSL function ==== +
- +
-<code c> +
-SOMEXTERN void somterror(char *file, long lineno, char *fmt, ...); +
-SOMEXTERN void SOMLINK somterrorSL(char *file, long lineno, char *fmt, ...); +
-</code> +
- +
-Note: somterror version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfatal, somtfatalSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtfatal(char *file, long lineno, char *fmt, ...); +
-SOMEXTERN void SOMLINK somtfatalSL(char *file, long lineno, char *fmt, ...); +
-</code> +
- +
-Note: somtfatal version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtinternal, somtinternalSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtinternal(char *file, long lineno, char *fmt, ...); +
-SOMEXTERN void SOMLINK somtinternalSL(char *file, long lineno, char *fmt, ...); +
-</code> +
- +
-Note: somtinternal version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmclose, somtmcloseSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmclose(void); +
-SOMEXTERN void SOMLINK somtmcloseSL(void); +
-</code> +
- +
-Note: somtmclose version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmsg, somtmsgSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmsg(char *file, long lineno, char *fmt, ...); +
-SOMEXTERN void SOMLINK somtmsgSL(char *file, long lineno, char *fmt, ...); +
-</code> +
- +
-Note: somtmsg version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtreadDescFile, somtreadDescFileSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtreadDescFile(Stab *stab, char *file); +
-SOMEXTERN void SOMLINK somtreadDescFileSL(Stab *stab, char *file); +
-</code> +
- +
-Note: somtreadDescFile version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsetDefaultDesc, somtsetDefaultDescSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtsetDefaultDesc(Stab *stab); +
-SOMEXTERN void SOMLINK somtsetDefaultDescSL(Stab *stab); +
-</code> +
- +
-Note: somtsetDefaultDesc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsetEmitSignals, somtsetEmitSignalsSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtsetEmitSignals(void(*cleanup) (int), void (*internal) (int)); +
-SOMEXTERN void SOMLINK somtsetEmitSignalsSL(void(*cleanup) (int), void (*internal) (int)); +
-</code> +
- +
-Note: somtsetEmitSignals version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsetTypeDefn, somtsetTypeDefnSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtsetTypeDefn(Entry *type, Entry *ep, char *ptrs, Entry *ret, BOOL array); +
-SOMEXTERN void SOMLINK somtsetTypeDefnSL(Entry *type, Entry *ep, char *ptrs, Entry *ret, BOOL array); +
-</code> +
- +
-Note: somtsetTypeDefn version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtshowVersion, somtshowVersionSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtshowVersion(char *s, char *progname, char *sccsid); +
-SOMEXTERN void SOMLINK somtshowVersionSL(char *s, char *progname, char *sccsid); +
-</code> +
- +
-Note: somtshowVersion version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsmfree, somtsmfreeSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtsmfree(void *first, ...); +
-SOMEXTERN void SOMLINK somtsmfreeSL(void *first, ...); +
-</code> +
- +
-Note: somtsmfree version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtunsetEmitSignals, somtunsetEmitSignalsSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtunsetEmitSignals(void); +
-SOMEXTERN void SOMLINK somtunsetEmitSignalsSL(void); +
-</code> +
- +
-Note: somtunsetEmitSignals version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtwarn, somtwarnSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtwarn(char *file, long lineno, char *fmt, ...); +
-SOMEXTERN void SOMLINK somtwarnSL(char *file, long lineno, char *fmt, ...); +
-</code> +
- +
-Note: somtwarn version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtuppercase, somtuppercaseSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtuppercase(char *s, char *buf); +
-SOMEXTERN char * SOMLINK somtuppercaseSL(char *s, char *buf); +
-</code> +
- +
-Convert <s> to upper case and return to <buf>+
- +
-Note: somtuppercase version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtlowercase, somtlowercaseSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtlowercase(char *s, char *buf); +
-SOMEXTERN char * SOMLINK somtlowercase(char *s, char *buf) +
-</code> +
- +
-Convert <s> to lower case and return to <buf>+
- +
-Note: somtlowercase version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtdbcsuppercase, somtdbcsuppercaseSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtdbcsuppercase(char *s, char *buf); +
-SOMEXTERN char * SOMLINK somtdbcsuppercaseSL(char *s, char *buf); +
-</code> +
- +
-Note: somtdbcsuppercase version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdbcslowercase, somtdbcslowercaseSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtdbcslowercase(char *s, char *buf); +
-SOMEXTERN char * SOMLINK somtdbcslowercaseSL(char *s, char *buf); +
-</code> +
- +
-Note: somtdbcslowercase version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtresetEmitSignals, somtresetEmitSignalsSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtresetEmitSignals(void); +
-SOMEXTERN void SOMLINK somtresetEmitSignalsSL(void); +
-</code> +
- +
-Note: somtresetEmitSignals version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsizeofEntry, somtsizeofEntrySL function ==== +
- +
-<code> +
-SOMEXTERN size_t somtsizeofEntry(SOMTTypes type); +
-SOMEXTERN size_t SOMLINK somtsizeofEntrySL(SOMTTypes type); +
-</code> +
- +
-Return size of Entry structure for <type> of entry; +
- +
-Note: somtsizeofEntry version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-Mapping of type to Entry.u type and nameis following: +
- +
-^ Entry type ^ union struct ^ union name ^ +
-| SOMTClassE | Class | c | +
-| SOMTMetaE | Meta | mt | +
-| SOMTBaseE | Parent | p | +
-| SOMTPassthruE | Passthru | pt | +
-| SOMTNewMethodE | Method_OR_Data | m | +
-| SOMTOverrideMethodE | Method_OR_Data | m | +
-| SOMTOverriddenMethodE | Method_OR_Data | m | +
-| SOMTDataE | Method_OR_Data | m | +
-| SOMTArgumentE | Method_OR_Data | m | +
-| SOMTTypedefBE | Method_OR_Data | m | +
-| SOMTVoidPtrBE | Method_OR_Data | m | +
-| SOMTStructE | Struct | struc | +
-| SOMTTyDclE | Typedef | ty | +
-| SOMTTypedefE | Typedef | ty | +
-| SOMTUnionE | Union | un | +
-| SOMTUnionSE | Union | un | +
-| SOMTEnumE | Enumerator | enumerator | +
-| SOMTConstE | Const | con | +
-| SOMTAttE | Att | att | +
-| SOMTSequenceE | Sequence | seq | +
-| SOMTSequenceTDE | Sequence | seq | +
-| SOMTStringE | String | str | +
-| SOMTEnumBE | EnumName | enumN | +
-| SOMTModuleE | Module | mod | +
- +
-==== somtepname, somtepnameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtepname(Entry *ep, char *buf, BOOL suppressImpctxCheck); +
-SOMEXTERN char * SOMLINK somtepnameSL(Entry *ep, char *buf, BOOL suppressImpctxCheck); +
-</code> +
-Note: somtepname version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtgenSeqName, somtgenSeqNameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtgenSeqName(long n, Entry *base, char *buf, BOOL fullname); +
-SOMEXTERN char * SOMLINK somtgenSeqNameSL(long n, Entry *base, char *buf, BOOL fullname); +
-</code> +
- +
-Note: somtgenSeqName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmrifatal, somtmrifatalSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmrifatal(char *file, long lineno, int msgnum,...); +
-SOMEXTERN void SOMLINK somtmrifatalSL(char *file, long lineno, int msgnum,...); +
-</code> +
- +
-Note: somtmrifatal version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmriinternal, somtmriinternalSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmriinternal(char *file, long lineno, int msgnum,...); +
-SOMEXTERN void SOMLINK somtmriinternalSL(char *file, long lineno, int msgnum,...); +
-</code> +
- +
-Note: somtmriinternal version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmrierror, somtmrierrorSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmrierror(char *file, long lineno, int msgnum,...); +
-SOMEXTERN void SOMLINK somtmrierrorSL(char *file, long lineno, int msgnum,...); +
-</code> +
- +
-Note: somtmrierror version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmrimsg, somtmrimsgSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmrimsg(char *file, long lineno, int msgnum,...); +
-SOMEXTERN void SOMLINK somtmrimsgSL(char *file, long lineno, int msgnum,...); +
-</code> +
- +
-Note: somtmrimsg version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmriwarn, somtmriwarnSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtmriwarn(char *file, long lineno, int msgnum,...); +
-SOMEXTERN void SOMLINK somtmriwarnSL(char *file, long lineno, int msgnum,...); +
-</code> +
- +
-Note: somtmriwarn version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsetInternalMessages, somtsetInternalMessagesSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtsetInternalMessages(char *too_long, char *cant_continue, char *segv, char *bus); +
-SOMEXTERN void SOMLINK somtsetInternalMessagesSL(char *too_long, char *cant_continue, char *segv, char *bus); +
-</code> +
- +
-Note: somtsetInternalMessages version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
- +
-==== somtisvoid, somtisvoidSL function ==== +
- +
-<code> +
-SOMEXTERN boolean somtisvoidSL(Entry *type, char *defn) +
-SOMEXTERN BOOL SOMLINK somtisvoidSL(Entry *type, char *defn) +
-</code> +
- +
-Return TRUE if type%%->%%type is SOMTVoidBE it defn equal to "void", "VOID", "PMVOID"+
- +
-Note: somtisvoid version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtreturnsStruct, somtreturnsStructSL function ==== +
- +
-<code c> +
-SOMEXTERN BOOL somtreturnsStruct(Entry *ep); +
-SOMEXTERN BOOL SOMLINK somtreturnsStructSL(Entry *ep); +
-</code> +
- +
-Note: somtreturnsStruct version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtreturnsPtr, somtreturnsPtrSL function ==== +
- +
-<code c> +
-SOMEXTERN BOOL somtreturnsPtr(Entry *ep); +
-SOMEXTERN BOOL SOMLINK somtreturnsPtrSL(Entry *ep); +
-</code> +
- +
-Note: somtreturnsPtr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtsimpleName, somtsimpleNameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtsimpleName(Entry *ep); +
-SOMEXTERN char * SOMLINK somtsimpleNameSL(Entry *ep); +
-</code> +
- +
-Note: somtsimpleName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtqualifyNames, somtqualifyNamesSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtqualifyNames(Stab * stab, BOOL fully); +
-SOMEXTERN void SOMLINK somtqualifyNamesSL(Stab * stab, BOOL fully); +
-</code> +
- +
-Note: somtqualifyNames version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfindBaseEpNonPtr, somtfindBaseEpNonPtrSL function ==== +
- +
-<code c> +
-SOMEXTERN Entry * somtfindBaseEpNonPtr(Entry *ep); +
-SOMEXTERN Entry * SOMLINK somtfindBaseEpNonPtrSL(Entry *ep); +
-</code> +
- +
-Note: somtfindBaseEpNonPtr version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtprocessTraps, somtprocessTrapsSL function ==== +
- +
-<code c> +
-SOMEXTERN BOOL somtprocessTraps(void); +
-SOMEXTERN BOOL SOMLINK somtprocessTrapsSL(void); +
-</code> +
- +
-Note: somtprocessTraps version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtallocMlist, somtallocMlistSL function ==== +
- +
-<code c> +
-SOMEXTERN Mlist * somtallocMlist(Entry * ep); +
-SOMEXTERN Mlist * SOMLINK somtallocMlistSL(Entry * ep); +
-</code> +
- +
-Note: somtallocMlist version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtmlistend, somtmlistendSL function ==== +
- +
-<code c> +
-SOMEXTERN Mlist * somtmlistend(Mlist * mp, char *name); +
-SOMEXTERN Mlist * SOMLINK somtmlistendSL(Mlist * mp, char *name); +
-</code> +
- +
-Note: somtmlistend version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtisMutRef, somtisMutRefSL function ==== +
- +
-<code c> +
-SOMEXTERN BOOL somtisMutRef(Entry *ep, Mlist *seen, BOOL isself, long level); +
-SOMEXTERN BOOL SOMLINK somtisMutRefSL(Entry *ep, Mlist *seen, BOOL isself, long level); +
-</code> +
- +
-Note: somtisMutRef version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
- +
-==== somtfreeMlist, somtfreeMlistSL function ==== +
- +
-<code c> +
-SOMEXTERN Mlist * somtfreeMlist(Mlist *mp); +
-SOMEXTERN Mlist * SOMLINK somtfreeMlistSL(Mlist *mp); +
-</code> +
- +
-Note: somtfreeMlist version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdupMlist, somtdupMlistSL function ==== +
- +
-<code c> +
-SOMEXTERN Mlist * somtdupMlist(Mlist *mp, Entry *ep); +
-SOMEXTERN Mlist * SOMLINK somtdupMlistSL(Mlist *mp, Entry *ep); +
-</code> +
- +
-Note: somtdupMlist version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfreeWorld, somtfreeWorldSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtfreeWorld(); +
-SOMEXTERN void SOMLINK somtfreeWorldSL(); +
-</code> +
-==== somtinitMalloc, somtinitMallocSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtinitMalloc(BOOL dynamic) +
-SOMEXTERN void SOMLINK somtinitMallocSL(BOOL dynamic) +
-</code> +
- +
-Initialize memory allocation/free functions. +
- +
-Note: <dynamic> flag ignored in somFree version. +
- +
-Note: somtinitMalloc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtInitialiseEmitlib. somtInitialiseEmitlibSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtInitialiseEmitlib(void); +
-SOMEXTERN void SOMLINK somtInitialiseEmitlibSL(void); +
-</code> +
- +
-Note: somtInitialiseEmitlib version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtInitialiseSmmeta, somtInitialiseSmmetaSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtInitialiseSmmeta(void); +
-SOMEXTERN void SOMLINK somtInitialiseSmmetaSL(void); +
-</code> +
- +
-Note: somtInitialiseSmmeta version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtInitialiseCreatetc, somtInitialiseCreatetcSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtInitialiseCreatetc(void); +
-SOMEXTERN void SOMLINK somtInitialiseCreatetcSL(void); +
-</code> +
- +
-Note: somtInitialiseCreatetc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtInitialiseSmtypes, somtInitialiseSmtypesSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtInitialiseSmtypes(void); +
-SOMEXTERN void SOMLINK somtInitialiseSmtypesSL(void); +
-</code> +
- +
-Note: somtInitialiseSmtypes version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtInitialiseSomc, somtInitialiseSomcSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtInitialiseSomc(void); +
-SOMEXTERN void SOMLINK somtInitialiseSomcSL(void); +
-</code> +
- +
-Note: somtInitialiseSomc version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtInitialiseSmsmall, somtInitialiseSmsmallSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtInitialiseSmsmall(void); +
-SOMEXTERN void SOMLINK somtInitialiseSmsmallSL(void); +
-</code> +
- +
-Note: somtInitialiseSmsmall version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtattMap, somtattMapSL function ==== +
- +
- +
-==== somtexit, somtexitSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtexit(SOMTExitBuf *ebuf, int status); +
-SOMEXTERN void SOMLINK somtexitSL(SOMTExitBuf *ebuf, int status); +
-</code> +
- +
-Note: somtexit version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdymain, somtdymainSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtdymain(char *file, Entry *cls, EmitFn emitfn, char *emitter, int first, char *version, Stab *stab); +
-SOMEXTERN void SOMLINK somtdymainSL(char *file, Entry *cls, EmitFn emitfn, char *emitter, int first, char *version, Stab *stab); +
-</code> +
- +
-Note: somtdymain version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtaddHeader, somtaddHeaderSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtaddHeader(char *file, FILE *fp, char *ext); +
-SOMEXTERN void SOMLINK somtaddHeaderSL(char *file, FILE *fp, char *ext); +
-</code> +
- +
-Note: somtaddHeader version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtnthArg, somtnthArgSL function ==== +
- +
-<code c> +
-SOMEXTERN Entry * somtnthArg(Entry * method, int n); +
-SOMEXTERN Entry * SOMLINK somtnthArgSL(Entry * method, int n); +
-</code> +
- +
-Note: somtnthArg version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtemitModule, somtemitModuleSL function ==== +
- +
-<code> +
-SOMEXTERN FILE * somtemitModule(char *file, Entry *cls, char *ext); +
-SOMEXTERN FILE * SOMLINK somtemitModuleSL(char *file, Entry *cls, char *ext); +
-</code> +
- +
-Same as somtopenEmitFile. +
- +
-Note: somtemitModule version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtallocDataList, somtallocDataListSL function ==== +
- +
-<code c> +
-SOMEXTERN Mlist * somtallocDataList(Entry *cls); +
-SOMEXTERN Mlist * SOMLINK somtallocDataListSL(Entry *cls); +
-</code> +
- +
-Note: somtallocDataList version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtallocMethodList, somtallocMethodListSL function ==== +
- +
-<code c> +
-SOMEXTERN Mlist * somtallocMethodList(Entry *cls, boolean all); +
-SOMEXTERN Mlist * SOMLINK somtallocMethodListSL(Entry *cls, boolean all); +
-</code> +
- +
-Note: somtallocMethodList version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtclsfilename, somtclsfilenameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtclsfilename(Entry * cls); +
-SOMEXTERN char * SOMLINK somtclsfilenameSL(Entry * cls); +
-</code> +
- +
-Note: somtclsfilename version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtclsname, somtclsnameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtclsname(Entry * cls); +
-SOMEXTERN char * SOMLINK somtclsnameSL(Entry * cls); +
-</code> +
- +
-Return name of class <cls>+
- +
-Note: somclsname version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtfindMethodName, somtfindMethodNameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtfindMethodName(const char *bp, char *name); +
-SOMEXTERN char * SOMLINK somtfindMethodNameSL(const char *bp, char *name); +
-</code> +
- +
-Note: somtfindMethodName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfullPrototype, somtfullPrototypeSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtfullPrototype(char *buf, Entry * method, char *sep, int varargs); +
-SOMEXTERN char * SOMLINK somtfullPrototypeSL(char *buf, Entry * method, char *sep, int varargs); +
-</code> +
- +
-Note: somtfullPrototype version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfullTypedef, somtfullTypedefSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtfullTypedef(char *buf, Entry * cls, Entry * method); +
-SOMEXTERN char * SOMLINK somtfullTypedefSL(char *buf, Entry * cls, Entry * method); +
-</code> +
- +
-Note: somtfullTypedef version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtgetNonRepeatedParent, somtgetNonRepeatedParentSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtgetNonRepeatedParent(Entry *cls, int i); +
-SOMEXTERN char * SOMLINK somtgetNonRepeatedParentSL(Entry *cls, int i); +
-</code> +
- +
-Note: somtgetNonRepeatedParent version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtgetatt, somtgetattSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtgetatt(Entry * ep, char *s); +
-SOMEXTERN char * SOMLINK somtgetattSL(Entry * ep, char *s); +
-</code> +
-==== somtgetdatt, somtgetdattSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtgetdatt(Entry * ep, char *s); +
-SOMEXTERN char * SOMLINK somtgetdattSL(Entry * ep, char *s); +
-</code> +
-==== somtgetAbistyle, somtgetAbistyleSL function ==== +
- +
-<code c> +
-SOMEXTERN enum SOMTABIStyle  somtgetAbistyle( Entry * ep ); +
-SOMEXTERN enum SOMTABIStyle  SOMLINK somtgetAbistyleSL( Entry * ep ); +
-</code> +
- +
-Return ABI style of Entry. At the current time returns always SOMTABIStyle_2 +
- +
-Note: somtgetABIStyle version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtimplicit, somtimplicitSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtimplicit(Entry *ep, boolean shortform, char *buf); +
-SOMEXTERN char * SOMLINK somtimplicitSL(Entry *ep, boolean shortform, char *buf); +
-</code> +
- +
-Note: somtimplicit version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtimplicitArgs, somtimplicitArgsSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtimplicitArgs(Entry *ep); +
-SOMEXTERN char * SOMLINK somtimplicitArgsSL(Entry *ep); +
-</code> +
- +
-Note: somtimplicitArgs version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtincludeOnce, somtincludeOnceSL function ==== +
- +
-<code> +
-SOMEXTERN char * somtincludeOnceSL(Entry *cls, char *ext, char *buf); +
-SOMEXTERN char * SOMLINK somtincludeOnceSL(Entry *cls, char *ext, char *buf); +
-</code> +
- +
-Return token to <buf> for once include checks using name of class <cls> and extension <ext> in form SOM_classname_ext. +
- +
-Note: somtincludeOnce version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtpclsfilename, somtpclsfilenameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtpclsfilename(Entry *parent); +
-SOMEXTERN char * SOMLINK somtpclsfilenameSL(Entry *parent); +
-</code> +
- +
-Note: somtpclsfilename version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtpclsname, somtpclsnameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtpclsname(Entry *parent); +
-SOMEXTERN char * SOMLINK somtpclsnameSL(Entry *parent); +
-</code> +
- +
-Note: somtpclsname version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtprefixedPrototype, somtprefixedPrototypeSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtprefixedPrototype(char *buf, Entry * method, char *sep, int varargs, char *prefix); +
-SOMEXTERN char * SOMLINK somtprefixedPrototypeSL(char *buf, Entry * method, char *sep, int varargs, char *prefix); +
-</code> +
- +
-Note: somtprefixedPrototype version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtreplaceDataName, somtreplaceDataNameSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtreplaceDataName(char *buf, Entry * data, char *replace); +
-SOMEXTERN char * SOMLINK somtreplaceDataNameSL(char *buf, Entry * data, char *replace); +
-</code> +
- +
-Note: somtreplaceDataName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtrmSelf, somtrmSelfSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtrmSelf(char *str); +
-SOMEXTERN char * SOMLINK somtrmSelfSL(char *str); +
-</code> +
- +
-Note: somtrmSelf version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtshortArgList, somtshortArgListSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtshortArgList(char *buf, Entry * method, char *sep, boolean varargs, boolean addself); +
-SOMEXTERN char * SOMLINK somtshortArgListSL(char *buf, Entry * method, char *sep, boolean varargs, boolean addself); +
-</code> +
- +
-Note: somtshortArgList version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtimplicitMeta, somtimplicitMetaSL function ==== +
- +
-<code c> +
-SOMEXTERN int  somtimplicitMeta(Entry *cls); +
-SOMEXTERN int  SOMLINK somtimplicitMetaSL(Entry *cls); +
-</code> +
- +
-Note: somtimplicitMeta version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtlistAttribute, somtlistAttributeSL function ==== +
- +
-<code c> +
-SOMEXTERN int  somtlistAttribute(FILE * fp, int n, AttList * ap, char *s, boolean value, boolean breakLine, boolean firstComma); +
-SOMEXTERN int  SOMLINK somtlistAttributeSL(FILE * fp, int n, AttList * ap, char *s, boolean value, boolean breakLine, boolean firstComma); +
-</code> +
- +
-Note: somtlistAttribute version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtnewMethodsCount, somtnewMethodsCountSL function ==== +
- +
-<code c> +
-SOMEXTERN int  somtnewMethodsCount(Entry * cls, int meta, boolean procflg); +
-SOMEXTERN int  SOMLINK somtnewMethodsCountSL(Entry * cls, int meta, boolean procflg); +
-</code> +
- +
-Note: somtnewMethodsCount version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtprivateMethodsCount, somtprivateMethodsCountSL function ==== +
- +
-<code c> +
-SOMEXTERN int somtprivateMethodsCount(Entry * cls, int meta); +
-SOMEXTERN int SOMLINK somtprivateMethodsCountSL(Entry * cls, int meta); +
-</code> +
- +
-Note: somtprivateMethodsCount version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtaddHeader, somtaddHeaderSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtaddHeader(char *file, FILE *fp, char *ext); +
-SOMEXTERN void SOMLINK somtaddHeaderSL(char *file, FILE *fp, char *ext); +
-</code> +
- +
-Note: somtaddHeader version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtcleanFiles, somtcleanFilesSL function ==== +
- +
-<code> +
-SOMEXTERN void somtcleanFiles(int status); +
-SOMEXTERN void  SOMLINK somtcleanFilesSL(int status); +
-</code> +
- +
-Delete temporary files and exit. +
- +
-Note: somtcleanFiles version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtdeclareIdlVarargs, somtdeclareIdlVarargsSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtdeclareIdlVarargs(FILE *fp, Entry *ep); +
-SOMEXTERN void SOMLINK somtdeclareIdlVarargsSL(FILE *fp, Entry *ep); +
-</code> +
- +
-Note: somtdeclareIdlVarargs version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtdymain. somtdymainSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtdymain(char *file, Entry *cls, EmitFn emitfn, char *emitter, int first, char *version, Stab *stab); +
-SOMEXTERN void SOMLINK somtdymainSL(char *file, Entry *cls, EmitFn emitfn, char *emitter, int first, char *version, Stab *stab); +
-</code> +
- +
-Note: somtdymain version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtemitModuleTypes, somtemitModuleTypesSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtemitModuleTypes(FILE *fp, Entry *ep, Stab *stab); +
-SOMEXTERN void SOMLINK somtemitModuleTypesSL(FILE *fp, Entry *ep, Stab *stab); +
-</code> +
- +
-Note: somtemitModuleTypes version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtemitPassthru, somtemitPassthruSL function ==== +
- +
-<code c> +
-SOMEXTERN long somtemitPassthru(FILE * fp, Entry * cls, char *name, int mode, char *att); +
-SOMEXTERN long SOMLINK somtemitPassthruSL(FILE * fp, Entry * cls, char *name, int mode, char *att); +
-</code> +
- +
-Note: somtemitPassthru version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfreeDataList, somtfreeDataListSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtfreeDataList(Mlist *mlist); +
-SOMEXTERN void SOMLINK somtfreeDataListSL(Mlist *mlist); +
-</code> +
- +
-Note: somtfreeDataList version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfreeMethodList, somtfreeMethodListSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtfreeMethodList(Mlist *mlist); +
-SOMEXTERN void SOMLINK somtfreeMethodListSL(Mlist *mlist); +
-</code> +
- +
-Note: somtfreeMethodList version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtfullComment, somtfullCommentSL function ==== +
- +
-<code> +
-SOMEXTERN void somtfullCommentSL(FILE * fp, char *fmt,...); +
-SOMEXTERN void SOMLINK somtfullCommentSL(FILE * fp, char *fmt,...); +
-</code> +
- +
-Outout formatted string <fmt> to emitted file as comment using C-style comment via somtoidlComment function; +
- +
-Note: somtfullComment version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somthandleDiskFull, somthandleDiskFullSL function ==== +
- +
-<code c> +
-SOMEXTERN void somthandleDiskFull(FILE *fp); +
-SOMEXTERN void SOMLINK somthandleDiskFullSL(FILE *fp); +
-</code> +
- +
-Note: somthandleDiskFull version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtinitialiseMeta, somtinitialiseMetaSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtinitialiseMeta(Entry * cls, Stab * stab, boolean meta, int imp); +
-SOMEXTERN void SOMLINK somtinitialiseMetaSL(Entry * cls, Stab * stab, boolean meta, int imp); +
-</code> +
- +
-Note: somtinitialiseMeta version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtoidlComment, somtoidlCommentSL function ==== +
- +
-<code> +
-SOMEXTERN void somtoidlComment(FILE * fp, int min, int max, char style, char *comment); +
-SOMEXTERN void  SOMLINK somtoidlCommentSL(FILE * fp, int min, int max, char style, char *comment); +
-</code> +
- +
-Output oidl-<style> <comment> to file <fp> from colon <min> up to colon <max>+
- +
-Note: Seems IBM SOM ignores <max> value. +
- +
-Style is one of following: +
- +
-  * %%'/'%% - each line started from %%"//#"%%; +
-  * '#' - each line started from "#"; +
-  * 'c' - C-style comment started from %%'/*'%% and ended with %%'*/'%%. each line started from %%"*"%%; +
-  * 's' -each line started from %%"--"%%; +
-  * 'd' - each line started from ";"; +
-  * '+' - each line started from %%"//"%%; +
- +
-Other values forced to 'c' style. +
- +
-<comment> can contains at offset 0 0x01 signature indicating comment style. If style is zero the used style from comment position 1. Two first symbols of comment are ignored if style signature is present. +
- +
-Note: somtoidlComment version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtscmsg, somtscmsgSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtscmsg(Entry *cls, Entry *ep, char *fmt, ...); +
-SOMEXTERN void SOMLINK somtscmsgSL(Entry *cls, Entry *ep, char *fmt, ...); +
-</code> +
- +
-Note: somtscmsg version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtshortDefine, somtshortDefineSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtshortDefine(FILE *fp, Entry *ep, char *fmt, ...); +
-SOMEXTERN void SOMLINK somtshortDefineSL(FILE *fp, Entry *ep, char *fmt, ...); +
-</code> +
- +
-Note: somtshortDefine version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtuninitialiseMeta, somtuninitialiseMetaSL function ==== +
- +
-<code c> +
-SOMEXTERN void  somtuninitialiseMeta(Entry * cls); +
-SOMEXTERN void SOMLINK somtuninitialiseMetaSL(Entry * cls); +
-</code> +
- +
-Note: somtuninitialiseMeta version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtobseleteHeaderFile, somtobseleteHeaderFileSL function ==== +
- +
-<code> +
-SOMEXTERN FILE * somtobseleteHeaderFile(char *file, Entry *cls, char *ext, char *newext); +
-SOMEXTERN FILE * SOMLINK somtobseleteHeaderFileSL(char *file, Entry *cls, char *ext, char *newext); +
-</code> +
- +
-Open emit file and write info about obsolete header. Return file pointer. +
- +
-Note: somtoboleteHeaderFile version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtwidenType, somtwidenTypeSL function ==== +
- +
-<code c> +
-SOMEXTERN char * somtwidenType(Entry *ep, char *args, char *type); +
-SOMEXTERN char * SOMLINK somtwidenTypeSL(Entry *ep, char *args, char *type); +
-</code> +
- +
-Note: somtwidenType version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtgenAttStubs, somtgenAttStubsSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtgenAttStubs(FILE *fp, Entry *cls, char *prefix, char *classprefix); +
-SOMEXTERN void SOMLINK somtgenAttStubsSL(FILE *fp, Entry *cls, char *prefix, char *classprefix); +
-</code> +
- +
-Note: somtgenAttStubs version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somtstrictidl, somtstrictidlSL function ==== +
- +
-<code> +
-SOMEXTERN void somtstrictidl(FILE *fp); +
-SOMEXTERN void SOMLINK somtstrictidlSL(FILE *fp); +
-</code> +
- +
-Output definition of SOM_STRICT_IDL macro if somadd variable is TRUE; +
- +
-Note: somtstrictidl version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtcreateTypeCodes, somtcreateTypeCodesSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtcreateTypeCodes (Stab *stab); +
-SOMEXTERN void SOMLINK somtcreateTypeCodesSL(Stab *stab); +
-</code> +
- +
-Note: somtcreateTypeCodes  version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtemitTcConstant, somtemitTcConstantSL function ==== +
- +
-<code c> +
-SOMEXTERN TypeCode * somtemitTcConstant(TypeCode t, FILE *f, char *name, TypeCode *alreadyDone); +
-SOMEXTERN TypeCode * SOMLINK somtemitTcConstantSL(TypeCode t, FILE *f, char *name, TypeCode *alreadyDone); +
-</code> +
- +
- +
-Note: somtemitTcConstant version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtemitPredefinedTcConstants, somtemitPredefinedTcConstantsSL function ==== +
- +
-<code c> +
-SOMEXTERN void somtemitPredefinedTcConstants (FILE *f); +
-SOMEXTERN void SOMLINK somtemitPredefinedTcConstantsSL(FILE *f); +
-</code> +
- +
-Note: somtemitPredefinedTcConstants  version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtAncestorClass, somtAncestorClassSL function ==== +
- +
-<code c> +
-SOMEXTERN Entry * somtAncestorClass(Entry *cls, char *name); +
-SOMEXTERN Entry * SOMLINK somtAncestorClassSL(Entry *cls, char *name); +
-</code> +
- +
-Note: somtAncestorClass version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somttcAlignment, somttcAlignmentSL function ==== +
- +
-<code c> +
-SOMEXTERN short somttcAlignment (TypeCode t, Environment *ev); +
-SOMEXTERN short SOMLINK somttcAlignmentSL(TypeCode t, Environment *ev); +
-</code> +
- +
-Note: somttcAlignment  version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somttcSize, somttcSizeSL function ==== +
- +
-<code c> +
-SOMEXTERN long somttcSize (TypeCode t, Environment *ev); +
-SOMEXTERN long SOMLINK somttcSizeSL(TypeCode t, Environment *ev); +
-</code> +
- +
-Note: somttcSize version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-==== somttcKind, somttcKindSL function ==== +
- +
-<code c> +
-SOMEXTERN TCKind somttcKind (TypeCode t, Environment *ev); +
-SOMEXTERN TCKind SOMLINK somttcKindSL(TypeCode t, Environment *ev); +
-</code> +
- +
-Note: somttcKind version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somttcSeqFromListString, somttcSeqFromListStringSL function ==== +
- +
-<code c> +
-SOMEXTERN sequence(string) somttcSeqFromListString (string s); +
-SOMEXTERN sequence(string) SOMLINK somttcSeqFromListStringSL(string s); +
-</code> +
- +
-Note: somttcSeqFromListString version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-==== somtGetReintroducedMethods, somtGetReintroducedMethodsSL function ==== +
- +
-<code c> +
-SOMEXTERN _IDL_SEQUENCE_EntryPtr somtGetReintroducedMethods(Entry *cls); +
-SOMEXTERN _IDL_SEQUENCE_EntryPtr SOMLINK somtGetReintroducedMethodsSL(Entry *cls); +
-</code> +
- +
-Note: somtGetReintroducedMethods version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink.  +
-===== Symbol table support functions ===== +
- +
-===== somtallocBuf, somtallocBufSL function ===== +
- +
-Note: somtallocBuf version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtuniqString, somtuniqStringSL function ===== +
- +
-<code> +
-SOMEXTERN char * somtuniqString(MemBuf *membuf, char *s); +
-SOMEXTERN char * SOMLINK somtuniqStringSL(MemBuf *membuf, char *s); +
-</code> +
- +
-Check is string unique and return NULL if not, or string itself if unique; +
- +
-Note: somtuniqString version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtkeyword, somtkeywordSL function ===== +
- +
-<code> +
-SOMEXTERN long somtkeyword(KeytabEntry *keytab, char *kword, long keytabsize); +
-SOMEXTERN long SOMLINK somtkeywordSL(KeytabEntry *keytab, char *kword, long keytabsize); +
-</code> +
- +
-Return token for keyword <kword> from keytaable <keytab> of <keytabsize> size. +
- +
-Note: somtkeyword version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtaddEntry, somtaddEntrySL function ===== +
- +
-<code> +
-SOMEXTERN void * somtaddEntry(Stab *stab, char *name, void *ep); +
-SOMEXTERN void * SOMLINK somtaddEntrySL(Stab *stab, char *name, void *ep); +
-</code> +
- +
-Add entry <ep> with name <name> to symbol table <stab>. Buffer for entry allocated by function. +
- +
-Note: somtaddEntry version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtgetEntry, somtgetEntrySL function ===== +
- +
-<code> +
-SOMEXTERN void * somtgetEntry(Stab *stab, char *name); +
-SOMEXTERN void * SOMLINK somtgetEntrySL(Stab *stab, char *name); +
-</code> +
- +
-Return pointer to entry structure with name equal to <name> from symbol table <stab> +
- +
-Note: somtgetEntry version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtstabFirst, somtstabFirstSL function ===== +
- +
-<code> +
-SOMEXTERN void * somtstabFirst(Stab *stab, Sep **sepp); +
-SOMEXTERN void * SOMLINK somtstabFirstSL(Stab *stab, Sep **sepp); +
-</code> +
- +
-Return first entry from symbol table <stab> and, optionally, returns sep entry in <sepp>+
- +
-Note: somtstabFirst version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtstabNext, somtstabNextSL function ===== +
- +
-<code> +
-SOMEXTERN void * somtstabNext(Stab *stab, Sep **sepp); +
-SOMEXTERN void * SOMLINK somtstabNextSL(Stab *stab, Sep **sepp); +
-</code> +
- +
-Return next after last search entry from symbol table <stab> and, optionally, returns sep entry in <sepp>+
- +
-Note: somtstabNext version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtstabFirstName, somtstabFirstNameSL function ===== +
- +
-<code> +
-SOMEXTERN void * somtstabFirstName(Stab *stab, char *name, Sep **sepp); +
-SOMEXTERN void * SOMLINK somtstabFirstNameSL(Stab *stab, char *name, Sep **sepp); +
-</code> +
- +
-Return first entry with <name> from symbol table <stab> and, optionally, returns sep entry in <sepp>+
- +
-Note: somtstabFirstName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtstabNextName, somtstabNextNameSL function ===== +
- +
-<code> +
-SOMEXTERN void * somtstabNextName(Stab *stab, Sep **sepp); +
-SOMEXTERN void * SOMLINK somtstabNextNameSL(Stab *stab, Sep **sepp); +
-</code> +
- +
-Return next after last search entry from symbol table <stab> and, optionally, returns sep entry in <sepp>+
- +
-Note: somtstabNextName version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtcreateMemBuf, somtcreateMemBufSL function ===== +
- +
-<code c> +
-SOMEXTERN void somtcreateMemBuf(MemBuf **membufp, size_t bufsize, long stabsize); +
-SOMEXTERN void SOMLINK somtcreateMemBufSL(MemBuf **membufp, size_t bufsize, long stabsize); +
-</code> +
- +
-Note: somtcreateMemBuf version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtcreateStab, somtcreateStabSL function ===== +
- +
-<code> +
-SOMEXTERN void somtcreateStab(Stab *stab, long stabsize, long entrysize); +
-SOMEXTERN void SOMLINK somtcreateStabSL(Stab *stab, long stabsize, long entrysize); +
-</code> +
- +
-Initialize symbol table structure <stab> using hash index size <stabsize> and entry size <entrysize>+
- +
-Note: somtcreateStab version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somticstrcmp, somticstrcmpSL function ===== +
- +
-<code> +
-SOMEXTERN int somticstrcmp(char *s, char *t) +
-SOMEXTERN int SOMLINK somticstrcmpSL(char *s, char *t); +
-</code> +
- +
-Alias of C stricmp. +
- +
-Note: somticstrcmp version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtaddEntryBuf, somtaddEntryBufSL function ===== +
- +
-<code> +
-SOMEXTERN void * somtaddEntryBuf(Stab *stab, char *name, void *ep, void *buf, size_t len); +
-SOMEXTERN void * SOMLINK somtaddEntryBufSL(Stab *stab, char *name, void *ep, void *buf, size_t len); +
-</code> +
- +
-Add entry <ep> with name <name> to symbol table <stab> to buffer <buf> with size <len> +
- +
-Note: somtaddEntryBuf version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== somtfreeStab, somtfreeStabSL function ===== +
- +
-<code c> +
-SOMEXTERN void somtfreeStab(Stab *stab, BOOL freeEp); +
-SOMEXTERN void SOMLINK somtfreeStabSL(Stab *stab, BOOL freeEp); +
-</code> +
- +
-Note: somtfreeStab version uses default compiler calling convention. For IBM SOM 3.0 for NT it is Optlink. +
- +
-===== 3. somFree Emitter Framework ===== +
- +
-==== SOMTAttributeEntryC Class ==== +
- +
-=== somtIsReadonly attribute === +
- +
-<code> +
-readonly attribute boolean somtIsReadonly; +
-</code> +
- +
-Whether the attribute is readonly. +
- +
-=== somtAttribType attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtAttribType; +
-</code> +
- +
-The type of the attribute.  This does not include pointer stars or array declarators.  To get the "full" type, get each attribute declarator and get the somtType attribute. +
- +
-=== somtGetFirstAttributeDeclarator method === +
- +
-<code> +
-SOMTDataEntryC somtGetFirstAttributeDeclarator(); +
-</code> +
- +
-The first attribute declarator for this attribute declaration. +
- +
-=== somtGetNextAttributeDeclarator method === +
- +
-<code> +
-SOMTDataEntryC somtGetNextAttributeDeclarator(); +
-</code> +
- +
-The next attribute declarator for this attribute declaration, relative to the previous call to this method or somtGetFirstAttributeDeclarator. +
- +
-=== somtGetFirstGetMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetFirstGetMethod(); +
-</code> +
- +
-The first get method for this attribute declaration. +
- +
-=== somtGetNextGetMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetNextGetMethod(); +
-</code> +
- +
-The next get method for this attribute declaration, relative to the previous call to this method or  somtGetFirstGetMethod. +
- +
-=== somtGetFirstSetMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetFirstSetMethod(); +
-</code> +
- +
-The first set method for this attribute declaration. +
- +
-=== somtGetNextSetMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetNextSetMethod(); +
-</code> +
- +
-The next set method for this attribute declaration, relative to the previous call to this method or  somtGetFirstSetMethod. +
- +
- +
-==== SOMTBaseClassEntryC Class ==== +
- +
-=== somtBaseClassDef attribute === +
- +
-<code> +
-readonly attribute SOMTClassEntryC somtBaseClassDef; +
-</code> +
- +
-Returns the class definition entry for the Base class named in this entry. +
- +
-==== SOMTClassEntryC Class ==== +
- +
-=== somtSourceFileName attribute === +
- +
-<code> +
-readonly attribute string somtSourceFileName; +
-</code> +
-   +
-Returns the name of file containing the definition of this class. +
- +
-=== somtMetaClassEntry attribute === +
- +
-<code> +
-readonly attribute SOMTMetaClassEntryC somtMetaClassEntry; +
-</code> +
-   +
-Returns the entry for the meta class statement in class definition or NULL if there is no meta class statement. +
- +
-Note: the SOM architecture requires that all classes have a meta class, however <SOMClass> is its own metaclass. Thus, any attempt to walk up the metaclass chain must terminate when it finds a class that is its own meta class, otherwise an infinite loop is possible. +
- +
-=== somtClassModule attribute === +
- +
-<code> +
-readonly attribute SOMTModuleEntryC somtClassModule; +
-</code> +
- +
-The module that contains this class, or NULL if there is not one. +
- +
- +
-=== somtNewMethodCount attribute === +
- +
-<code> +
-readonly attribute long somtNewMethodCount; +
-</code> +
-   +
-Returns the number of new methods introduced in this class definition. +
- +
-=== somtLocalInclude attribute === +
- +
-<code> +
-readonly attribute boolean somtLocalInclude; +
-</code> +
-   +
-Returns true if the header files associated with this class definition should be included using local search, eg, "name.h" instead of <name.h> +
- +
-=== somtPrivateMethodCount attribute === +
- +
-<code> +
-readonly attribute long somtPrivateMethodCount; +
-</code> +
-   +
-Returns number of new private methods in class. +
- +
-=== somtStaticMethodCount attribute === +
- +
-<code> +
-readonly attribute long somtStaticMethodCount; +
-</code> +
-   +
-Returns number of new static methods in class. +
- +
-=== somtOverrideMethodCount attribute === +
- +
-<code> +
-readonly attribute long somtOverrideMethodCount; +
-</code> +
-   +
-Returns number of new override methods in class. +
- +
- +
-=== somtProcMethodCount attribute === +
- +
-<code> +
-readonly attribute long somtProcMethodCount; +
-</code> +
- +
-Returns number of procedure methods for class. +
- +
-=== somtVAMethodCount attribute === +
- +
-<code> +
-readonly attribute long somtVAMethodCount; +
-</code> +
-   +
-Returns number of VarArg methods for class. +
- +
-=== somtBaseCount attribute === +
- +
-<code> +
-readonly attribute long somtBaseCount; +
-</code> +
- +
-Returns number of base classes for class. +
- +
-=== somtExternalDataCount attribute === +
- +
-<code> +
-readonly attribute long somtExternalDataCount; +
-</code> +
- +
-Returns number of external (public or private) data members for class. +
- +
- +
-=== somtPublicDataCount attribute === +
- +
-<code> +
-readonly attribute long somtPublicDataCount; +
-</code> +
-   +
-Returns number of public data members for class. +
- +
-=== somtPrivateDataCount attribute === +
- +
-<code> +
-readonly attribute long somtPrivateDataCount; +
-</code> +
- +
-Returns number of private data members for class. +
- +
-=== somtMetaclassFor attribute === +
- +
-<code> +
-readonly attribute SOMTClassEntryC somtMetaclassFor; +
-</code> +
- +
-If this is a metaclass, the class for which it is a metaclass, else NULL. +
- +
- +
-=== somtForwardRef attribute === +
- +
-<code> +
-readonly attribute boolean somtForwardRef; +
-</code> +
- +
-Whether this is a forward reference or not. +
- +
-=== somtGetFirstBaseClass method === +
- +
-<code> +
-SOMTBaseClassEntryC somtGetFirstBaseClass(); +
-</code> +
-   +
-Returns the entry for the "left most" direct base class form for this class, if it has one and NULL otherwise. +
- +
-Note: <SOMObject> does not have any base classes and therefore will terminate an attempt to walk up the base class chain. +
- +
- +
-=== somtGetNextBaseClass method === +
- +
-<code> +
-SOMTBaseClassEntryC somtGetNextBaseClass(); +
-</code> +
-   +
-Returns the entry for the next direct base class form of this class, if it has one and NULL otherwise.  The direct base classes of a derived class are ordered from "left to right"+
- +
-=== somtGetFirstReleaseName method === +
- +
-<code> +
-string somtGetFirstReleaseName(); +
-</code> +
- +
-Returns the first name in the release order statement for this entry if it has one and NULL otherwise. +
- +
-=== somtGetNextReleaseName method === +
- +
-<code> +
-string somtGetNextReleaseName(); +
-</code> +
-   +
-Returns the next name in the release order statement for this entry if it has one and NULL otherwise. +
- +
-=== somtGetReleaseNameList method === +
- +
-<code> +
-long somtGetReleaseNameList(in string buffer); +
-</code> +
-   +
-Puts all the release names in <buffer> in template output form, buffer must be large enough, no tests are made.  The number of release names is returned. +
- +
-=== somtGetFirstPassthru method === +
- +
-<code> +
-SOMTPassthruEntryC somtGetFirstPassthru(); +
-</code> +
- +
-Returns the first passthru entry for this class definition if it has one and NULL otherwise. +
- +
-=== somtGetNextPassthru method === +
- +
-<code> +
-SOMTPassthruEntryC somtGetNextPassthru(); +
-</code> +
- +
-Returns the next passthru entry for this class definition if it has one and NULL otherwise.  The passthru entry will be returned in an order based on the appearence of passthru statements in the class definition. +
- +
-=== somtGetFirstData method === +
- +
-<code> +
-SOMTDataEntryC somtGetFirstData(); +
-</code> +
- +
-Returns the first data entry for this class definition if it has one and NULL otherwise. +
- +
-=== somtGetNextData method === +
- +
-<code> +
-SOMTDataEntryC somtGetNextData(); +
-</code> +
-   +
-Returns the next data entry for this class definition if it has one and NULL otherwise.  The data entries will be returned in an order based on the appearence data member declarations in the class definition. +
- +
-=== somtGetFirstStaticData method === +
- +
-<code> +
-SOMTDataEntryC somtGetFirstStaticData(); +
-</code> +
- +
-Returns the first static data entry for this class definition if it has one and NULL otherwise. Static data is handled specialy in SOM so a different accessor method is provided. +
- +
-=== somtGetNextStaticData method === +
- +
-<code> +
-SOMTDataEntryC somtGetNextStaticData(); +
-</code> +
- +
-Returns the next static data entry for this class definition if it has one and NULL otherwise.  The data entries will be returned in an order based on the release order +
- +
-=== somtGetFirstMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetFirstMethod(); +
-</code> +
- +
-Returns the first method entry for this class definition if it has one and NULL otherwise.  Method entries may be for new or overridden methods. +
- +
-=== somtGetNextMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetNextMethod(); +
-</code> +
- +
-Returns the next method entry for this class definition if it has one and NULL otherwise.  The method entries will be returned in an order based on the appearence method declarations in the class definition.  Method entries may be for new or overridden methods. +
- +
-=== somtGetFirstInheritedMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetFirstInheritedMethod(); +
-</code> +
- +
-Returns the first inherited and not overridden method entry for this class definition if it has one and NULL otherwise. +
- +
-=== somtGetNextInheritedMethod method === +
- +
-<code> +
-SOMTMethodEntryC somtGetNextInheritedMethod(); +
-</code> +
- +
-Returns the next inherited and not overridden method entry for this class definition if it has one and NULL otherwise.  The method entries will be returned in an unspecified, but constant order. +
- +
-=== somtGetFirstAttribute method === +
- +
-<code> +
-SOMTAttributeEntryC somtGetFirstAttribute(); +
-</code> +
- +
-=== somtGetNextAttribute method === +
- +
-<code> +
-SOMTAttributeEntryC somtGetNextAttribute(); +
-</code> +
- +
-=== somtGetFirstStruct method === +
- +
-<code> +
-SOMTStructEntryC somtGetFirstStruct(); +
-</code> +
- +
-=== somtGetNextStruct method === +
- +
-<code> +
-SOMTStructEntryC somtGetNextStruct(); +
-</code> +
- +
-=== somtGetFirstTypedef method === +
- +
-<code> +
-SOMTTypedefEntryC somtGetFirstTypedef(); +
-</code> +
- +
-=== somtGetNextTypedef method === +
- +
-<code> +
-SOMTTypedefEntryC somtGetNextTypedef(); +
-</code> +
- +
-=== somtGetFirstUnion method === +
- +
-<code> +
-SOMTUnionEntryC somtGetFirstUnion(); +
-</code> +
- +
-=== somtGetNextUnion method === +
- +
-<code> +
-SOMTUnionEntryC somtGetNextUnion(); +
-</code> +
- +
-=== somtGetFirstEnum method === +
- +
-<code> +
-SOMTEnumEntryC somtGetFirstEnum(); +
-</code> +
- +
-=== somtGetNextEnum method === +
- +
-<code> +
-SOMTEnumEntryC somtGetNextEnum(); +
-</code> +
- +
-=== somtGetFirstConstant method === +
- +
-<code> +
-SOMTConstEntryC somtGetFirstConstant(); +
-</code> +
- +
-=== somtGetNextConstant method === +
- +
-<code> +
-SOMTConstEntryC somtGetNextConstant(); +
-</code> +
- +
-=== somtGetFirstSequence method === +
- +
-<code> +
-SOMTSequenceEntryC somtGetFirstSequence(); +
-</code> +
- +
-=== somtGetNextSequence method === +
- +
-<code> +
-SOMTSequenceEntryC somtGetNextSequence(); +
-</code> +
- +
-=== somtGetFirstPubdef method === +
- +
-<code> +
-SOMTEntryC somtGetFirstPubdef(); +
-</code> +
- +
-=== somtGetNextPubdef method === +
- +
-<code> +
-SOMTEntryC somtGetNextPubdef(); +
-</code> +
- +
-=== somtFilterNew method === +
- +
-<code> +
-boolean somtFilterNew(in SOMTMethodEntryC entry); +
-</code> +
-   +
-Returns 1 if entry is new in the class. +
- +
-=== somtFilterOverridden method === +
- +
-<code> +
-boolean somtFilterOverridden(in SOMTMethodEntryC entry); +
-</code> +
-   +
-Returns 1 if entry is an overriding method of the class. +
- +
-=== somtFilterPrivOrPub method === +
- +
-<code> +
-boolean somtFilterPrivOrPub(in SOMTCommonEntryC entry); +
-</code> +
-   +
-Returns TRUE if entry is Private or Public. +
- +
-==== SOMTCommonEntryC Class ==== +
- +
-=== somtTypeObj attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtTypeObj; +
-</code> +
- +
-The object representing the base type of the entry. This does not include pointer stars or array declarators. +
- +
-=== somtPtrs attribute === +
- +
-<code> +
-readonly attribute string somtPtrs; +
-</code> +
- +
-The string of stars associated with the entry's type. For example, an object of type "foo" would have somtPtrs = NULL, type "foo %%*%%" would have somtPtrs = "%%*%%", type "foo %%**%%" would have somtPtrs = "%%**%%", etc. +
- +
-=== somtArrayDimsString attribute === +
- +
-<code> +
-readonly attribute string somtArrayDimsString; +
-</code> +
- +
-Array dimensions in string form. +
- +
-=== somtGetFirstArrayDimension method === +
- +
-<code> +
-unsigned long somtGetFirstArrayDimension(); +
-</code> +
- +
-The first array dimension, for items of type array. Zero indicates that the item is not an array. +
- +
-=== somtGetNextArrayDimension method === +
- +
-<code> +
-unsigned long somtGetNextArrayDimension(); +
-</code> +
- +
-The next array dimension, for items of type array, relative to the previous call to this method or to somtGetFirstArrayDimension.  Zero indicates no more dimensions. +
- +
-=== somtSourceText attribute === +
- +
-<code> +
-readonly attribute string somtSourceText; +
-</code> +
-   +
-The un-parsed source text for this entry, with leading and trailing white space removed.  For attribute/typedef declarators and for user-defined types, this attribute only provides the source text for the entry's name.  For methods, arguments,  and instance variables, however, this attribute provides the  full definition. +
- +
-=== somtType attribute === +
- +
-<code> +
-readonly attribute string somtType; +
-</code> +
-   +
-The IDL type for this entry in string form. For methods this is the return type.  For data or parameters this is the type of the data item or parameter. For user-defined types, this is the type specification. It is of the form:   <typename><pointer-stars> <array-declarators> +
- +
-=== somtVisibility attribute === +
- +
-<code> +
-readonly attribute somtVisibilityT somtVisibility; +
-</code> +
-   +
-The visibility of this entry.  Note: the visibility of parameter entries will always be public, and methods can never be internal. +
- +
- +
-=== somtIsArray method === +
- +
-<code> +
-boolean somtIsArray(out long size); +
-</code> +
-   +
-Returns 1 (true) if the type involves an array.  When the type involves an array then <size> is set to be the size of the array. +
- +
-=== somtIsPointer method === +
- +
-<code> +
-boolean somtIsPointer(); +
-</code> +
- +
-Returns 1 (true) if the type involves a pointer, and 0 (false) otherwise +
- +
-==== SOMTConstEntryC Class ==== +
- +
-=== somtConstTypeObj attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtConstTypeObj; +
-</code> +
- +
-A pointer to an object representing the type of the const. +
- +
-=== somtConstType attribute === +
- +
-<code> +
-readonly attribute string somtConstType; +
-</code> +
- +
-The type of the constant's value. +
- +
- +
-=== somtConstStringVal attribute === +
- +
-<code> +
-readonly attribute string somtConstStringVal; +
-</code> +
- +
-The string value of the constant (unevaluated). +
- +
-=== somtConstNumVal attribute === +
- +
-<code> +
-readonly attribute unsigned long somtConstNumVal; +
-</code> +
- +
-The number value of the constant. This attribute is not valid if the value cannot be stored in an unsigned long (string, float, double, negative). The somtConstIsNegative attribute can be used to determine if the value is negative.  The somtConstType attribute can be used to determine whether the value is a float or double. +
- +
- +
-=== somtConstNumNegVal attribute === +
- +
-<code> +
-readonly attribute long somtConstNumNegVal; +
-</code> +
- +
-The number value of the constant, if negative. +
- +
-=== somtConstIsNegative attribute === +
- +
-<code> +
-readonly attribute boolean somtConstIsNegative; +
-</code> +
- +
-Whether the constant's value is a negative integer and must be obtained using somtConstNumNegVal rather than somtConstNumVal. +
- +
- +
-=== somtConstVal attribute === +
- +
-<code> +
-readonly attribute string somtConstVal; +
-</code> +
- +
-The string value of the constant (evaluated). The "get" method for this attribute returns a string whose ownership is transferred to the caller. +
- +
-==== SOMTDataEntryC Class ==== +
- +
-=== somtIsSelfRef attribute === +
- +
-<code> +
-readonly attribute boolean somtIsSelfRef; +
-</code> +
- +
-Whether a declarator of a struct is self-referential. +
- +
-==== SOMTEmitC Class ==== +
- +
-=== somtTemplate attribute === +
- +
-<code> +
-attribute SOMTTemplateOutputC somtTemplate; +
-</code> +
- +
-The template is to provide template output and maintains a symbol table that provides a sort of global context for the emitter. +
- +
-=== somtTargetFile attribute === +
- +
-<code> +
-attribute FILE *somtTargetFile; +
-</code> +
- +
-The target file is the one to which all emitter output is to be directed. +
- +
-=== somtTargetClass attribute === +
- +
-<code> +
-attribute SOMTClassEntryC somtTargetClass; +
-</code> +
- +
-The target class is the class definition for which code is to be emitted. +
- +
-=== somtTargetModule attribute === +
- +
-<code> +
-attribute SOMTModuleEntryC somtTargetModule; +
-</code> +
- +
-The target module is the module definition for which code is to be emitted. +
- +
- +
-=== somtTargetType attribute === +
- +
-<code> +
-attribute SOMTTargetTypeT somtTargetType; +
-</code> +
- +
-The target type indicates what type of output file is being produced, public, private, or implementation.  This allows the same emitter subclass to produce several different output files that generally differ only in how much of the class definition they cover. Eg, .csc, .sc, and .psc. This is attribute is for OIDL compatibility only. +
- +
- +
-=== somtEmitterName attribute === +
- +
-<code> +
-attribute string somtEmitterName; +
-</code> +
- +
-The short name of the emitter (the name used to invoke it via the SOM Compiler.  Typically this is the file stem of the subclass of SOMTEmitC. This attribute should be set in the driver program that runs the emitter.  It is used to filter passthrus so that only passthrus directed to a particular emitter are seen by it. +
- +
-=== somtGenerateSections method === +
- +
-<code> +
-boolean somtGenerateSections(); +
-</code> +
- +
-Calls each of the section methods in order.  The order is: +
- +
-     somtEmitProlog +
-     when emitting a class: +
-        somtEmitClass +
-        somtEmitBase +
-        somtEmitMeta +
-     somtEmitConstant +
-     somtEmitTypedef +
-     somtEmitStruct +
-     somtEmitUnion +
-     somtEmitEnum +
-     when emitting a class: +
-        somtEmitAttribute +
-        somtEmitMethod +
-        somtEmitRelease +
-        somtEmitPassthru +
-        somtEmitData +
-     when emitting a module: +
-         somtEmitInterface +
-         somtEmitModule +
-     somtEmitEpilog +
-   +
-This method will need to be overridden by many emitters in order to rearange the order of the sections and to add or delete sections. +
- +
-Note: repeating sections such as methods, data, and passthru, have a prolog and epilog method as well. The prolog method is called before the first sections is processed and the epilog method is called after the last section is processed. +
- +
-=== somtOpenSymbolsFile method === +
- +
-<code> +
-FILE* somtOpenSymbolsFile(in string file, in string mode); +
-</code> +
-   +
-This method attempts to open the symbols file. If file doesn't exist then it will attempt to find it in the directories specified in the SMINCLUDE environment variable. If the file can be found a FILE * pointer is returned, otherwise NULL is returned. +
- +
-=== somtSetPredefinedSymbols method === +
- +
-<code> +
-void somtSetPredefinedSymbols(); +
-</code> +
-   +
-Set predefined symbols that are used for such things as section names etc. +
- +
-=== somtFileSymbols method === +
- +
-<code> +
-void somtFileSymbols(); +
-</code> +
-   +
-Symbols that are common to the file.  This includes the target class symbols, and the metaclass symbols, and special symbols like <timeStamp> IE, all symbols that have a single definition. +
- +
- +
-=== somtEmitProlog method === +
- +
-<code> +
-void somtEmitProlog(); +
-</code> +
- +
-=== somtEmitBaseIncludesProlog method === +
- +
-<code> +
-void somtEmitBaseIncludesProlog(); +
-</code> +
- +
-=== somtEmitBaseIncludes method === +
- +
-<code> +
-void somtEmitBaseIncludes(in SOMTBaseClassEntryC base); +
-</code> +
- +
-=== somtEmitBaseIncludesEpilog method === +
- +
-<code> +
-void somtEmitBaseIncludesEpilog(); +
-</code> +
- +
-=== somtEmitMetaInclude method === +
- +
-<code> +
-void somtEmitMetaInclude(); +
-</code> +
- +
-=== somtEmitClass method === +
- +
-<code> +
-void somtEmitClass(); +
-</code> +
- +
-=== somtEmitMeta method === +
- +
-<code> +
-void somtEmitMeta(); +
-</code> +
- +
-=== somtEmitBaseProlog method === +
- +
-<code> +
-void somtEmitBaseProlog(); +
-</code> +
- +
-=== somtEmitBase method === +
- +
-<code> +
-void somtEmitBase(in SOMTBaseClassEntryC base); +
-</code> +
- +
-=== somtEmitBaseEpilog method === +
- +
-<code> +
-void somtEmitBaseEpilog(); +
-</code> +
- +
-=== somtEmitPassthruProlog method === +
- +
-<code> +
-void somtEmitPassthruProlog(); +
-</code> +
- +
-=== somtEmitPassthru method === +
- +
-<code> +
-void somtEmitPassthru(in SOMTPassthruEntryC entry); +
-</code> +
- +
-=== somtEmitPassthruEpilog method === +
- +
-<code> +
-void somtEmitPassthruEpilog(); +
-</code> +
- +
-=== somtEmitRelease method === +
- +
-<code> +
-void somtEmitRelease(); +
-</code> +
- +
-=== somtEmitDataProlog method === +
- +
-<code> +
-void somtEmitDataProlog(); +
-</code> +
- +
-=== somtEmitData method === +
- +
-<code> +
-void somtEmitData(in SOMTDataEntryC entry); +
-</code> +
- +
-=== somtEmitDataEpilog method === +
- +
-<code> +
-void somtEmitDataEpilog(); +
-</code> +
- +
-=== somtEmitAttributeProlog method === +
- +
-<code> +
-void somtEmitAttributeProlog(); +
-</code> +
- +
-=== somtEmitAttribute method === +
- +
-<code> +
-void somtEmitAttribute(in SOMTAttributeEntryC att); +
-</code> +
- +
-=== somtEmitAttributeEpilog method === +
- +
-<code> +
-void somtEmitAttributeEpilog(); +
-</code> +
- +
-=== somtEmitConstantProlog method === +
- +
-<code> +
-void somtEmitConstantProlog(); +
-</code> +
- +
-=== somtEmitConstant method === +
- +
-<code> +
-void somtEmitConstant(in SOMTConstEntryC con); +
-</code> +
- +
- +
-=== somtEmitConstantEpilog method === +
- +
-<code> +
-void somtEmitConstantEpilog(); +
-</code> +
- +
-=== somtEmitTypedefProlog method === +
- +
-<code> +
-void somtEmitTypedefProlog(); +
-</code> +
- +
-=== somtEmitTypedef method === +
- +
-<code> +
-void somtEmitTypedef(in SOMTTypedefEntryC td); +
-</code> +
- +
-=== somtEmitTypedefEpilog method === +
- +
-<code> +
-void somtEmitTypedefEpilog(); +
-</code> +
- +
-=== somtEmitStructProlog method === +
- +
-<code> +
-void somtEmitStructProlog(); +
-</code> +
- +
-=== somtEmitStruct method === +
- +
-<code> +
-void somtEmitStruct(in SOMTStructEntryC struc); +
-</code> +
- +
-=== somtEmitStructEpilog method === +
- +
-<code> +
-void somtEmitStructEpilog(); +
-</code> +
- +
-=== somtEmitUnionProlog method === +
- +
-<code> +
-void somtEmitUnionProlog(); +
-</code> +
- +
-=== somtEmitUnion method === +
- +
-<code> +
-void somtEmitUnion(in SOMTUnionEntryC un); +
-</code> +
- +
-=== somtEmitUnionEpilog method === +
- +
-<code> +
-void somtEmitUnionEpilog(); +
-</code> +
- +
-=== somtEmitEnumProlog method === +
- +
-<code> +
-void somtEmitEnumProlog(); +
-</code> +
- +
-=== somtEmitEnum method === +
- +
-<code> +
-void somtEmitEnum(in SOMTEnumEntryC en); +
-</code> +
- +
-=== somtEmitEnumEpilog method === +
- +
-<code> +
-void somtEmitEnumEpilog(); +
-</code> +
- +
-=== somtEmitInterfaceProlog method === +
- +
-<code> +
-void somtEmitInterfaceProlog(); +
-</code> +
- +
-=== somtEmitInterface method === +
- +
-<code> +
-void somtEmitInterface(in SOMTClassEntryC intfc); +
-</code> +
- +
-=== somtEmitInterfaceEpilog method === +
- +
-<code> +
-void somtEmitInterfaceEpilog(); +
-</code> +
- +
-=== somtEmitModuleProlog method === +
- +
-<code> +
-void somtEmitModuleProlog(); +
-</code> +
- +
-=== somtEmitModule method === +
- +
-<code> +
-void somtEmitModule(in SOMTModuleEntryC mod); +
-</code> +
- +
-=== somtEmitModuleEpilog method === +
- +
-<code> +
-void somtEmitModuleEpilog(); +
-</code> +
- +
-=== somtEmitMethodsProlog method === +
- +
-<code> +
-void somtEmitMethodsProlog(); +
-</code> +
- +
-=== somtEmitMethods method === +
- +
-<code> +
-void somtEmitMethods(in SOMTMethodEntryC method); +
-</code> +
- +
-=== somtEmitMethodsEpilog method === +
- +
-<code> +
-void somtEmitMethodsEpilog(); +
-</code> +
- +
-=== somtEmitMethod method === +
- +
-<code> +
-void somtEmitMethod(in SOMTMethodEntryC entry); +
-</code> +
- +
-=== somtEmitEpilog method === +
- +
-<code> +
-void somtEmitEpilog(); +
-</code> +
- +
-=== somtScanBases method === +
- +
-<code> +
-boolean somtScanBases(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanBaseIncludes method === +
- +
-<code> +
-boolean somtScanBaseIncludes(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtCheckVisibility method === +
- +
-<code> +
-boolean somtCheckVisibility(in SOMTMethodEntryC entry); +
-</code> +
- +
-Return 1 (true) if <entry> should be visible in the current target file.  This method is used by each of the following filter methods that are concerned with visibility. +
- +
-The default rule for visibility is: +
-  * only private methods are visible in private target files, +
-  * only public methods are visibile in public target files, +
-  * all methods are visibile in implementation or <somtAllE> target files. +
- +
-=== somtNew method === +
- +
-<code> +
-boolean somtNew(in SOMTMethodEntryC entry); +
-</code> +
- +
-Returns 1 (true) if <entry> is a method introduced by the target class and its visibility matches <somtTargetType> (somtImplementationE matches both private and public) +
- +
-=== somtImplemented method === +
- +
-<code> +
-boolean somtImplemented(in SOMTMethodEntryC entry); +
-</code> +
- +
-Returns 1 (true) if <entry> is a method introduced or overridden by the target class and its visibility matches <somtTargetType> (somtImplementationE matches both private and public) +
- +
-=== somtOverridden method === +
- +
-<code> +
-boolean somtOverridden(in SOMTMethodEntryC entry); +
-</code> +
- +
-Returns 1 (true) if <entry> is an overridding method of the target class and its visibility matches <somtTargetType> (somtImplementationE matches both private and public) +
- +
-=== somtInherited method === +
- +
-<code> +
-boolean somtInherited(in SOMTMethodEntryC entry); +
-</code> +
- +
-Returns 1 (true) if <entry> is inherited by the target class and its visibility matches <somtTargetType> (somtImplementationE matches both private and public) +
- +
-=== somtAllVisible method === +
- +
-<code> +
-boolean somtAllVisible(in SOMTMethodEntryC entry); +
-</code> +
- +
-Returns 1 (true) if <entry> is supported by the target class and its visibility matches <somtTargetType> (somtImplementationE matches both private and public) +
- +
-=== somtAll method === +
- +
-<code> +
-boolean somtAll(in SOMTMethodEntryC entry); +
-</code> +
- +
-Returns 1 (true) if <entry> is supported by the target class. +
- +
-=== somtNewNoProc method === +
- +
-<code> +
-boolean somtNewNoProc(in SOMTEntryC entry); +
-</code> +
- +
-Returns 1 (true) if somtNew does and the method IS NOT a direct call Procedure. +
- +
-=== somtPrivOrPub method === +
- +
-<code> +
-boolean somtPrivOrPub(in SOMTEntryC entry); +
-</code> +
- +
-Returns 1 (true) if entry is Private or Public. +
- +
-=== somtNewProc method === +
- +
-<code> +
-boolean somtNewProc(in SOMTEntryC entry); +
-</code> +
- +
-Returns 1 (true) if somtNew does and the method IS a direct call Procedure. +
- +
-=== somtLink method === +
- +
-<code> +
-boolean somtLink(in SOMTEntryC entry); +
-</code> +
- +
-Returns 1 (true) if "nolink" is not set. +
- +
-=== somtVA method === +
- +
-<code> +
-boolean somtVA(in SOMTEntryC entry); +
-</code> +
- +
-Returns 1 (true) if entry is a VarArgs method. +
- +
-=== somtScanMethods method === +
- +
-<code> +
-boolean somtScanMethods(in string filter, in string prolog, in string each, in string epilog, in boolean forceProlog); +
-</code> +
-   +
-Will only call <each> on methods accepted by <filter>. If <forceProlog> is not true then the prolog and epilog emiters will be called only if there is at least one method that passes the filter. +
- +
-=== somtScanConstants method === +
- +
-<code> +
-boolean somtScanConstants(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanTypedefs method === +
- +
-<code> +
-boolean somtScanTypedefs(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanStructs method == +
- +
-<code> +
-boolean somtScanStructs(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanUnions method === +
- +
-<code> +
-boolean somtScanUnions(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanEnums method === +
- +
-<code> +
-boolean somtScanEnums(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanData method === +
- +
-<code> +
-boolean somtScanData(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanAttributes method === +
- +
-<code> +
-boolean somtScanAttributes(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanInterfaces method === +
- +
-<code> +
-boolean somtScanInterfaces(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanModules method === +
- +
-<code> +
-boolean somtScanModules(in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtScanPassthru method === +
- +
-<code> +
-boolean somtScanPassthru(in boolean before, in string prolog, in string each, in string epilog); +
-</code> +
- +
-=== somtEmitFullPassthru method === +
- +
-<code> +
-void somtEmitFullPassthru(in boolean before, in string language); +
-</code> +
- +
-Emits each passthru section defined for the language and targetType, and the result of the somtIsBeforePassthru method is equal to the before parameter.  (before = 1(true), or before = 0(false), i.e. after.) +
- +
-=== somtScanDataF method === +
- +
-<code> +
-boolean somtScanDataF(in string filter, in string prolog, in string each, in string epilog, in boolean forceProlog); +
-</code> +
-   +
-This method is like somtScanData but it also provides a paramater for a filter method. +
- +
-=== somtScanBasesF method === +
- +
-<code> +
-boolean somtScanBasesF(in string filter, in string prolog, in string each, in string epilog, in boolean forceProlog); +
-</code> +
-   +
-This method is like somtScanBases but it also provides a paramater for a filter method. +
- +
-=== somtGetGlobalModifierValue method === +
- +
-<code> +
-string somtGetGlobalModifierValue(in string modifierName); +
-</code> +
- +
-Returns the value of the specified global modifier. +
- +
-Global modifiers are specified when the SOM Compiler is invoked, via the "-m" option.  For example,  +
- +
-  sc -m"foo=bar"  file.idl +
- +
-specifies to the SOM Compiler and the emitters being run that the global modifier "foo" has the value "bar." +
- +
-Values of global modifiers are transient; they last only for the duration of the compile for which they were specified. +
- +
-If a modifier is specified in the "sc" command with no value, as in  +
- +
-  sc -mfoo file.idl +
-   +
-then the result of this method will be non-NULL. +
- +
-If no such modifier is specified, then the result is NULL. +
- +
-Older SOM compiler version uses "-a" option which is same as "-m" option. +
- +
-=== somtGetFirstGlobalDefinition method === +
- +
-<code> +
-SOMTEntryC somtGetFirstGlobalDefinition(); +
-</code> +
- +
-Returns the first type or constant definition that is not associated with any interface or module. +
- +
-These global definitions must be surrounded by the somemittypes pragmas for them to be visible via this method. +
-E.g., +
- +
-<code c> +
-#pragma somemittypes on +
-.... +
-#pragma someemittypes off +
-</code> +
- +
-The list of global definitions returned by this method and the somtGetNextGlobalDefinition method may include entries for forward declarations as well as typedefs and constants. +
- +
-Global structs and unions are also included in the list. +
- +
-=== somtGetNextGlobalDefinition method === +
- +
-<code> +
-SOMTEntryC somtGetNextGlobalDefinition(); +
-</code> +
- +
-Returns the next type or constant definition that is not associated with any interface or module, relative to a previous call to somtGetFirstGlobalDefinition or somtGetNextGlobalDefinition. +
- +
- +
-==== SOMTEntryC Class ==== +
- +
-=== somtEntryName attribute === +
- +
-<code> +
-attribute string somtEntryName; +
-</code> +
- +
-The name associated with this entry.  Eg, the name of the data item, the class, the method, the type, etc. +
- +
-=== somtElementType attribute === +
- +
-<code> +
-attribute SOMTTypes somtElementType; +
-</code> +
- +
-Returns the type of this entry. This is not datatype, but entry type (method, class,  passthru, etc.). The value is defined by SOMTTypes. +
- +
-=== somtElementTypeName attribute === +
- +
-<code> +
-readonly attribute string somtElementTypeName; +
-</code> +
- +
-String version of somtElementType. +
- +
-=== somtEntryComment attribute === +
- +
-<code> +
-readonly attribute string somtEntryComment; +
-</code> +
- +
-Returns the comment associated with this entry, or NULL is this entry has no associated comment.  Comments will have comment delimitors removed, but will retain newline characters as specified in the source file. (use smLookupComment) +
- +
-=== somtSourceLineNumber attribute === +
- +
-<code> +
-readonly attribute unsigned long somtSourceLineNumber; +
-</code> +
- +
-Returns the line number in the source file where this entry's syntactic form ended. +
- +
-=== somtTypeCode attribute === +
- +
-<code> +
-readonly attribute TypeCode somtTypeCode; +
-</code> +
- +
-The typecode, if appropriate, or NULL. +
- +
-=== somtIsReference attribute === +
- +
-<code> +
-readonly attribute boolean somtIsReference; +
-</code> +
- +
-Whether the entry is just a reference to the real type (TRUE) rather than a declaration of it (FALSE). +
- +
-=== somtIDLScopedName attribute === +
- +
-<code> +
-readonly attribute string somtIDLScopedName; +
-</code> +
- +
-The IDL scoped name of the entry (using double colon as delimiter). +
- +
-=== somtCScopedName attribute === +
- +
-<code> +
-readonly attribute string somtCScopedName; +
-</code> +
- +
-The C scoped name of the entry (using underscore as delimiter). +
- +
-=== somtGetModifierValue method === +
- +
-<code> +
-string somtGetModifierValue(in string modifierName); +
-</code> +
- +
-Returns the value of the named modifier if this entry has the named modifier and NULL otherwise. Note: if the modifier is present but does not have a value then a value of <'\1'> is returned. +
- +
-=== somtGetFirstModifier method === +
- +
-<code> +
-boolean somtGetFirstModifier(inout string modifierName, inout string modifierValue); +
-</code> +
- +
-Returns the first modifier associated with this entry.  1 (true) is returned if the entry has at least one modifier and 0 (false) otherwise. +
- +
-=== somtGetNextModifier method === +
- +
-<code> +
-boolean somtGetNextModifier(inout string modifierName, inout string modifierValue); +
-</code> +
-   +
-Returns the next modifier (with respect to the last call to <somtGetNextModifier> or <somtGetFirstModifier>) associated with this entry.  1 (true) is returned if the entry had another modifier and 0 (false) otherwise. +
- +
- +
-=== somtFormatModifier method === +
- +
-<code> +
-long somtFormatModifier(in string buffer, in string name, in string value); +
-</code> +
-   +
-Formats the indicated name/value pair into buffer.  Buffer must be big enough to hold all the formatted pair, no checks are made. The number of characters added to buffer are returned (not including the trailing null character). +
- +
-Note: value may be null +
- +
-You will probably never call this method, it is provided so that you can override it to control the format returned in <somtGetModifierList>+
- +
-=== somtGetModifierList method === +
- +
-<code> +
-long somtGetModifierList(in string buffer); +
-</code> +
-  +
-The modifiers for this entry are placed in <buffer> in template list form (newline separated).  Buffer must be big enough to hold all the modifiers, no checks are made. The number of modifiers is returned. +
- +
-=== somtSetSymbolsOnEntry method === +
- +
-<code> +
-long somtSetSymbolsOnEntry(in SOMTEmitC emitter, in string prefix); +
-</code> +
-   +
-Places a number of symbol/value pairs in <t> All the symbols will begin with <prefix>+
- +
-=== somtSetEntryStruct method === +
- +
-<code> +
-void somtSetEntryStruct(inout Entry es); +
-</code> +
-   +
-Sets the entry struct data member. +
- +
-Note, when overridding this method, it is important to call the parent version of the method first and then do your processing. +
- +
-==== SOMTEnumEntryC Class ==== +
- +
-=== somtGetFirstEnumName method === +
- +
-<code> +
-SOMTEnumNameEntryC somtGetFirstEnumName(); +
-</code> +
- +
-=== somtGetNextEnumName method === +
- +
-<code> +
-SOMTEnumNameEntryC somtGetNextEnumName(); +
-</code> +
- +
- +
- +
-==== SOMTEnumNameEntryC Class ==== +
- +
-=== somtEnumPtr attribute === +
- +
-<code> +
-readonly attribute SOMTEnumEntryC somtEnumPtr; +
-</code> +
- +
-A pointer to the enumerator. +
- +
-=== somtEnumVal attribute === +
- +
-<code> +
-readonly attribute unsigned long somtEnumVal; +
-</code> +
- +
-The value of the enumeration. +
- +
-==== SOMTMetaClassEntryC Class ==== +
- +
-=== somtMetaFile attribute === +
- +
-<code> +
-readonly attribute string somtMetaFile; +
-</code> +
- +
-Returns the name of the file containing the definition of the meta class named in this entry. +
- +
-=== somtMetaClassDef attribute === +
- +
-<code> +
-readonly attribute SOMTClassEntryC somtMetaClassDef; +
-</code> +
- +
-Returns the class definition entry for the meta class named in this entry. +
- +
-==== SOMTMethodEntryC Class ==== +
- +
-=== somtIsVarargs attribute === +
- +
-<code> +
-readonly attribute boolean somtIsVarargs; +
-</code> +
- +
-Returns 1 (true) if this method definition has a variable length parameter list. +
- +
-=== somtOriginalMethod attribute === +
- +
-<code> +
-readonly attribute SOMTMethodEntryC somtOriginalMethod; +
-</code> +
- +
-If this is an override method definition (<SOMTOverrideMethodE>) then this is the method definition entry that orginially introduced the method. +
- +
-=== somtOriginalClass attribute === +
- +
-<code> +
-readonly attribute SOMTClassEntryC somtOriginalClass; +
-</code> +
- +
-If this is an override method definition (<SOMTOverrideMethodE>) then this is the class definition entry that orginially introduced the method. +
- +
-=== somtMethodGroup attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtMethodGroup; +
-</code> +
- +
-The group this method is defined in within a class definition. +
- +
-=== somtIsPrivateMethod attribute === +
- +
-<code> +
-readonly attribute boolean somtIsPrivateMethod; +
-</code> +
- +
-Whether or not the method is private. +
- +
-=== somtIsOneway attribute === +
- +
-<code> +
-readonly attribute boolean somtIsOneway; +
-</code> +
- +
-Whether or not the method is oneway. +
- +
-=== somtArgCount attribute === +
- +
-<code> +
-readonly attribute short somtArgCount; +
-</code> +
- +
-The number of arguments for the method. +
- +
-=== somtGetFirstParameter method === +
- +
-<code> +
-SOMTParameterEntryC somtGetFirstParameter(); +
-</code> +
-   +
-Returns the first formal parameter entry for this method if it has one and NULL otherwise.  Note: the target object parameter is not included, therefore the first parameter is really the second parameter from a SOM runtime perspective. +
- +
-=== somtGetNextParameter method === +
- +
-<code> +
-SOMTParameterEntryC somtGetNextParameter(); +
-</code> +
-   +
-Returns the next formal parameter entry for this method if it has one and NULL otherwise. +
- +
- +
-=== somtGetIDLParamList method === +
- +
-<code> +
-string somtGetIDLParamList(in string buffer); +
-</code> +
- +
-Returns the formal parameter list (in IDL syntax) for this method. The parameter list is built in <buffer> and the address of <buffer> is returned. +
- +
-Parameters are delimited with newlines. +
- +
-The method receiver and any implicit method arguments are NOT included. +
- +
-=== somtGetShortCParamList method === +
- +
-<code> +
-string somtGetShortCParamList(in string buffer, in string selfParm, in string varargsParm); +
-</code> +
- +
-Returns the formal parameter list (in ANSI C function prototype form, with types) for this method. The parameter list is built in  <buffer> and the address of <buffer> is returned. +
- +
-Parameters are delimited with newlines. +
- +
-If this method takes a variable number of arguments then the final parameter substring is replaced by <varargsParm>, unless <varargsParm> is NULL in which case the final parameter is removed. +
- +
-If <selfParm> is not null then it is added as an initial parameter. (The <selfParm> string may actually contain multiple parameters, delimited by newline characters.) +
- +
-The method receiver and any implicit method arguments are NOT included. +
- +
-The types of the method parameters are given in C form (with pointer stars, where needed) rather than in the IDL form. +
- +
-=== somtGetFullCParamList method === +
- +
-<code> +
-string somtGetFullCParamList(in string buffer, in string varargsParm); +
-</code> +
- +
-Same as somtGetShortCParamList except that the method receiver and any implicit method arguments (Environment and Context) are included. The types of the method parameters are given in C form (with pointer stars, where needed) rather than in the IDL form. +
- +
- +
-=== somtGetShortParamNameList mwthod === +
- +
-<code> +
-string somtGetShortParamNameList(in string buffer, in string selfParm, in string varargsParm); +
-</code> +
-   +
-Returns the parameter list for this method in call form (without types). The argument list is built in <buffer> and the address of  <buffer> is returned. Parameters are delimited with newlines. +
- +
-If this method takes a variable number of arguments then the final parameter is replaced by <varargsParm>, unless <varargsParm> is NULL in which case the final parameter is removed. +
- +
-If <selfParm> is not null then it is added as an initial parameter. (The <selfParm> string may actually contain multiple parameters, delimited by newline characters.) +
- +
-The method receiver and any implicit method arguments are NOT included. +
- +
-=== somtGetFullParamNameList method === +
- +
-<code> +
-string somtGetFullParamNameList(in string buffer, in string varargsParm); +
-</code> +
- +
-Same as somtGetParamNameList except that the method receiver and any implicit method arguments (Environment and Context) are included. +
- +
-=== somtGetNthParameter mwthod === +
- +
-<code> +
-SOMTParameterEntryC somtGetNthParameter(in short n); +
-</code> +
- +
-Returns the object representing the nth explicit method parameter. +
- +
-=== somtGetFirstException method === +
- +
-<code> +
-SOMTStructEntryC somtGetFirstException(); +
-</code> +
- +
-The first exception this method raises. +
- +
-=== somtGetNextException method === +
- +
-<code> +
-SOMTStructEntryC somtGetNextException(); +
-</code> +
- +
-The next exception this method raises, relative to the previous call to this method or to somtGetFirstException. +
- +
-=== somtContextArray attribute === +
- +
-<code> +
-readonly attribute string *somtContextArray; +
-</code> +
- +
-An array of the context string-literals for the method. +
- +
-=== somtCReturnType attribute === +
- +
-<code> +
-readonly attribute string somtCReturnType; +
-</code> +
- +
-The C datatype the method returns. This may not correspond to the IDL data type (in particular, pointer stars may be added). +
- +
-==== SOMTModuleEntryC Class ==== +
- +
-=== somtOuterModule attribute === +
- +
-<code> +
-readonly attribute SOMTModuleEntryC somtOuterModule; +
-</code> +
- +
-The module enclosing this module, or NULL if there is none. +
- +
-=== somtModuleFile attribute === +
- +
-<code> +
-readonly attribute string somtModuleFile; +
-</code> +
- +
-The name of the file in which the module appears. +
- +
-=== somtGetFirstModuleStruct method === +
- +
-<code> +
-SOMTStructEntryC somtGetFirstModuleStruct(); +
-</code> +
- +
-=== somtGetNextModuleStruct method === +
- +
-<code> +
-SOMTStructEntryC somtGetNextModuleStruct(); +
-</code> +
- +
-=== somtGetFirstModuleTypedef method === +
- +
-<code> +
-SOMTTypedefEntryC somtGetFirstModuleTypedef(); +
-</code> +
- +
-=== somtGetNextModuleTypedef method === +
- +
-<code> +
-SOMTTypedefEntryC somtGetNextModuleTypedef(); +
-</code> +
- +
-=== somtGetFirstModuleUnion method === +
- +
-<code> +
-SOMTUnionEntryC somtGetFirstModuleUnion(); +
-</code> +
- +
-=== somtGetNextModuleUnion method === +
- +
-<code> +
-SOMTUnionEntryC somtGetNextModuleUnion(); +
-</code> +
- +
-=== somtGetFirstModuleEnum method === +
- +
-<code> +
-SOMTEnumEntryC somtGetFirstModuleEnum(); +
-</code> +
- +
-=== somtGetNextModuleEnum method === +
- +
-<code> +
-SOMTEnumEntryC somtGetNextModuleEnum(); +
-</code> +
- +
-=== somtGetFirstModuleConstant mwthod === +
- +
-<code> +
-SOMTConstEntryC somtGetFirstModuleConstant(); +
-</code> +
- +
-=== somtGetNextModuleConstant mwthod === +
- +
-<code> +
-SOMTConstEntryC somtGetNextModuleConstant(); +
-</code> +
- +
-=== somtGetFirstModuleSequence method === +
- +
-<code> +
-SOMTSequenceEntryC somtGetFirstModuleSequence(); +
-</code> +
- +
-=== somtGetNextModuleSequence method === +
- +
-<code> +
-SOMTSequenceEntryC somtGetNextModuleSequence(); +
-</code> +
- +
-=== somtGetFirstInterface method === +
- +
-<code> +
-SOMTClassEntryC somtGetFirstInterface(); +
-</code> +
- +
-=== somtGetNextInterface method === +
- +
-<code> +
-SOMTClassEntryC somtGetNextInterface(); +
-</code> +
- +
-=== somtGetFirstModule method === +
- +
-<code> +
-SOMTModuleEntryC somtGetFirstModule(); +
-</code> +
- +
-=== somtGetNextModule method === +
- +
-<code> +
-SOMTModuleEntryC somtGetNextModule(); +
-</code> +
- +
-=== somtGetFirstModuleDef method === +
- +
-<code> +
-SOMTEntryC somtGetFirstModuleDef(); +
-</code> +
- +
-=== somtGetNextModuleDef method === +
- +
-<code> +
-SOMTEntryC somtGetNextModuleDef(); +
-</code> +
- +
-==== SOMTParameterEntryC Class ==== +
- +
-=== somtParameterDirection attribute === +
- +
-<code> +
-readonly attribute somtParameterDirectionT somtParameterDirection; +
-</code> +
- +
-The direction for this parameter. (somtInE, somtOutE, or somtInOutE). +
- +
-=== somtIDLParameterDeclaration attribute === +
- +
-<code> +
-readonly attribute string somtIDLParameterDeclaration; +
-</code> +
- +
-The IDL declaration of the parameter, including the type and name. +
- +
-=== somtCParameterDeclaration attribute === +
- +
-<code> +
-readonly attribute string somtCParameterDeclaration; +
-</code> +
- +
-The declaration for the parameter within a C method procedure prototype. It includes the parameter's type and name. This may differ from the parameter's IDL declaration. In particular, pointer stars may be added. +
- +
-=== somtPascalParameterDeclaration attribute === +
- +
-<code> +
-readonly attribute string somtPascalParameterDeclaration; +
-</code> +
- +
-The declaration for the parameter within a Pascal method procedure prototype. It includes the parameter's type and name. This may differ from the parameter's IDL declaration. In particular, pointer stars may be added. +
- +
-==== SOMTPassthruEntryC Class ==== +
- +
-=== somtPassthruBody attribute === +
- +
-<code> +
-readonly attribute string somtPassthruBody; +
-</code> +
- +
-The source content text of this passthru entry without any modification. Newlines that were present in the source will still be present. +
- +
-=== somtPassthruLanguage attribute === +
- +
-<code> +
-readonly attribute string somtPassthruLanguage; +
-</code> +
- +
-Returns the name of the language for which this passthru entry is intended. Language names are always all upper case. +
- +
-=== somtPassthruTarget attribute === +
- +
-<code> +
-readonly attribute string somtPassthruTarget; +
-</code> +
- +
-Returns the target for this passthru entry. +
- +
-=== somtIsBeforePassthru method === +
- +
-<code> +
-boolean somtIsBeforePassthru(); +
-</code> +
- +
-Returns 1 (true) if this passthru entry is to be put at the beginning of the file or 0 (false) if this passthru entry is to go later in the file. +
- +
-==== SOMTSequenceEntryC Class ==== +
- +
-=== somtSeqLength attribute === +
- +
-<code> +
-readonly attribute long somtSeqLength; +
-</code> +
- +
-The length of the sequence. +
- +
- +
-=== somtSeqType attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtSeqType; +
-</code> +
- +
-The type of the sequence. +
- +
-==== SOMTStringEntryC Class ==== +
- +
-=== somtStringLength attribute === +
- +
-<code> +
-readonly attribute long somtStringLength; +
-</code> +
- +
-The length of the string. +
- +
-==== SOMTStructEntryC Class ==== +
- +
- +
-=== somtGetFirstMember Method === +
- +
-<code> +
-SOMTTypedefEntryC somtGetFirstMember(); +
-</code> +
- +
-The first member of the struct. +
- +
-=== somtGetNextMember Method === +
- +
-<code> +
-SOMTTypedefEntryC somtGetNextMember(); +
-</code> +
- +
-The next member of the struct, relative to the previous call to this method or somtGetFirstMember. +
- +
-=== somtStructClass method === +
- +
-<code> +
-readonly attribute SOMTClassEntryC somtStructClass; +
-</code> +
- +
-The class in which the structure was defined. +
- +
-=== somtIsException method === +
- +
-<code> +
-readonly attribute boolean somtIsException; +
-</code> +
- +
-Whether the structure is really an exception. +
- +
-==== SOMTTemplateOutputC Class ==== +
- +
- +
-=== somtAddSectionDefinitions Method === +
- +
-<code> +
-void somtAddSectionDefinitions(in string defString); +
-</code> +
- +
-Add section definitions from <defString> buffer to Symbol table. +
- +
-=== somtCommentStyle attribute === +
- +
-<code> +
-attribute somtCommentStyleT somtCommentStyle; +
-</code> +
- +
-Set style of output comment. Supported styles are: +
- +
-  * somtDashesE: "--" at the start of each line +
-  * somtCPPE: C++ style, %%"//"%% at the start of each line +
-  * somtCSimpleE: simple C style, each line wrapped in %%/*%% and %%*/%% +
-  * somtCBlockE: block C style, block style, ie leading %%/*%% then a * on each line and then a final %%*/%% +
-  * somtPSimpleE: simple Pascal style, each line wrapped in (* and *) +
-  * somtPBlockE: block Pascal style, block style, ie leading (* then a * on each line and then a final *) +
-  * somtPBorlandE: block Borland Pascal style, block style, ie leading { and then a final } +
- +
-=== somtLineLength attribute === +
- +
-<code> +
-attribute long somtLineLength; +
-</code> +
- +
-Line length limit. At least on list item will be output. +
- +
-=== somtCommentNewline attribute === +
- +
-<code> +
-attribute boolean somtCommentNewline; +
-</code> +
- +
-Output comment block from new line flag. +
-=== somtCheckSymbol Method === +
- +
-<code> +
-boolean somtCheckSymbol(in string name); +
-</code> +
- +
-Return TRUE id symbol <name> exists in Symbol Table. +
- +
-=== somtExpandSymbol Method === +
- +
-<code> +
-string somtExpandSymbol(in string s, in string buf); +
-</code> +
- +
-=== somtGetSymbol Method === +
- +
-<code> +
-string somtGetSymbol(in string name); +
-</code> +
- +
-Return symbol value for <name> from Symbol table. +
- +
-=== somto Method === +
- +
-<code> +
-void somto(in string tmplt); +
-</code> +
- +
-Outputs a template, <tmplt>, after substitution for any symbols that occur in it. Five substitutions are supported: simple, list, comment, tab, and conditional. +
- +
-Substitutable items in the template are bracketed with angle brackets. (Backslash can be used to escape an angle bracket.) +
- +
-Simple substitutions just replace a symbol with its value. If the symbol has no value in this template object then the symbol is replaced error string but no error is raised. +
- +
-List substitution assumes that the symbol has a value in output template list form. This is a newline separated string of values. The list substitution specification consists of four parts, a prefix, a symbol, a separator, and a list indicator. prefixes and separators can only be composed of blanks, comma, colons, and semi-colons.  The list indicator is "..." (three periods).  For example, the list substitution specification "<, name, ...> has a prefix of ", ", a symbol of "name" and a separator of ", " The prefix will be used whenever there is at least one item in the list and the separator will be used between any two list items.  After the first items of a list is placed each additional item is evaluated to see if it would begin after the line length limit (set by _set_somtLineLength), if it would then a new line is begun and the value is placed directly under the first item. +
-Comment substitution assumes that the symbol has a value in output template list form.  A comment specification consists of a comment indicator followed by a symbol name. The comment indicator is "--" Eg, %%<--%% classComment> is a valid comment substitution specification.  The lines of the comment are output according to the current comment style (see <somtCommentStyle>) and aligned with the starting column of the comment specification. +
-Tab substitution is specified by <@dd> where "dd" is a valid positive integer. Blanks will be inserted into the output stream if necessary to position the next character of output at the column indicated by "dd"+
- +
-Conditional substitution is specified by putting a question mark, "?", in column one of the template line.  The line will not be output at all unless at least one valid, non-blank,  symbol substitution  occurs on the line. +
- +
-Note: Due design error in IBM SOM 3.0 this method can't be fully replaced. You can do some preprocessing of <templ> and call parent method. This is due direct usage of FILE structure in somto method. This means you can't write to file using standard C file functions because FILE structure is a compiler depended. But you don't know which compiler was used for. Header files contains compiler-independed file functions (somtok*), but no any of this functions, except two ones, exported in SOM DLLs. So, if you want to fully replace this method then you need also replace lot of other methods and functions of Emitter Framework and SOM Compiler library. For IBM SOM 2.1 all seems to be ok, but you must use somtok* functions from SOMC.DLL, not standard C runtime for file operations. +
- +
-=== somtOutputComment Method === +
- +
-<code> +
-void somtOutputComment(in string comment); +
-</code> +
- +
-Outputs comment using comment style settings. +
- +
-Note: Due design error in IBM SOM 3.0 this method can't be fully replaced. You can do some preprocessing of <comment> and call parent or somto method. This is due direct usage of FILE structure in somto method. This means you can't write to file using standard C file functions because FILE structure is a compiler depended. But you don't know which compiler was used for. Header files contains compiler-independed file functions (somtok*), but no any of this functions, except two ones, exported in SOM DLLs. So, if you want to fully replace this method then you need also replace lot of other methods and functions of Emitter Framework and SOM Compiler library. For IBM SOM 2.1 all seems to be ok, but you must use somtok* functions from SOMC.DLL, not standard C runtime for file operations. +
- +
-=== somtOutputSection Method === +
- +
-<code> +
-void somtOutputSection(in string sectionName); +
-</code> +
- +
-Same as somto method, but template read from Symbol table with key equal to sectionName. Uses somto method for actual output. +
- +
-=== somtReadSectionDefinitions Method === +
- +
-<code> +
-void somtReadSectionDefinitions(inout FILE fp); +
-</code> +
- +
-This method reads sections from template file and stores them in Symbol table. fp is a value returned by somtOpenSymbolsFile method of SOMTEmitC class. +
- +
-Note: Due design error in IBM SOM 3.0 this method can't be replaced. This is due unknown structure of FILE type. This means you can't read file using standard C file functions because FILE structure is a compiler depended. But you don't know which compiler was used for. Header files contains compiler-independed file functions (somtok*), but no any of this functions, except two ones, exported in SOM DLLs. So, if you want to fully replace this method then you need also replace lot of other methods and functions of Emitter Framework and SOM Compiler library. For IBM SOM 2.1 all seems to be ok, but you must use somtok* functions from SOMC.DLL, not standard C runtime for file operations. +
- +
-=== somtSetOutputFile Method === +
- +
-<code> +
-void somtSetOutputFile(inout FILE fp); +
-</code> +
- +
-Pass FILE structure to object to use for file I/O. fp is a value returned by somtOpenEmitFile or somtOpenEmitFileSL. +
- +
-Note: FILE structure must be same as in other I/O methods and functions. +
- +
-=== somtSetSymbol Method === +
- +
-<code> +
-void somtSetSymbol(in string name, in string value); +
-</code> +
- +
-Set symbol name in Symbol table to value. name and value must be allocated using SOMMaloc function. It will be deallocated using SOMFree on object destroying. +
- +
-=== somtSetSymbolCopyBoth Method === +
- +
-<code> +
-void somtSetSymbolCopyBoth(in string name, in string value); +
-</code> +
- +
-Same as somtSetSymbol but name and value will be copied to internally allocated buffer. +
- +
-=== somtSetSymbolCopyName Method === +
- +
-<code> +
-void somtSetSymbolCopyName(in string name, in string value); +
-</code> +
- +
-Same as somtSetSymbol but name will be copied to internally allocated buffer. +
- +
-=== somtSetSymbolCopyValue Method === +
- +
-<code> +
-void somtSetSymbolCopyValue(in string name, in string value); +
-</code> +
- +
-Same as somtSetSymbol but value will be copied to internally allocated buffer. +
- +
-==== SOMTTypedefEntryC Class ==== +
- +
-=== somtTypedefType attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtTypedefType; +
-</code> +
- +
-The type of the typedef. This does not include pointer stars or array declarators.   These must be obtained by examining each of the declarators. +
- +
-=== somtGetFirstDeclarator method === +
- +
-<code> +
-SOMTCommonEntryC somtGetFirstDeclarator(); +
-</code> +
- +
-The first declarator for this typedef. Declarators of struct members will be instances of SOMTDataEntryC, while declarators of typedefs will be instances of SOMTUserDefinedTypeEntryC. +
- +
-=== somtGetNextDeclarator method === +
- +
-<code> +
-SOMTCommonEntryC somtGetNextDeclarator(); +
-</code> +
- +
-The next declarator for this typedef, relative to the previous call to this method or somtGetFirstDeclarator. Declarators of struct members will be instances of SOMTDataEntryC, while declarators of typedefs will be instances of SOMTUserDefinedTypeEntryC. +
- +
-==== SOMTUnionEntryC Class ==== +
- +
-=== somtSwitchType attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtSwitchType; +
-</code> +
- +
-The switch type of the union. +
- +
-=== somtGetFirstCaseEntry method === +
- +
-<code> +
-somtCaseEntry *somtGetFirstCaseEntry(); +
-</code> +
- +
-The first case for the union. +
- +
-=== somtGetNextCaseEntry method === +
- +
-<code> +
-somtCaseEntry *somtGetNextCaseEntry(); +
-</code> +
- +
-The next case for the union, relative to the previous call to this method or to somtGetFirstCaseEntry. +
- +
- +
-==== SOMTUserDefinedTypeEntryC Class ==== +
- +
- +
-=== somtOriginalTypedef attribute === +
- +
-<code> +
-readonly attribute SOMTTypedefEntryC somtOriginalTypedef; +
-</code> +
- +
-The typedef that defined the user-defined type. +
- +
-=== somtBaseTypeObj attribute === +
- +
-<code> +
-readonly attribute SOMTEntryC somtBaseTypeObj; +
-</code> +
- +
-The object representing the base type (eg. short, float, unsigned long) of a user-defined type,  skipping over any intermediate user-defined types. +
- +
- +
-==== SOMStringTableC Class ==== +
- +
-<code> +
-interface SOMStringTableC : SOMObject +
-</code> +
- +
-Объектами класса SOMStringTableC являются символьные таблицы, которые отображают строки на строки (ключ-значение, ассоциативные массивы). Любой экземпляр класса  может хранить неограниченное число элементов. При увеличении количества строк время поиска строки увеличивается. В отличие от IBM SOM в данной реализации не используются хэш-таблицы. +
- +
-=== somstTargetCapacity attribute === +
- +
-<code> +
-attribute unsigned long somstTargetCapacity; +
-</code> +
- +
-Емкость ассоциативного массива. Значение не влияет на работу и сохранено для совместимости. В IBM SOM данный атрибут определял размер хэш-таблицы. Данный атрибут должен выставляться до вызова любого из методов данного класса +
- +
-=== somstAssociationsCount attribute === +
- +
-<code> +
-readonly attribute unsigned long somstAssociationsCount; +
-</code> +
- +
-Текущее число ассоциаций в массиве +
- +
-=== somstAssociate method === +
- +
-<code> +
-short somstAssociate(in string key, in string value); +
-</code> +
- +
-Устанавливает связь <key> и <value>. Возвращает 0, если связь не может быть установлена (<key> нулевой или недостаточно памяти); -1 - ассоциация успешна выполнена, но <key> уже имел значение до вызова метода, 1 - ассоциация успешно выполнена и <key> не существовал. Замечание: массив сохраняет ссылки на <key> и <value>, передаваемые в аргументах. Копия значений <key> и <value> не создается. При уничтожении объекта память, занимаемая <key> и <value> освобождается с помощью SOMFree, т.е. память под <key> и <value> должна быть выделена с помощью SOMMalloc и аналогичных функций. Замечание: При замене <value> при имеющемся <key> старое <value> заменаяется, память не освобождается +
- +
-=== somstAssociateCopyKey method === +
- +
-<code> +
-short somstAssociateCopyKey(in string key, in string value); +
-</code> +
- +
-То же, что и <somstAssociate>, но массив содержит копии значений <key>. Значение <key> копируется в выделяемую с помощью SOMMalloc память. +
- +
-=== somstAssociateCopyValue method === +
- +
-<code> +
-short somstAssociateCopyValue(in string key, in string value); +
-</code> +
- +
-То же, что и <somstAssociate>, но массив содержит копии значений <value>. Значение <value> копируется в выделяемую с помощью SOMMalloc память. +
- +
-=== somstAssociateCopyBoth method === +
- +
-<code> +
-short somstAssociateCopyBoth(in string key, in string value); +
-</code> +
- +
-То же, что и <somstAssociate>, но массив содержит копии значений <key> и <value>. Значения <key> и <value> копируются в выделяемую с помощью SOMMalloc память. +
- +
-=== somstGetAssociation method === +
- +
-<code> +
-string somstGetAssociation(in string key); +
-</code> +
- +
-Возвращается строка, ассоциированная с <key>, или NULL, если нет ассоциации. Массив продолжает хранить указатель на значение. +
- +
-=== somstClearAssociation method === +
- +
-<code> +
-boolean somstClearAssociation(in string key); +
-</code> +
- +
-The association for <key>, if any, is removed.1 is returned if <key> had an association, and 0 is returned if it did not. +
- +
-=== somstGetIthKey method === +
- +
-<code> +
-string somstGetIthKey(in unsigned long i); +
-</code> +
- +
-Возвращает ключевую часть <i>-й по счету ассоциации. Если нет ассоциации, то возвращает NULL. Порядок ассоциации в массиве не определен, но остается постоянным до следующей модификации. +
- +
-=== somstGetIthValue method === +
- +
-<code> +
-string somstGetIthValue(in unsigned long i); +
-</code> +
- +
-Возвращает значимую часть <i>-й по счету ассоциации. Если нет ассоциации, то возвращает NULL. Порядок ассоциации в массиве не определен, но остается постоянным до следующей модификации. +
- +
-==== somtStrDup function ==== +
- +
-<code> +
-SOMEXTERN char * SOMLINK somtStrDup(char *str); +
-</code> +
- +
-Allocate memory and duplicate string str +
- +
-==== somtEntryTypeName function ==== +
- +
-<code> +
-SOMEXTERN char * SOMLINK somtEntryTypeName(SOMTTypes type); +
-</code> +
- +
-Return string representation of type of Entry structure except special case SOMTEmitterBeginE and SOMTEmitterEndE types. +
- +
-==== somtShowEntry function ==== +
- +
-<code> +
-SOMEXTERN void SOMLINK somtShowEntry(Entry * ep); +
-</code> +
- +
-Output using somPrintf information about Entry structure. +
- +
-==== somtStrCat function ==== +
- +
-<code> +
-SOMEXTERN char * SOMLINK somtStrCat(int count,...); +
-</code> +
- +
-Concatenate count of strings. +
- +
-==== somtMakeIncludeStr function ==== +
- +
-<code> +
-SOMEXTERN char * SOMLINK somtMakeIncludeStr(boolean local, char *stem, char *suffix); +
-</code> +
- +
-Produce include string for local (include "") or global (include <>) using file stem as file name and suffix as file extension. +
- +
-==== somtNewSymbol function ==== +
- +
-<code> +
-SOMEXTERN char * SOMLINK somtNewSymbol(char *prefix, char *stem); +
-</code> +
- +
-Allocate memory and produce string from prefix and stem. +
- +
-==== somtGetFileStem function ==== +
- +
-<code> +
-SOMEXTERN char * SOMLINK somtGetFileStem(char *fullName); +
-</code> +
- +
-Allocate memory and return file stem from file name. +
- +
-==== somtGetObjectWrapper function ==== +
- +
-<code> +
-SOMEXTERN SOMTEntryC * SOMLINK somtGetObjectWrapper(Entry * ep); +
-</code> +
- +
-Return SOMT*EntryC object for ep Entry structure. +
- +
-Mapping of Entry types to SOMT*EntryC classes: +
- +
-^ Entry type  ^ Emitter Framework Class ^ +
-| SOMTArgumentE | SOMTParameterEntryC | +
-| SOMTAttE | SOMTAttributeEntryC | +
-| SOMTBadEntryE | Fatal error | +
-| SOMTBaseE | SOMTBaseClassEntryC | +
-| SOMTClassE | SOMTClassEntryC | +
-| SOMTConstE | SOMTConstEntryC | +
-| SOMTDataE | SOMTDataEntryC | +
-| SOMTEnumBE | SOMTEnumNameEntryC | +
-| SOMTEnumE | SOMTEnumEntryC | +
-| SOMTEnumPE | SOMTEnumEntryC | +
-| SOMTFloatBE | SOMTEntryC | +
-| SOMTAnyBE | SOMTEntryC | +
-| SOMTGroupE | SOMTEntryC | +
-| SOMTCopyrightE | SOMTEntryC | +
-| SOMTLongBE | SOMTEntryC | +
-| SOMTNegativeBE | SOMTEntryC | +
-| SOMTOctetBE | SOMTEntryC | +
-| SOMTTypeCodeBE | SOMTEntryC | +
-| SOMTBooleanBE | SOMTEntryC | +
-| SOMTCaseEntryE | SOMTEntryC | +
-| SOMTCaseListE | SOMTEntryC | +
-| SOMTCaseSTME | SOMTEntryC | +
-| SOMTCharBE | SOMTEntryC | +
-| SOMTDclListE | SOMTEntryC | +
-| SOMTDefaultE | SOMTEntryC | +
-| SOMTDoubleBE | SOMTEntryC | +
-| SOMTEBaseE | SOMTEntryC | +
-| SOMTEEnumE | SOMTEntryC | +
-| SOMTShortBE | SOMTEntryC | +
-| SOMTStringBE | SOMTEntryC | +
-| SOMTUnsignedLongBE | SOMTEntryC | +
-| SOMTUnsignedShortBE | SOMTEntryC | +
-| SOMTVoidBE | SOMTEntryC | +
-| SOMTVoidPtrBE | SOMTEntryC | +
-| SOMTMetaE | SOMTMetaClassEntryC | +
-| SOMTModuleE | SOMTModuleEntryC | +
-| SOMTNewMethodE | SOMTMethodEntryC | +
-| SOMTOverriddenMethodE | SOMTMethodEntryC | +
-| SOMTOverrideMethodE | SOMTMethodEntryC | +
-| SOMTPassthruE | SOMTPassthruEntryC | +
-| SOMTSequenceE | SOMTSequenceEntryC | +
-| SOMTSequenceTDE | SOMTSequenceEntryC | +
-| SOMTStringE | SOMTStringEntryC | +
-| SOMTStructE | SOMTStructEntryC | +
-| SOMTStructPE | SOMTStructEntryC | +
-| SOMTStructSE | SOMTStructEntryC | +
-| SOMTTyDclE | SOMTTypedefEntryC | +
-| SOMTTypedefE | SOMTTypedefEntryC | +
-| SOMTTypedefBE | SOMTUserDefinedTypeEntryC | +
-| SOMTUnionE | SOMTUnionEntryC | +
-| SOMTUnionPE | SOMTUnionEntryC | +
-| SOMTUnionSE | SOMTUnionEntryC | +
-| SOMTEmitterBeginE | Fatal error | +
-| SOMTEmitterEndE | Fatal error | +
- +
-====== Appendixes ====== +
- +
-===== 1. Appendix 1. SOM ABI ===== +
- +
-Due switching from MSVC (IBM SOM 2.1) to VAC (IBM SOM 3.0) some problems was occur: +
- +
-First problem is a calling convention. All non SOMLINK calls in IBM SOM 2.1 is a _cdecl calls. But under IBM SOM 3.0 all non SOMLINK calls is a Optlink calls. Read some info here: +
-https://github.com/prokushev/SOM-Delphi-Wiki/blob/master/Known%20differences%20between%20SOM%202.1%20and%20SOM%203.0.md +
-Goal of somFree SOM Compiler and Emitter Framework is to provide a possibility to use original IBM SOM emitters as from  IBM SOM 2.1 as from IBM SOM 3.0. Another goal is a development of somFree emitters, which can be used on both IBM SOM 2.1 and IBM SOM 3.0 compilers.To achieve above goals somFree provides some solutions: +
-1. Automatic somc.dll calling convention switching. +
-somFree SOMC.DLL provides automatic switching of IBM SOM 2.1 ABI and IBM SOM 3.0 ABI. Switching occurs on somtload call during loading of emitter. For IBM SOM 3.0 all emitter contains entry point emitSL, so, if loading was success, then somFree handles Optlink calling convention for all non SOMLINK calls. If no such entry (found only emit) then IBM SOM 2.1 ABI used. +
-2. Support both entry points (emitSL and emit) in emitters. +
-somFree emitters automatically switches to IBM SOM 2.1 ABI on emit call and to IBM SOM 3.0 ABI on emitSL call. +
-====== Список литературы ====== +
- +
- +
-  - Object Management Group, «C Language Mapping Specification 1.0,» [В Интернете]. Available: https://www.omg.org/spec/C/. [Дата обращения: 24 Август 2022]+
-  - IBM, OS/2 2.0 Technical Library. System Object Model Guide and Reference. First Edition., 1991. https://www.os2museum.com/files/docs/os220tl/os2-2.0-som-1991.pdf +
- +
- +
- +
- +
- +