I'm not groking the current implementation of stracc in the objc bundle.
- (NSString *)${1:thing} { return ${2:f${1/(.)(.*)/\U$1\E$2/}}; }
- (void)set${3:${1/(.)(.*)/\U$1\E$2/}}:(NSString *) $1 { NSString * old${3:Thing} = ${2:fThing}; $2 = [${1:thing} copy]; [old${3:Thing} release]; }
Clearly fThing is not defined so return fThing makes no sense in a getter accessor method. Nor does instantiating another string object in the setter method.
A "working" objc stracc:
- (NSString *)${1:thing} { return ${2:${1/(.)(.*)/$1\E$2/}}; }
- (void)set${3:${1/(.)(.*)/\U$1\E$2/}}:(NSString *)${4:a$3} { $4 = [$4 copy]; [$1 release]; $1 = $4; }
[This models the string accessor implementation defined in Hillegass ... if it's not correct, maybe someone should tell Aaron.]
Refactoring and/or explanation as to the current defined stracc is welcome/encouraged.
-- Mark Grimes Stateful Labs mark@stateful.net
On 12/4/2006, at 23:37, Mark Grimes wrote:
[...] Clearly fThing is not defined so return fThing makes no sense in a getter accessor method. Nor does instantiating another string object in the setter method.
As for fThing, I have no idea. I guess f is a prefix to signal “instance variable.” I don’t see anything new instantiated in the setter though. It makes a copy of the ivar pointer, copies the new value to the ivar, and the releases the old ivar via the copied pointer.
I did however update it, now that you brought it up. I removed a few of your placeholders, here’s what I am left with:
- (NSString *)${1:thing} { return ${2:$1}; }
- (void)set${1/.*/\u$0/}:(NSString *)${3:a${1/.*/\u$0/}} { $3 = [$3 copy]; [$2 release]; $2 = $3; }
[This models the string accessor implementation defined in Hillegass ... if it's not correct, maybe someone should tell Aaron.]
I beleive Apple had a Cocoa Intro section up on ADC (from WWDC) long ago where they spent at least 15 minutes talking about several different strategies with respect to writing getters and, in particular, setters -- each with their own advantages.
For example should you retain/autorelease in your getter (what if A gets your value, then B sets a new value, now A is holding a pointer to a released object, but this may be in teh same “cycle”, so A is in good faith) -- should you autorelease your ivar in the setter (another solution to the previous problem), should you retain or copy, etc.
On Apr 12, 2006, at 4:19 PM, Allan Odgaard wrote:
On 12/4/2006, at 23:37, Mark Grimes wrote:
[...] Clearly fThing is not defined so return fThing makes no sense in a getter accessor method. Nor does instantiating another string object in the setter method.
As for fThing, I have no idea. I guess f is a prefix to signal “instance variable.” I don’t see anything new instantiated in the setter though. It makes a copy of the ivar pointer, copies the new value to the ivar, and the releases the old ivar via the copied pointer.
This brings to question other accessor snippets. Take scalars for instance:
- (${1:unsigned int})${2:thing} { return ${3:fThing}; }
- (void)set${2/./\u$0/}:(${1:unsigned int})new${2/./\u$0/} { ${3:fThing} = new${2/./\u$0/}; }
Clearly this fThing is a problem... a simple insert and recompile generates errors and warnings. Does anyone on the list know why this is there, and if it is a shortcut to some prefix voodoo, why doesn't it just work as-is? I'm inclined to want to change this as well.
(On a side note: Mmmmmm CoreData accessor... woot bbum!)
-- Mark Grimes Stateful Labs mark@stateful.net