TweetFollow Us on Twitter

Blessed Folder
Volume Number:5
Issue Number:9
Column Tag:HyperChat™

Related Info: File Manager (PBxxx)

The Blessed Folder

By Donald Koscheka, Arthur Young & Co., MacTutor Contributing Editor

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

A colleague related an interesting experience that occurred to him at MacHacks this year. He asked an Apple Engineer whether he could mount Appleshare volumes under program control. The engineer asked him why he’d want to and went on to explain that it’s simply not something you do. If you need to mount Appleshare volumes, use the chooser.

This struck me as odd because I’ve always believed that your programs should be able to do anything that the user can do.

Imagine some inexperienced user being told that “the server has unexpectedly shut down”. Consider the options that this error message presents to the uninitiated: Ask someone what’s going on, call Apple’s customer service department or read the manual.

Each one of these options punishes the user for a mistake that he or she did not make! Why not have a little task running somewhere that tries to reconnect the user and, failing that, alerts the poor soul that they may have to visit the chooser to regain access to the server?

Perhaps too many people at Apple are falling into that old trap of believing in everything they read. The human interface guidelines should be just that, guidelines. When you start taking guidelines as gospel, you start closing the door on creativity and intuition.

It seems to me that the good people at Apple need to spend less time saying “You can’t do that” and spend more time asking, “Why can’t you do that?”

The file manager is another area where the Macintosh tends to dump problems in the user’s lap. Consider the “Where is ...” dialog that pops up in Hypercard from time to time. Imagine how intimidating that must be to the neophyte, “If the computer can’t find it, I’m sure not going to have any luck”.

A better user interface might suggest to the user that the Mac can search the disk on the user’s behalf. It might take a while, but if the user doesn’t have a clue as to where some file is, time really doesn’t become an issue.

The problem with the file manager is that it relies too heavily on the user. Giving control to the user is a wonderful idea. Nonetheless, the user should be able to delegate tasks like searching back to the Macintosh.

Perhaps you need to store a preferences or help file somewhere. If the user moves this file on you, are you supposed to pop a dialog asking the user to find the file for you again? Of course not, you’re going to store the file in a folder that you’re guaranteed to have access to at all times. That folder is the blessed folder, so called because it contains the system file and startup application (typically the Finder). All you need is access to the blessed folder under program control and your problem is solved.

Fortunately, Apple does have a champion for developers who would like to unload some of the file management stuff from the user. Jim Friedlander has published many useful tech notes for developer technical services describing how to do things like finding that blessed folder.

Listing 1 adds an interesting spin to this blessed folder business. This XCMD, called Volumes, returns a list of all mounted volumes. The volumes XCMD uses a handy little routine called pStrToField that adds a pascal format string to the end of a zero-terminated run of text. It’s a useful way of adding names that you get from the toolbox which are almost always Pascal strings to a container that you can return to Hypercard.

If you’re building a list, terminate each item with the ‘\r’ (carriage return) character. If you are building items, then use a comma. If you don’t want any delimiters, then pass a ‘\0’.

Because pStrToField is a general purpose routine, you should add it to whatever library you use to store such routines. If you are a regular reader of this column, you know that I use a file called “HyperUtils.c” for such routines.

Retrieving the list of volumes is simple. Set some index counter to 1. Then repeatedly call PBHGetVinfo with the following fields set in the parameter block:

  ioNamePtr = pointer to a string to store the name in
  ioVRefNum  = -1, tell file manager to use the volume index.
  ioVolIndex= your index counter.  

Keep incrementing ioVolIndex until PBHGetVInfo returns an error. That’s a good indication that no more volumes were found.

Each time that pbHGetVInfo succeeds, the name of the found volume will be returned in ioNamePtr as a Pascal string. We tack the obligatory colon to the end of this name and then add the new string to the volume list that we’re building in vList.

After all is said and done, we set the last character in the container to 0 because Hypercard expects containers to be null terminated.

Knowing the names of all mounted volumes may not seem useful at first blush but given a little time, I’m sure you’ll find many interesting ways to use this XCMD.

Once we know all the volume names on line, we can find all the blessed folders. A blessed folder is one that contains the system and startup application (usually the finder). You can find the blessed folder by inspection; it’s the one whose folder contains a very small image of a Macintosh.

Knowing the blessed folder does have applicability in very many cases. Perhaps your XCMD expects to store a preferences file in the blessed folder. At any rate, knowing how to find the blessed folder should be a part of every Mac programmer’s repertoire. The XCMD in listing 2, BlessedFolder, does just that. It’s based on tech note #129 by Jim Friedlander.

Note that this time we use PBHGetvinfo with the volume reference set to 0 and the index set to -1. By passing the name of a volume, we are telling the file manager to look up information about this volume using its name rather than a reference number or index.

The information returned by PBHGetVinfo gets a little fuzzy here. One of the fields returned is ioVFndrInfo which is an array of 8 ling integers. The first entry in this array is the id of the blessed folder. I’m sure this array is documented somewhere in tech notes and if you want to further explore this information, that’s a good place to start since IM volume IV seems to gloss over this field.

Once we know the directory id of the blessed folder, we can pass it to, climbtree (published last month), to reconstruct the full pathname of this folder. Climbtree works just as well for folders as it does for files. We start climbtree off with the directory id of the blessed folder which was assigned to theCPB.dirInfo.ioDrDirID. Climbtree also needs a volume reference number which we pass via ioVRefNum.

Climbtree requires that you declare a CInfoPBRec somewhere before calling it. This is because Climbtree is recursive, and I didn’t want stack space being consumed by a declaration of the relatively large catalog info record with each activation. If you’re a purist, you might take your chances with the heap and create a nonrelocatable block in each activation. If 8K seems like too much stack space to you, go ahead and declare theCPB as an automatic of climbtree.

This month’s XCMDs fall into the category of “Now that I have them, what can I do with them”. Play around for a while and see what you discover on your own. In the meantime, I’ll be cooking up some useful applications for these XCMDs.

/************************************/
/* File: Volumes.c */
/* */
/* Return a list of all on-line  */
/* Takes no input and returns */
/* a carrieage return delimited  */
/* list of all volumes currently */
/* on line*/
/* */
/* --------------------------------*/
/* ©1989, Donald Koscheka */
/* All Rights Reserved    */
/************************************/

#include<MacTypes.h>
#include<OSUtil.h>
#include<MemoryMgr.h>
#include<FileMgr.h>
#include<ResourceMgr.h>
#include<pascal.h>
#include<hfs.h>
#include<string.h>
#include  “HyperXCmd.h”
#include“HyperUtils.h”

#define nil 0L

char    colon[2] = “\p:”;

short pStrToField( str, delim, list )
 char *str; 
 char delim;
 Handle list;
/*********************************
* Given a pascal string, append it to
* the end of the handle passed in list
* which is assumed to be a valid handle
* of length >= 0.
*
* delim is some character to stick on the
* end of the string to delimit it.
* if you want to build a list for presentation
* in a field, pass ‘\r’ as the delimiter
*
* If you are building items pass a comma
* 
* A value of 0 for delim is ignored.  Pass
* 0 when you don’t want a delimiter.
*********************************/
{
 long   strlen;/* length of input string*/
 long   oldHSize;/* size of input handle*/
 char   *end;  /* pointer to end of data     */
 
 strlen = str[0];/* length of string is in first byte*/
 oldHSize = GetHandleSize( list );
 
 SetHandleSize( list, oldHSize + strlen );
 end = *list + oldHSize;

 BlockMove( (char *)&str[1] , end, strlen );
 
 if( delim ){
 oldHSize = GetHandleSize( list );
 SetHandleSize( list, oldHSize + 1 );
 end = *list + oldHSize;
 *end = delim;
 } 
}

pascal void main( paramPtr )
 XCmdBlockPtr  paramPtr;
{
 short  index;
 long   len; 
 char   *end;
 HParamBlockRec  theHPB;
 Handle vlist;
 char   vol_Name[256];
 OSErr  err;

 colon[0] = 1;
 colon[1] = ‘:’;
 
 /*** empty is the default answer ***/
 vlist = NewHandle( 0L );

 /*** Search for every volume that is on-line***/
 index = 1;
 do{  /*** Appeal to the volume manager      ***/
 /*** for the name of each volume  ***/
 /*** that is known to it ***/

 vol_Name[0] = ‘\0’;
 theHPB.volumeParam.ioNamePtr = (StringPtr)vol_Name;     
 theHPB.volumeParam.ioVRefNum = (short)-1;         
 theHPB.volumeParam.ioVolIndex   = index;                      
 err = PBHGetVInfo( &theHPB, 0);
 
 if ( !err ){/** Add each Volume to List **/
 Concat( vol_Name, colon );
 pStrToField( (char *)&vol_Name, ‘\r’, vlist );
 index += 1;
 }
 }while (err == noErr);

 /*** once done, tack a 0 onto the end of vlist ***/
 len = GetHandleSize( vlist );
 SetHandleSize( vlist, len+1 );
 end = *vlist + len;
 *end = ‘\0’;
 
 paramPtr->returnValue = vlist;
}

Listing 1. Volumes.c


/************************************/
/* File: Blessed Folder.c */
/* */
/* Given the name of a volume */
/* in params[0]  */
/* returns the id of the  */
/* blessed folder. */
/* --------------------------------*/
/* Based on tech note #129*/
/* by Jim Friedlander*/
/************************************/

#include<MacTypes.h>
#include<OSUtil.h>
#include<MemoryMgr.h>
#include<FileMgr.h>
#include<ResourceMgr.h>
#include<pascal.h>
#include<hfs.h>
#include<string.h>
#include  “HyperXCmd.h”
#include“HyperUtils.h”

#define nil 0L

char    colon[2] = “\p:”;
pascal void main( paramPtr )
 XCmdBlockPtr  paramPtr;
{
long    sid;/*** id of  blessed folder ***/
HParamBlockRec theHPB;  
CInfoPBRectheCPB;/**to reconstruct path name**/
char    vName[256];/*** volume we’re checking      ***/
char    fullPath[256];
OSErr   err;

 HLock( paramPtr->params[0] );
 ZeroToPas( paramPtr, *(paramPtr->params[0]), &vName );
 HUnlock( paramPtr->params[0] );
 /*** Given the name of a volume,  ***/
 /*** try to get the volume reference***/
 /*** number     ***/
 theHPB.volumeParam.ioNamePtr = (StringPtr)vName;  
 theHPB.volumeParam.ioVRefNum = (short)0;          
 theHPB.volumeParam.ioVolIndex = -1; 
 err = PBHGetVInfo( &theHPB, 0);

  fullPath[0] = ‘\0’;
 if ( !err ){
 theCPB.dirInfo.ioFDirIndex = -1;
 theCPB.dirInfo.ioDrDirID =theHPB.volumeParam.ioVFndrInfo[0]; 
 theCPB.dirInfo.ioVRefNum   = theHPB.volumeParam.ioVRefNum;    
 fullPath[0] = ‘\0’; 
 ClimbTree(theCPB.dirInfo.ioDrDirID,
 (CInfoPBPtr)&theCPB, (char *)fullPath );
 }
 paramPtr->returnValue = PasToZero( paramPtr, fullPath );
}

Listing 2. BlessedFolder.c

 

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.