Objective-C switch using objects? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T18:28:30Z http://stackoverflow.com/feeds/question/104339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/104339/objective-c-switch-using-objects 4 Objective-C switch using objects? craigb 2008-09-19T18:29:45Z 2009-08-01T03:47:27Z <p>I'm doing some Objective-C programming that involves parsing an NSXmlDocument and populating an objects properties from the result.</p> <p>First version looked like this:</p> <pre><code>if([elementName compare:@"companyName"] == 0) [character setCorporationName:currentElementText]; else if([elementName compare:@"corporationID"] == 0) [character setCorporationID:currentElementText]; else if([elementName compare:@"name"] == 0) ... </code></pre> <p>But I don't like the <code>if-else-if-else</code> pattern this produces. Looking at the <code>switch</code> statement I see that i can only handle <code>ints</code>, <code>chars</code> etc and not objects... so is there a better implementation pattern I'm not aware of?</p> <p>BTW I did actually come up with a better solution for setting the object's properties, but I want to know specifically about the <code>if</code>-<code>else</code> vs <code>switch</code> pattern in Objective-C</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/104584#104584 2 Answer by Bradley Harris for Objective-C switch using objects? Bradley Harris 2008-09-19T19:03:00Z 2008-09-19T19:03:00Z <p>The most common refactoring suggested for eliminating if-else or switch statements is introducing polymorphism (see <a href="http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html" rel="nofollow">http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html</a>). Eliminating such conditionals is most important when they are duplicated. In the case of XML parsing like your sample you are essentially moving the data to a more natural structure so that you won't have to duplicate the conditional elsewhere. In this case the if-else or switch statement is probably good enough. </p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/104610#104610 3 Answer by Palmin for Objective-C switch using objects? Palmin 2008-09-19T19:07:00Z 2008-09-19T19:19:40Z <p>The <code>if-else</code> implementation you have is the right way to do this, since <code>switch</code> won't work with objects. Apart from maybe being a bit harder to read (which is subjective), there is no real downside in using <code>if-else</code> statements this way. </p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/109702#109702 1 Answer by Barry Wark for Objective-C switch using objects? Barry Wark 2008-09-20T23:00:21Z 2008-09-22T20:11:31Z <p>In this case, I'm not sure if you can easily refactor the class to introduce polymorphism as Bradley suggests, since it's a Cocoa-native class. Instead, the Objective-C way to do it is to use a class category to add an <code>elementNameCode</code> method to NSSting:</p> <pre><code> typedef enum { companyName = 0, companyID, ..., Unknown } ElementCode; @interface NSString (ElementNameCodeAdditions) - (ElementCode)elementNameCode; @end @implementation NSString (ElementNameCodeAdditions) - (ElementCode)elementNameCode { if([self compare:@"companyName"]==0) { return companyName; } else if([self compare:@"companyID"]==0) { return companyID; } ... { } return Unknown; } @end </code></pre> <p>In your code, you could now use a switch on <code>[elementName elementNameCode]</code> (and gain the associated compiler warnings if you forget to test for one of the enum members etc.).</p> <p>As Bradley points out, this may not be worth it if the logic is only used in one place.</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/110244#110244 1 Answer by Kendall Helmstetter Gelner for Objective-C switch using objects? Kendall Helmstetter Gelner 2008-09-21T04:30:17Z 2008-09-21T04:30:17Z <p>Although there's not necessarily a better way to do something like that for one time use, why use "compare" when you can use "isEqualToString"? That would seem to be more performant since the comparison would halt at the first non-matching character, rather than going through the whole thing to calculate a valid comparison result (though come to think of it the comparison might be clear at the same point) - also though it would look a little cleaner because that call returns a BOOL.</p> <pre><code>if([elementName isEqualToString:@"companyName"] ) [character setCorporationName:currentElementText]; else if([elementName isEqualToString:@"corporationID"] ) [character setCorporationID:currentElementText]; else if([elementName isEqualToString:@"name"] ) </code></pre> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/110254#110254 6 Answer by jmah for Objective-C switch using objects? jmah 2008-09-21T04:37:51Z 2008-09-21T04:37:51Z <p>You should take advantage of Key-Value Coding:</p> <pre><code>[character setValue:currentElementText forKey:elementName]; </code></pre> <p>If the data is untrusted, you might want to check that the key is valid:</p> <pre><code>if (![validKeysCollection containsObject:elementName]) // Exception or error </code></pre> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/118361#118361 2 Answer by Brad Larson for Objective-C switch using objects? Brad Larson 2008-09-23T00:14:44Z 2008-09-23T00:14:44Z <p>One way I've done this with NSStrings is by using an NSDictionary and enums. It may not be the most elegant, but I think it makes the code a little more readable. The following pseudocode is extracted from <a href="http://sunsetlakesoftware.com/molecules" rel="nofollow">one of my projects</a>:</p> <pre><code>typedef enum { UNKNOWNRESIDUE, DEOXYADENINE, DEOXYCYTOSINE, DEOXYGUANINE, DEOXYTHYMINE } SLSResidueType; static NSDictionary *pdbResidueLookupTable; ... if (pdbResidueLookupTable == nil) { pdbResidueLookupTable = [[NSDictionary alloc] initWithObjectsAndKeys: [NSNumber numberWithInteger:DEOXYADENINE], @"DA", [NSNumber numberWithInteger:DEOXYCYTOSINE], @"DC", [NSNumber numberWithInteger:DEOXYGUANINE], @"DG", [NSNumber numberWithInteger:DEOXYTHYMINE], @"DT", nil]; } SLSResidueType residueIdentifier = [[pdbResidueLookupTable objectForKey:residueType] intValue]; switch (residueIdentifier) { case DEOXYADENINE: do something; break; case DEOXYCYTOSINE: do something; break; case DEOXYGUANINE: do something; break; case DEOXYTHYMINE: do something; break; } </code></pre> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/138452#138452 1 Answer by Michael Buckley for Objective-C switch using objects? Michael Buckley 2008-09-26T09:26:59Z 2008-09-26T19:41:32Z <p>I hope you'll all forgive me for going out on a limb here, but I would like to address the more general question of parsing XML documents in Cocoa without the need of if-else statements. The question as originally stated assigns the current element text to an instance variable of the character object. As jmah pointed out, this can be solved using key-value coding. However, in a more complex XML document this might not be possible. Consider for example the following.</p> <pre><code>&lt;xmlroot&gt; &lt;corporationID&gt; &lt;stockSymbol&gt;EXAM&lt;/stockSymbol&gt; &lt;uuid&gt;31337&lt;/uuid&gt; &lt;/corporationID&gt; &lt;companyName&gt;Example Inc.&lt;/companyName&gt; &lt;/xmlroot&gt; </code></pre> <p>There are multiple approaches to dealing with this. Off of the top of my head, I can think of two using NSXMLDocument. The first uses NSXMLElement. It is fairly straightforward and does not involve the if-else issue at all. You simply get the root element and go through its named elements one by one.</p> <pre><code>NSXMLElement* root = [xmlDocument rootElement]; // Assuming that we only have one of each element. [character setCorperationName:[[[root elementsForName:@"companyName"] objectAtIndex:0] stringValue]]; NSXMLElement* corperationId = [root elementsForName:@"corporationID"]; [character setCorperationStockSymbol:[[[corperationId elementsForName:@"stockSymbol"] objectAtIndex:0] stringValue]]; [character setCorperationUUID:[[[corperationId elementsForName:@"uuid"] objectAtIndex:0] stringValue]]; </code></pre> <p>The next one uses the more general NSXMLNode, walks through the tree, and directly uses the if-else structure.</p> <p>// The first line is the same as the last example, because NSXMLElement inherits from NSXMLNode NSXMLNode* aNode = [xmlDocument rootElement]; while(aNode = [aNode nextNode]){ if([[aNode name] isEqualToString:@"companyName"]){ [character setCorperationName:[aNode stringValue]]; }else if([[aNode name] isEqualToString:@"corporationID"]){ NSXMLNode* correctParent = aNode; while((aNode = [aNode nextNode]) == nil &amp;&amp; [aNode parent != correctParent){ if([[aNode name] isEqualToString:@"stockSymbol"]){ [character setCorperationStockSymbol:[aNode stringValue]]; }else if([[aNode name] isEqualToString:@"uuid"]){ [character setCorperationUUID:[aNode stringValue]]; } } } }</p> <p>This is a good candidate for eliminating the if-else structure, but like the original problem, we can't simply use switch-case here. However, we can still eliminate if-else using NSInvocation. The first step is to define the a method for each element.</p> <pre><code>- (NSNode*)parse_companyName:(NSNode*)aNode { [character setCorperationName:[aNode stringValue]]; return aNode; } - (NSNode*)parse_corporationID:(NSNode*)aNode { NSXMLNode* correctParent = aNode; while((aNode = [aNode nextNode]) == nil &amp;&amp; [aNode parent != correctParent){ [self invokeMethodForNode:aNode prefix:@"parse_corporationID_"]; } return [aNode previousNode]; } - (NSNode*)parse_corporationID_stockSymbol:(NSNode*)aNode { [character setCorperationStockSymbol:[aNode stringValue]]; return aNode; } - (NSNode*)parse_corporationID_uuid:(NSNode*)aNode { [character setCorperationUUID:[aNode stringValue]]; return aNode; } </code></pre> <p>The magic happens in the invokeMethodForNode:prefix: method. We generate the selector based on the name of the element, turn it into an NSInvocation, pass aNode in as the only parameter (NSInvocation parameters start at 2), and invoke the NSInvocation. Presto bango, we've eliminated the need for an if-else statement. Here's the code for that method.</p> <pre><code>- (NSNode*)invokeMethodForNode:(NSNode*)aNode prefix:(NSString*)aPrefix { NSNode* ret = nil; NSMutableString* methodName = [NSMutableString stringWithCapacity:[prefix length] + [[aNode name] length] + 1]; [methodName appendString:prefix]; [methodName appendString:[aNode name]; [methodName appendString"@":"]; SEL selector = NSSelectorFromString(methodName); NSMethodSignature* sig = [[self class] instanceMethodSignatureForSelector:selector]; if(sig != nil){ NSInvocation* invocation = [NSInvocation invocationWithMethodSignature:sig]; [invocation setSelector:selector]; [invocation setTarget:self]; [invocation setArgument:&amp;aNode atIndex:2]; [invocation invoke]; [invocation getReturnValue:&amp;ret]; } return ret; } </code></pre> <p>Now, instead of our larger if-else statement (the one that differentiated between companyName and corporationID), we can simply write one line of code</p> <pre><code>NSXMLNode* aNode = [xmlDocument rootElement]; while(aNode = [aNode nextNode]){ aNode = [self invokeMethodForNode:aNode prefix:@"parse_"]; } </code></pre> <p>Now I apologize if I got any of this wrong, it's been a while since I've written anything with NSXMLDocument, it's late at night and I didn't actually test this code. So if you see anything wrong, please leave a comment or edit this answer.</p> <p>However, I believe I have just shown how NSInvocation can be used in Cocoa to completely eliminate if-else statements in cases like this. There are a few gotchas and corner cases. You have to make sure that the method names you generate aren't going to call other methods, especially if your NSInvocation is targeting another object, and this particular method naming scheme won't work on elements with non-alphanumeric characters. You could get around that by escaping the XML element names in your method names somehow, or by building an NSDictioanry using the method names as the keys and the selectors as the values. This can get pretty memory intensive and end up taking a longer time. NSInvocation dispatch like I described is pretty fast. For very large if-else statements, this method may even be faster than an if-else statement.</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/141544#141544 2 Answer by epatel for Objective-C switch using objects? epatel 2008-09-26T19:49:43Z 2009-01-10T22:06:19Z <p>Dare I suggest using a macro?</p> <pre><code>#define TEST( _name, _method ) \ if ([elementName isEqualToString:@ _name] ) \ [character _method:currentElementText]; else #define ENDTEST { /* empty */ } TEST( "companyName", setCorporationName ) TEST( "setCorporationID", setCorporationID ) TEST( "name", setName ) : : ENDTEST </code></pre> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/142128#142128 4 Answer by Wevah for Objective-C switch using objects? Wevah 2008-09-26T21:35:18Z 2008-09-27T00:56:54Z <p>If you want to use as little code as possible, and your element names and setters are all named so that if elementName is @"foo" then setter is setFoo:, you could do something like:</p> <pre><code>SEL selector = NSSelectorFromString([NSString stringWithFormat:@"set%@:", [elementName capitalizedString]]); [character performSelector:selector withObject:currentElementText]; </code></pre> <p>or possibly even:</p> <pre><code>[character setValue:currentElementText forKey:elementName]; // KVC-style </code></pre> <p>Though these will of course be a bit slower than using a bunch of if statements.</p> <p>[Edit: The second option was already mentioned by someone; oops!]</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/143203#143203 1 Answer by jake for Objective-C switch using objects? jake 2008-09-27T08:00:28Z 2008-09-27T08:00:28Z <p>There is actually a fairly simple way to deal with cascading if-else statements in a language like Objective-C. Yes, you can use subclassing and overriding, creating a group of subclasses that implement the same method differently, invoking the correct implementation at runtime using a common message. This works well if you wish to choose one of a few implementations, but it can result in a needless proliferation of subclasses if you have many small, slightly different implementations like you tend to have in long if-else or switch statements.</p> <p>Instead, factor out the body of each if/else-if clause into its own method, all in the same class. Name the messages that invoke them in a similar fashion. Now create an NSArray containing the selectors of those messages (obtained using @selector()). Coerce the string you were testing in the conditionals into a selector using NSSelectorFromString() (you may need to concatenate additional words or colons to it first depending on how you named those messages, and whether or not they take arguments). Now have self perform the selector using performSelector:.</p> <p>This approach has the downside that it can clutter-up the class with many new messages, but it's probably better to clutter-up a single class than the entire class hierarchy with new subclasses.</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/262687#262687 1 Answer by Mike Shields for Objective-C switch using objects? Mike Shields 2008-11-04T17:48:20Z 2008-11-04T17:48:20Z <p>What we've done in our projects where we need to so this sort of thing over and over, is to set up a static CFDictionary mapping the strings/objects to check against to a simple integer value. It leads to code that looks like this:</p> <pre><code>static CFDictionaryRef map = NULL; int count = 3; const void *keys[count] = { @"key1", @"key2", @"key3" }; const void *values[count] = { (uintptr_t)1, (uintptr_t)2, (uintptr_t)3 }; if (map == NULL) map = CFDictionaryCreate(NULL,keys,values,count,&amp;kCFTypeDictionaryKeyCallBacks,NULL); switch((uintptr_t)CFDictionaryGetValue(map,[node name])) { case 1: // do something break; case 2: // do something else break; case 3: // this other thing too break; } </code></pre> <p>If you're targeting Leopard only, you could use an NSMapTable instead of a CFDictionary.</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/1215783#1215783 2 Answer by Dennis Munsie for Objective-C switch using objects? Dennis Munsie 2009-08-01T03:47:27Z 2009-08-01T03:47:27Z <p>Posting this as a response to Wevah's answer above -- I would've edited, but I don't have high enough reputation yet:</p> <p>unfortunately the first method breaks for fields with more than one word in them -- like xPosition. capitalizedString will convert that to Xposition, which when combined with the format give you setXposition: . Definitely not what was wanted here. Here is what I'm using in my code:</p> <pre><code>NSString *capName = [elementName stringByReplacingCharactersInRange:NSMakeRange(0, 1) withString:[[elementName substringToIndex:1] uppercaseString]]; SEL selector = NSSelectorFromString([NSString stringWithFormat:@"set%@:", capName]); </code></pre> <p>Not as pretty as the first method, but it works.</p>