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

Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links... | Read more »
Price of Glory unleashes its 1.4 Alpha u...
As much as we all probably dislike Maths as a subject, we do have to hand it to geometry for giving us the good old Hexgrid, home of some of the best strategy games. One such example, Price of Glory, has dropped its 1.4 Alpha update, stocked full... | Read more »
The SLC 2025 kicks off this month to cro...
Ever since the Solo Leveling: Arise Championship 2025 was announced, I have been looking forward to it. The promotional clip they released a month or two back showed crowds going absolutely nuts for the previous competitions, so imagine the... | Read more »
Dive into some early Magicpunk fun as Cr...
Excellent news for fans of steampunk and magic; the Precursor Test for Magicpunk MMORPG Crystal of Atlan opens today. This rather fancy way of saying beta test will remain open until March 5th and is available for PC - boo - and Android devices -... | Read more »
Prepare to get your mind melted as Evang...
If you are a fan of sci-fi shooters and incredibly weird, mind-bending anime series, then you are in for a treat, as Goddess of Victory: Nikke is gearing up for its second collaboration with Evangelion. We were also treated to an upcoming... | Read more »
Square Enix gives with one hand and slap...
We have something of a mixed bag coming over from Square Enix HQ today. Two of their mobile games are revelling in life with new events keeping them alive, whilst another has been thrown onto the ever-growing discard pile Square is building. I... | Read more »
Let the world burn as you have some fest...
It is time to leave the world burning once again as you take a much-needed break from that whole “hero” lark and enjoy some celebrations in Genshin Impact. Version 5.4, Moonlight Amidst Dreams, will see you in Inazuma to attend the Mikawa Flower... | Read more »
Full Moon Over the Abyssal Sea lands on...
Aether Gazer has announced its latest major update, and it is one of the loveliest event names I have ever heard. Full Moon Over the Abyssal Sea is an amazing name, and it comes loaded with two side stories, a new S-grade Modifier, and some fancy... | Read more »
Open your own eatery for all the forest...
Very important question; when you read the title Zoo Restaurant, do you also immediately think of running a restaurant in which you cook Zoo animals as the course? I will just assume yes. Anyway, come June 23rd we will all be able to start up our... | Read more »
Crystal of Atlan opens registration for...
Nuverse was prominently featured in the last month for all the wrong reasons with the USA TikTok debacle, but now it is putting all that behind it and preparing for the Crystal of Atlan beta test. Taking place between February 18th and March 5th,... | Read more »

Price Scanner via MacPrices.net

AT&T is offering a 65% discount on the ne...
AT&T is offering the new iPhone 16e for up to 65% off their monthly finance fee with 36-months of service. No trade-in is required. Discount is applied via monthly bill credits over the 36 month... Read more
Use this code to get a free iPhone 13 at Visi...
For a limited time, use code SWEETDEAL to get a free 128GB iPhone 13 Visible, Verizon’s low-cost wireless cell service, Visible. Deal is valid when you purchase the Visible+ annual plan. Free... Read more
M4 Mac minis on sale for $50-$80 off MSRP at...
B&H Photo has M4 Mac minis in stock and on sale right now for $50 to $80 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses: – M4 Mac mini (16GB/256GB): $549, $50 off... Read more
Buy an iPhone 16 at Boost Mobile and get one...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering one year of free Unlimited service with the purchase of any iPhone 16. Purchase the iPhone at standard MSRP, and then choose... Read more
Get an iPhone 15 for only $299 at Boost Mobil...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering the 128GB iPhone 15 for $299.99 including service with their Unlimited Premium plan (50GB of premium data, $60/month), or $20... Read more
Unreal Mobile is offering $100 off any new iP...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 14, 13, and SE... Read more
Apple drops prices on clearance iPhone 14 mod...
With today’s introduction of the new iPhone 16e, Apple has discontinued the iPhone 14, 14 Pro, and SE. In response, Apple has dropped prices on unlocked, Certified Refurbished, iPhone 14 models to a... Read more
B&H has 16-inch M4 Max MacBook Pros on sa...
B&H Photo is offering a $360-$410 discount on new 16-inch MacBook Pros with M4 Max CPUs right now. B&H offers free 1-2 day shipping to most US addresses: – 16″ M4 Max MacBook Pro (36GB/1TB/... Read more
Amazon is offering a $100 discount on the M4...
Amazon has the M4 Pro Mac mini discounted $100 off MSRP right now. Shipping is free. Their price is the lowest currently available for this popular mini: – Mac mini M4 Pro (24GB/512GB): $1299, $100... Read more
B&H continues to offer $150-$220 discount...
B&H Photo has 14-inch M4 MacBook Pros on sale for $150-$220 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – 14″ M4 MacBook Pro (16GB/512GB): $1449, $150 off MSRP – 14″ M4... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.