TweetFollow Us on Twitter

Feb 00 Factory Floor

Volume Number: 16 (2000)
Issue Number: 2
Column Tag: From the Factory Floor

Carbon and PowerPlant

By Gregory Dow ©2000 Gregory Dow. All rights reserved.

Web apps with Lasso and FileMaker Pro

Gregory Dow is the senior architect and original author of PowerPlant, which he started writing for Metrowerks in 1993. Greg works from his home in Berkeley, Calif., where he has been leading a discussion group of Mac programmers for 12 years. The group meets every other week in a local restaurant, sharing industry gossip and technical tips. Greg enjoys helping fellow programmers and he is a regular contributor to the comp.sys.mac.oop.powerplant newsgroup.

Biography

Gregory Dow is the original author of PowerPlant, which he started writing in 1993. Greg works from his home in Berkeley, California, where he has been leading a discussion group of Mac programmers for 12 years. The group meets every other week in a local restaurant, sharing industry gossip and technical tips. Greg enjoys helping fellow programmers and he is a regular contributor to the comp.sys.mac.oop.powerplant newsgroup.

What is your overall opinion of Carbon?

Greg: I think that Carbon is not only a wonderful technology, but also a great name. Carbon. It's the sixth element in the Periodic Table. It's the basis of all organic life. As graphite, Carbon is the softest substance. As diamond,

Carbon is the hardest substance. In terms of puns and metaphors, Carbon puts the Mac Toolbox at the same level as Java.

On the technical side, I think there are two important facets of Carbon. First, Carbon will run on the upcoming Mac OS X as well as on all systems back to Mac OS 8.1. Programmers don't have to choose between developing for the cutting edge systems and being compatible with a large installed base of machines - they can do both.

Second, Carbon extends the life of existing source code because it includes a large subset of the classic Mac OS 8 Toolbox. Over the years, Apple has been very good about maintaining backward compatibility. When new OS versions come out, existing programs usually continue to work, or require only minor modifications. You don't need to rewrite from scratch. Carbon continues this important tradition, although the required changes are more substantial.

What factors should someone consider before adopting Carbon?

Greg: Moving to a new technology always entails some risks. Remembering ill-fated technologies as QuickDraw GX, OpenDoc, and Copland, some developers are naturally skeptical about Apple's commitment to Carbon.

However, Apple has a good track record with Carbon. The Carbon message was consistent at the Worldwide Developers Conferences in 1998 and 1999. Carbon 1.0 shipped with Mac OS 9, and Carbon is included in the Developer Preview 2 version of Mac OS X. Also, by the time you read this article, Carbon 1.0.2, which runs on Mac OS 8.1 or later, will be out.

One potential problem is that Carbon does not ship with Mac OS 8. Developers can license Carbon from Apple for distribution with their products, but this is an extra hassle that might deter hobbyists. Furthermore, the Carbon library is about 1 MB in size, considerably large to bundle with a small program.

Another problem is that Carbon does not run on systems prior to Mac OS 8.1 and supports only PowerPC machines. There is no workaround for this. If you need to support 68K machines, System 7, or even earlier systems, you cannot use Carbon. You would need to decide if it is worth the development effort to produce both Carbon and Classic versions.

Developers with existing programs also need to make that same decision. They should ask themselves, "do the benefits of Carbon outweigh the costs of porting the source code?" Carbon is not a runtime feature. It is not like the Appearance Manager where you are able to weak link a library, then decide at runtime whether to use one set of routines or another. You cannot gradually Carbonize. It's all or nothing.

In Mac OS 8 and 9, there are not any significant advantages to using Carbon, and Classic programs will still run on Mac OS X. The advantages come from Carbon on Mac OS X, where the three major benefits are protected memory, dynamic heap sizes, and pre-emptive multitasking. The value of these benefits depends greatly on what a program does, although all programs are better off with protected memory because it helps insulate a program from bugs in other programs.

Dynamic heap sizes will help programs that use a variable amount of memory. This includes programs that open multiple documents or otherwise deal with indeterminate amounts of data. Pre-emptive multitasking can make the entire system feel more responsive and is very good for programs that perform lengthy computations or otherwise need regular processing time.

What kinds of changes will people need to make to support Carbon?

Greg: I classify the differences between the Carbon and Classic Toolboxes into three categories: syntactic, interface modification, and feature replacement.

Syntactic changes usually require only one or two line changes to source code. The simplest are name changes, where Apple has renamed a symbol in order to be more consistent with naming conventions. Such changes are not new to Carbon, as they occur with almost every new version of Apple's Universal Interfaces.

Other syntactic changes result from many Carbon Toolbox data structures being opaque, meaning that their format is private and not directly accessible. You need to use an accessor function. For example, in Classic, you can access the font for the current port as follows:

	GrafPtr	currentPort;
	GetPort(&currentPort);
	short		currentFont = currentPort->txFont;

Referring to currentPort->txFont depends on the exact size and layout of the GrafPort struct. Any change to that struct and the above code breaks. In Carbon, you must call a function to get a port's font:

	short		currentFont = GetPortTextFont(currentPort);

The GrafPort struct is opaque, and not even defined in the header files for Carbon. As long as the function GetPortTextFont() continues to return the font for a port, Apple can change how GrafPorts are implemented without breaking existing programs. This makes it much easier for Apple to enhance the system software.

Interface modification describes cases where Carbon and Classic have different ways for accomplishing the same task. A very simple example is initializing the Toolbox managers. With Classic, you need to call functions such as InitGraf(), InitWindows(), and InitMenus(). With Carbon, you do not call any of these functions. Carbon initializes the Toolbox automatically.

Another example of different interfaces is the Scrap Manager for dealing with clipboard data. For Classic, you use the functions GetScrap(), PutScrap(), and ZeroScrap(). For Carbon, you use the functions GetScrapFlavorData(), PutScrapFlavor(), and ClearCurrentScrap(). There are small differences in how you use the functions, but it's mostly a one-to-one correspondence.

The Printing Manager also has a different interface in Carbon. There are new data structures and functions. However, there are routines for converting between the Classic and Carbon data structures. This is very convenient, as a lot of Classic printing code relies on directly accessing and storing the information in a PrintRecord.

The changes that will probably be the most difficult are feature replacements. Carbon removes support for some system features such as Standard File, MacTCP, and balloon help. Developers must convert code to use alternate features that are supported. For the aforementioned features, suitable replacements are Navigation Services, Open Transport, and MacHelp. If your programs rely heavily on an unsupported feature, you will have a lot of work to do.

How have you implemented Carbon support in PowerPlant?

Greg: PowerPlant 2.0, the version in CodeWarrior Professional Edition, Version 5.0, is being enhanced so that it can be used to build both Carbon and Classic programs. Carbon is another possible target for a project, along with PowerPC and 68K.

Since Classic and Carbon have different interfaces, there is a lot of conditional compilation. Universal Interfaces 3.3 and later include Carbon support, controlled by the preprocessor symbol TARGET_API_MAC_CARBON. PowerPlant defines its own PP_Target_Carbon and PP_Target_Classic symbols.

For the most part, I have tried to avoid having code within functions that looks like:

	#if PP_Target_Carbon
		// Carbon code here
	#else
		// Classic code here
	#endif

Such code is hard to read and maintain.

In cases where Carbon has new accessor functions, I use inline functions with the same name that are defined only for Classic. For example, using the accessor for the font of a port previously mentioned, I have defined:

	inline short GetPortTextFont ( GrafPtr port )
	{
		return port->txFont;
	}

This definition, along with all the other accessor functions that PowerPlant uses, is within a single header file and bracketed by an #if so that it is not only defined for Classic targets. The PowerPlant sources always call the accessor function. For Carbon, this is an actual function call. For Classic, the inline function becomes a direct access of the data value.

In cases where Carbon and Classic have different interfaces, I define a common interface with separate implementations. For example, I have defined a UScrap namespace with the functions GetData(), SetData() and ClearData(). There are two implementations of each of these functions, one for Carbon and one for Classic. Client code then makes calls such as UScrap::GetData(), with the setting of the conditional compilation flags determining which function is used.

PowerPlant already has support for both Standard File and Navigation Services using the same interface. There are three options: always use Standard File, always use Navigation Services, and use Navigation Services if it is available at runtime (otherwise use Standard File). For Classic, you can use any of these options. For Carbon, you must always use Navigation Services.

Likewise, the PowerPlant networking classes have always provided an abstraction layer that supports both Open Transport and MacTCP. Under Carbon, you must use Open Transport.

How much work is required to Carbonize PowerPlant programs?

Greg: That really depends on what the programs do. People will need to do the same kinds of things that I did with the PowerPlant sources. For simple programs, that will mostly be the syntactic changes of using accessor functions.

Printing is the biggest change. PowerPlant will handle printing the built-in panes and views. But people will need to update custom views with non-trivial printing features (anything that accesses the PrintRecord).

Otherwise, updating an existing project requires minimal changes. You need to create a new target, remove some old files and add some new ones, and set up a prefix file with the correct options.
 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Aether Gazer unveils Chapter 16 of its m...
After a bit of maintenance, Aether Gazer has released Chapter 16 of its main storyline, titled Night Parade of the Beasts. This big update brings a new character, a special outfit, some special limited-time events, and, of course, an engaging... | Read more »
Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »

Price Scanner via MacPrices.net

New today at Apple: Series 9 Watches availabl...
Apple is now offering Certified Refurbished Apple Watch Series 9 models on their online store for up to $80 off MSRP, starting at $339. Each Watch includes Apple’s standard one-year warranty, a new... Read more
The latest Apple iPhone deals from wireless c...
We’ve updated our iPhone Price Tracker with the latest carrier deals on Apple’s iPhone 15 family of smartphones as well as previous models including the iPhone 14, 13, 12, 11, and SE. Use our price... Read more
Boost Mobile will sell you an iPhone 11 for $...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering an iPhone 11 for $149.99 when purchased with their $40 Unlimited service plan (12GB of premium data). No trade-in is required... Read more
Free iPhone 15 plus Unlimited service for $60...
Boost Infinite, part of MVNO Boost Mobile using AT&T and T-Mobile’s networks, is offering a free 128GB iPhone 15 for $60 per month including their Unlimited service plan (30GB of premium data).... Read more
$300 off any new iPhone with service at Red P...
Red Pocket Mobile has new Apple iPhones on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, available for $759 for 8-Core CPU/7-Core GPU/256GB models and $929 for 8-Core CPU/8-Core GPU/512GB models. Apple’s one-year warranty is... Read more
Updated Apple MacBook Price Trackers
Our Apple award-winning MacBook Price Trackers are continually updated with the latest information on prices, bundles, and availability for 16″ and 14″ MacBook Pros along with 13″ and 15″ MacBook... Read more
Every model of Apple’s 13-inch M3 MacBook Air...
Best Buy has Apple 13″ MacBook Airs with M3 CPUs in stock and on sale today for $100 off MSRP. Prices start at $999. Their prices are the lowest currently available for new 13″ M3 MacBook Airs among... Read more
Sunday Sale: Apple iPad Magic Keyboards for 1...
Walmart has Apple Magic Keyboards for 12.9″ iPad Pros, in Black, on sale for $150 off MSRP on their online store. Sale price for online orders only, in-store price may vary. Order online and choose... Read more
Apple Watch Ultra 2 now available at Apple fo...
Apple has, for the first time, begun offering Certified Refurbished Apple Watch Ultra 2 models in their online store for $679, or $120 off MSRP. Each Watch includes Apple’s standard one-year warranty... Read more

Jobs Board

DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
IT Systems Engineer ( *Apple* Platforms) - S...
IT Systems Engineer ( Apple Platforms) at SpaceX Hawthorne, CA SpaceX was founded under the belief that a future where humanity is out exploring the stars is Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.