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

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and 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
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.