9.1 Header Files

There are two types of header files in Mac OS X:


Ordinary header files

These header files are inserted into source code by a preprocessor prior to compilation. Ordinary header files have a .h extension.


Precompiled header files

These header files have a .p extension.

Header files serve four functions:

  • They contain C declarations.

  • They contain macro definitions.

  • They provide for conditional compilation.

  • They provide line control when combining multiple source files into a single file that is subsequently compiled.

The mechanism for enabling POSIX.4 compliance is built into the system header files. The preprocessor variables _ ANSI_SOURCE , _ _STRICT_ANSI_ _ , and _POSIX_SOURCE are supported. Because Mac OS X itself is not POSIX.4 compliant, you cannot achieve strict POSIX.4 compliance. Using these mechanisms, however, is the best way to approximate POSIX.4 compliance.


Unix developers will find the ordinary header files familiar, since they follow the BSD convention. The C preprocessor directive #include includes a header file in a C source file. There are essentially three forms of this syntax:


#include <headername.h>

This form is used if the header file is located in the directory /usr/include .


#include <directory/headername.h>

This form is used if the header file is located in the directory /usr/include/ directory , where directory is a subdirectory of /usr/include .


#include "headername.h"

This form is used if the header file is located in a user or nonstandard directory. The form should either be in the same directory as the source file you are compiling or in a directory specified by cc 's - Idirectory switch.

You can use #include, followed by a macro, which, when expanded, must be in one of the aforementioned forms.

As noted in the previous chapter, frameworks in Mac OS X are common when you step outside of the BSD portions of the operating system. To include a framework header file in Objective-C code, use the following format:

 #import <   frameworkname/headerfilename   .h> 

where frameworkname is the name of the framework without the extension and headerfilename is the name of the header file. For example, the included declaration for a Cocoa application would look like:

 #import <Cocoa/Cocoa.h> 

Note that you must use #include rather than #import when including a framework in Carbon code. When preprocessing header files or any preprocessor directives, the following three actions are always taken:

  • Comments are replaced by a single space.

  • Any backslash line continuation escape symbol is removed, and the line following it is joined with the current line. For example:

     #def\ ine \ NMAX 2000 

    is processed as:

     #define NMAX 2000 
  • Any predefined macro name is replaced with its expression. In Mac OS X, there are both standard ANSI C predefined macros, as well as several predefined macros specific to Mac OS X. For example, _ _APPLE_CC_ _ is replaced by an integer that represents the compiler's version number.

Keep the following rules in mind:

  • The preprocessor does not recognize comments or macros placed between the < and > symbols in an #include directive.

  • Comments placed within string constants are regarded as part of the string constant and are not recognized as C comments.

  • If ANSI trigraph preprocessing is enabled with cc - trigraph , you must not use a backslash continuation escape symbol within a trigraph sequence, or the trigraph will not be interpreted correctly. ANSI trigraphs are three-character sequences that represent characters that may not be available on older terminals. For example, ??< translates to {. ANSI trigraphs are a rare occurrence these days.

9.1.1 Precompiled Header Files

Mac OS X's Xcode Tools support and provide extensive documentation on building and using precompiled header files. This section highlights a few of the issues that may be of interest to Unix developers new to Mac OS X when it comes to working with precompiled headers.

Precompiled header files are binary files that have been generated from ordinary C header files, and then preprocessed and parsed using cpp-precomp . When such a precompiled header is created, both macros and declarations present in the corresponding ordinary header file are sorted, resulting in a faster compile time, a reduced symbol table size, and consequently, faster lookup. Precompiled header files are given a .p extension and are produced from ordinary header files that end with a .h extension. There is no risk that a precompiled header file will get out of sync with the .h file, because the compiler checks the timestamp of the actual header file.

When using precompiled header files, you should not refer to the .p version of the name, but rather to the .h version in the #include directive. If a precompiled version of the header file is available, it is used automatically; otherwise , the real header file ( .h ) is used. So, to include foo.p , specify foo.h . The fact that cc is using a precompiled header is totally hidden from you.

In addition to checking the timestamp, the preprocessor also checks whether the current context is the same as the context in which the precompilation was performed. For the precompiled header to be used, the timestamp needs to indicate that the modification time of the .p version is more recent than the .h version, and therefore, that the contexts are equivalent. The context is the amalgamation of all defines (#define) in place at the time you compile a program. If the defines are different the next time you include the .h file, cpp-precomp will regenerate the .p file based on the current set of defines.

Mac OS X system headers are precompiled. For example, AppKit.p , Cocoa.p , mach.p , and other precompiled header files are stored in /System/Library/Frameworks . You can create your own precompiled header files using the cc - precomp compile driver flag. For example, the following command illustrates this process in its simplest, context-independent form:

 cc -precomp   header   .h -o   header   .p 

If there is context dependence (for example, some conditional compilation), the - Dsymbol flag is used. In this case, the command to build a precompiled header file (with the FOO symbol defined) is:

 cc -precomp -DFOO   header   .h -o   header   .p 

For more details on building and using precompiled header files, as well as using the cpp-precomp preprocessor, read the documentation stored in the /Developer/Documentation/DeveloperTools/ Preprocessor/ directory.

Although the cpp-precomp and the standard GNU cpp preprocessors are similar in function, there are several incompatibilities. For this reason, you will find it is often necessary to use the - no-cpp-precomp switch when porting Unix-based software to Mac OS X.


A complete list of precompiled headers can be found in the phase1.precompList and phase2.precompList files, located in /System/Library/SystemResources/PrecompLists . Table 9-1 lists the contents of the files.

Table 9-1. Precompiled header files, as listed in phase1.precompList andphase2.precompList

Precompiled headers

Filesystem location

phase1.precompList

 

libc.p

/usr/include

unistd.p

/usr/include

mach.p

/usr/include/mach

phase2.precompList

 

CoreServices.p

/System/Library/Frameworks/CoreServices.framework/Versions/A/Headers

CoreServices.pp

/System/Library/Frameworks/CoreServices.framework/Versions/A/Headers

ApplicationServices.p

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Headers

ApplicationServices.pp

/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Headers

Carbon.p

/System/Library/Frameworks/Carbon.framework/Versions/A/Headers

Carbon.pp

/System/Library/Frameworks/Carbon.framework/Versions/A/Headers

Foundation.p

/System/Library/Frameworks/Foundation.framework/Versions/C/Headers

Foundation.pp

/System/Library/Frameworks/Foundation.framework/Versions/C/Headers

AppKit.p

/System/Library/Frameworks/AppKit.framework/Versions/C/Headers

AppKit.pp

/System/Library/Frameworks/AppKit.framework/Versions/C/Headers

Cocoa.p

/System/Library/Frameworks/Cocoa.framework/Versions/A/Headers

Cocoa.pp

/System/Library/Frameworks/Cocoa.framework/Versions/A/Headers


Although the filenames in phase1.precompList and phase2.precompList are listed as filename.p (for example, libc.p ), the actual file used depends on the compiler version. For example, gcc3 will use libc-gcc3.p .

The .pp files referred to in phase2.precompList are not present on the system, but gcc3 versions can be generated by running sudo fixPrecomps -gcc3all .


9.1.1.1 PFE precompilation

The gcc3.3 compiler supports an alternative precompilation mechanism called Persistent Front End (PFE). This mechanism offers the same performance benefits as cpp-precomp , but supports C++ and Objective-C++. ( cpp-precomp does not support either language.) To precompile a header file with PFE, compile the header, specifying the ”dump-pch switch with the name of the output file. You'll also need to supply the language with the - x switch (see Section 8.2.3 in Chapter 8):

 gcc -x c --dump-pch   header   .pfe   header   .h 

Then, you can compile main.c by using the ”load-pch switch and supplying the name of the precompiled file:

 gcc --load-pch header.pfe main.c -o main 

Example 9-1 shows header.h .

Example 9-1. The header.h file
 /* header.h: a trivial header file. */ #define x 100 
Example 9-2. The main.c application
 /* main.c: a simple program that includes header.h. */     #include <stdio.h>     #include "header.h"     int main( )     {      printf("%d\n", x);      return 0;     } 

9.1.2 malloc.h

make may fail to compile some types of Unix software if it cannot find malloc.h . Software designed for older Unix systems may expect to find this header file in /usr/include ; however, malloc.h is not present in this directory. The set of malloc( ) function prototypes is actually found in stdlib.h . For portability, your programs should include stdlib.h instead of malloc.h . (This is the norm; systems that require malloc.h are the rare exception these days.) GNU autoconf will detect systems that require malloc.h and define the HAVE_MALLOC_H macro. If you do not use GNU autoconf , you will need to detect this case on your own and set the macro accordingly . You can handle such cases with this code:

 #include <stdlib.h> #ifdef HAVE_MALLOC_H #include <malloc.h> #endif 

For a list of libraries that come with Mac OS X, see Section 9.10, later in this chapter.

9.1.3 poll.h

One issue in porting software from a System V platform to a BSD platform (e.g., Mac OS X) is the lack of the poll( ) system call function, which provides a mechanism for I/O multiplexing. Panther provides this function through emulation, which makes use of its BSD analog select( ) . The associated header file, /usr/include/poll.h , is included with Panther.

9.1.4 wchar .h and iconv.h

Another issue in porting Unix software to previous versions of Mac OS X was the relatively weak support for wide (i.e., more than 8-bits) character datatypes (e.g., Unicode). Panther improves this situation by including the GNU libiconv , which provides the iconv( ) function to convert between various text encodings. Additionally, the wchar_t type is supported in Panther. The header files iconv.h and wchar.h are also included. Alternatively, you can use the APIs available in the CoreFoundation's String services, which are described in CFString.h .

9.1.5 dlfcn.h

This header file, along with its associated dlcompat library functions, is included in Panther. The dlcompat library functions such as dlopen( ) are actually included in libSystem .

9.1.6 alloc .h

Although this header file is not included with Mac OS X, its functionality is provided by stdlib.h . If your code makes a specific request to include alloc.h , you have several choices. One option is to remove the #include <alloc.h> statement in your source code. This may be cumbersome, however, if your include statement appears in many files. Another alternative is to create your own version of alloc.h . A sample alloc.h is suggested in The Apple Developer Connection's Technical Note TN2071 (http://developer.apple.com/technotes/tn2002/tn2071.html).

9.1.7 lcyrpt.h

Although lcrypt.h is not included in Mac OS X, its functionality is provided in unistd.h .

9.1.8 values.h

The values.h file, another header file found on many Unix systems, is not included in Mac OS X. Its functionality, however, is provided by limits.h .



Mac OS X Panther for Unix Geeks
Mac OS X Panther for Unix Geeks
ISBN: 0596006071
EAN: 2147483647
Year: 2003
Pages: 212

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net