TweetFollow Us on Twitter

SimpleAPP
Volume Number:10
Issue Number:4
Column Tag:Demonstration

Building The SimpleAPP Demonstration Application

By Richard Clark

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Even though a program written for a Power Macintosh can use the same source code as a 68K Macintosh, the build process is different. Power Macintosh development uses a new set of compilers and linkers, and introduces the first fundamentally new Macintosh development system in several years - Metrowerks’ “Code Warrior.”

Not only are the tools different, but “native” Power Macintosh executables use a different format than 68K executables. “Native” application code is stored in the data fork of a file, and requires a ‘cfrg’ resource to notify the system that PowerPC code is present. The ‘cfrg’ resource describes several major things about the fragment or fragments in the current file:

• Code type (only PowerPC is supported at present)

• Whether this is a stand-alone fragment, or an overpatch to another fragment

• Version information for this fragment

• Is this a library or an application? (There’s also a value for “is a drop-in”, but the system only looks for ‘cfrg’ resources in applications and shared libraries. The third value is supplied for applications which include cfrg resources in their extensions and parse these resources directly. The “ModApp” sample included with both the MetroWerks and Apple development environments includes a cfrg parser.)

• Is this on disk, or in memory? (An additional value, “on disk segmented” is reserved for future use.)

• If this is on disk, what is the offset to the start of the container? This allows applications to reserve the first part of the data fork for application-specific information (though Apple is discouraging developers from writing to the data fork of a running application.) Also, what is the length of the container.

These two fields serve another purpose besides allowing an application to store information in the data fork - the data fork may contain multiple containers, and the associated ‘cfrg’ resource may have an entry for each container.

• The name of this fragment. This is especially important for shared libraries as it allows the name of a shared library to be independent from the name of its file. If the user renames a shared library, nothing will break. This also supports packing multiple fragments into the same file as described above.

• If this is an application, the stack size (or 0 for the default.) Also, the “appSubFolderID” field can be used if an application maintains a folder full of shared libraries. The application can include an ‘alis’ folder alias resource in its resource fork, and place the ID number of that resource into the cfrg.

This resource has to be added as part of the build process.

Building with Code Warrior

SimpleApp is easy to build with code warrior, though you have to set the appropriate ‘cfrg’ and ‘SIZE’ resource values in the Preferences Dialog. Code Warrior accepts only a subset of the ‘cfrg’ information at present (whether this is an application or a Shared Library, the fragment’s name, and the default stack size), but these are adequate for our purposes.

Building the SimpleApp code resources is a bit more interesting. You have to specify that you are building a stand-alone module and set the file’s type and creator. (This type and creator indicates to SimpleApp that this is disk-based code.)

The other important setting specifies the code’s main entry point, initialization, and termination routines. In an application, these routines (typically called __start, __initialize, and __terminate) are supplied by the runtime library. Since our code resource has its own special routines, those names must be supplied to the “Linker” part of the Preferences Dialog.

If you’re building disk-based code, that’s all you have to do. If you want to create resource-based code, SimpleApp comes with an auxiliary application (DataToRes) which will take a SimpleApp ‘DPEF’ file (with code in the data fork) and turn it into a ‘RPEF’ file with code in a ‘RPEF’ resource.

Building with MPW

SimpleApp also comes with a MPW makefile. Building the application and the external code is a simple matter of compiling and linking, with one complication. The compiler and linker emit code in the XCOFF (Extended Common Object File Format) used by IBM, but the Power Macintosh prefers PEF. The Macintosh on RISC SDK supplies a “MakePEF” tool to convert XCOFF to PEF. When you run this tool, you must supply not only the file to be converted, but also a set of “library name mapping” rules that remove the “.xcoff” extension from the shared library names:


/* 1 */
SimpleApp ƒƒ SimpleApp.xcoff
 MakePEF SimpleApp.xcoff -o {targ} 
 -l InterfaceLib.xcoff=InterfaceLib

Another option to MakePEF lists the Main, Initialization, and Termination routines. (If the “main” routine was specified to the linker, it doesn’t have to be supplied to MakePEF.)


/* 2 */
'PICT Viewer' ƒƒ PICTViewer.xcoff
 MakePEF {deps} -o {targ} 
 -i OurInitRoutine -t OurTerminationRoutine 
 -l InterfaceLib.xcoff=InterfaceLib

The PowerPC linker performs dead code stripping, so you have to tell the linker to retain the Initialization and Termination routines. You can do this with the “-dead off” option, or by exporting the Initialization and Termination routines:


/* 3 */
PICTViewer.xcoff ƒ PICTViewer.c.o {XCOFFLibs}
 PPCLink {deps} -o {targ} -main OurMainRoutine -sym {SYM} 
 -export OurInitRoutine,OurTerminationRoutine

Finally, just as Code Warrior creates code in the data fork, so does MakePEF. This could create a problem if you wanted to create resource-based code, but MPW users can use a “Rez” script to read a PEF file into a resource:


/* 4 */
// File: Chaos.r
//
// This file includes the resources from a resource file
// (Unlike SimpleApp, an external don't need a 'cfrg' or
// 'SIZE' resource)

read 'RPEF' (128) "Chaos.PEF";







  
 
AAPL
$566.15
Apple Inc.
-4.41
GOOG
$600.81
Google Inc.
-8.65
MSFT
$28.94
Microsoft Corpora
-0.18
MacNews Search:
Community Search:
view counter

view counter
view counter
view counter
view counter
view counter
view counter
view counter
view counter

Facebook Releases New Camera App To Stre...
While not a replacement for Instagram, Facebook Camera is a good first step in this month+ old union of the two companies. Released today, Facebook camera looks to streamline the viewing of photos and the uploading of them. The app allows you to apply simple filters to images, tag people, upload multiple images at once, and post a note about the... | Read more »
Missile Monkey Review
Missile Monkey Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FLYING LOWUniversal App - Designed for iPhone and iPad Missile Monkey is a must miss   Developer: Munsey Clan Games Price: $0.99 Version Reviewed: 1.0 Device Reviewed On: iPad 2 | Read more »
Boomlings Review
Boomlings Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FUN FREEBIEUniversal App - Designed for iPhone and iPad Boomlings is a traditional matching puzzle game, with some explosive twists   | Read more »
Dave vs Cave Review
Dave vs Cave Review By Jason Wadsworth on May 24th, 2012 Our Rating: :: WATCH FOR FALLING ROCKSUniversal App - Designed for iPhone and iPad Kid falls down hole, kid gets trapped in cave, kid fights evil rock monsters to escape.   Developer: Origame64 | Read more »
Python Pocket Power: Python Bytes 3 – Mo...
Python fans are certain to welcome the best bits from the penultimate season of the BBC sketch comedy in a new iPhone app: Python Bytes 3 – Monty Python Series 3. If you have a flair for the obvious, you’ll correctly assume this is third in a series of apps that feature the best skits from the cult-classic, Monty Python’s Flying Circus. | Read more »
Slingshot Racing Review
Slingshot Racing Review By Carter Dotson on May 24th, 2012 Our Rating: :: SWING ME AROUNDUniversal App - Designed for iPhone and iPad Slingshot Racing is a racing game where players must race around the courses by grappling and swinging around the slippery courses.   | Read more »
Go to the Cannes Film Festival with The...
For the movie industry the Cannes Film Festival is one of the most important events in which to preview films and watch the stars. The 65th annual festival is happening in France right now, but if you weren’t able to secure an invite or make the journey, hope is not lost. Film buffs and star gazers can keep tabs on the festival with The Hoolywood... | Read more »
David Haye’s Knockout Review
David Haye’s Knockout Review By Jennifer Allen on May 24th, 2012 Our Rating: :: PUNCHING FUNUniversal App - Designed for iPhone and iPad A simple yet satisfying cartoon-style boxing game.   | Read more »
WhosHere Updates, Adds Video Chat for Fr...
A mobile social discovery app, WhosHere, updated yesterday, adding free video chat to the universal iOS build. The app allows users connect with an new emphasis on keeping random hook-ups safe(ish). The developers say “the biggest problem in meeting people online today [is] knowing that the person you are speaking to is exactly who they say they... | Read more »
Are You Smarter Than A 5th Grader? &...
Are You Smarter Than A 5th Grader? & Friends Free Review By Jennifer Allen on May 24th, 2012 Our Rating: :: LACKINGUniversal App - Designed for iPhone and iPad An underwhelming use of a great franchise.   | Read more »
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.