C Macros to create strings - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T10:39:09Z http://stackoverflow.com/feeds/question/798221 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/798221/c-macros-to-create-strings 5 C Macros to create strings rjstelling 2009-04-28T14:21:01Z 2009-04-29T19:03:56Z <p>I would like to use C #define to build literal strings at compile time.</p> <p>The string are domains that change for debug, release etc.</p> <p>I would like to some some thing like this:</p> <pre><code>#ifdef __TESTING #define IV_DOMAIN domain.org //in house testing #elif __LIVE_TESTING #define IV_DOMAIN test.domain.com //live testing servers #else #define IV_DOMAIN domain.com //production #endif // Sub-Domain #define IV_SECURE "secure.IV_DOMAIN" //secure.domain.org etc #define IV_MOBILE "m.IV_DOMAIN" </code></pre> <p>But the preprocessor doesn't evaluate anything within ""</p> <ol> <li>Is there a way around this?</li> <li>Is this even a good idea?</li> </ol> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798231#798231 5 Answer by JaredPar for C Macros to create strings JaredPar 2009-04-28T14:23:26Z 2009-04-28T14:23:26Z <p>Try using the ## operator</p> <pre><code>#define IV_SECURE secure.##IV_DOMAIN </code></pre> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798248#798248 5 Answer by rpetrich for C Macros to create strings rpetrich 2009-04-28T14:25:41Z 2009-04-28T14:31:43Z <p>Strings that are next together are combined by the C compiler.</p> <pre><code>#define DOMAIN "example.com" #define SUBDOMAIN "test." DOMAIN const char *asCString = SUBDOMAIN; NSString *asNSString = @SUBDOMAIN; </code></pre> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798272#798272 3 Answer by David Thornley for C Macros to create strings David Thornley 2009-04-28T14:29:36Z 2009-04-28T16:41:57Z <p>What you need are the # and ## operators, and automatic string concatenation.</p> <p>The # preprocessing operator turns the macro parameter into a string. The ## operator pastes two tokens (such as macro parameters) together.</p> <p>The possibility that comes to mind to me is</p> <pre><code>#define IV_DOMAIN domain.org #define IV_SECURE(DOMAIN) "secure." #DOMAIN </code></pre> <p>which should change IV_SECURE to</p> <pre><code>#define IV_SECURE "secure." "domain.org" </code></pre> <p>which will automatically concatenate to "secure.domain.org" (assuming the phases of translation are the same in C as C++).</p> <p>ANOTHER EDIT: Please, please read the comments, which show how I've managed to get confused. Bear in mind that I am thoroughly experienced in C, although perhaps a touch rusty. I would delete this answer, but I thought I'd leave it as an example of how easy it is to get confused by the C preprocessor.</p> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798275#798275 9 Answer by Checkers for C Macros to create strings Checkers 2009-04-28T14:30:22Z 2009-04-28T15:08:34Z <p>In C, string literals are concatenated automatically. For example,</p> <pre><code>const char * s1 = "foo" "bar"; const char * s2 = "foobar"; </code></pre> <p><code>s1</code> and <code>s2</code> are the same string.</p> <p>So, for your problem, the answer (without token pasting) is</p> <pre><code>#ifdef __TESTING #define IV_DOMAIN "domain.org" #elif __LIVE_TESTING #define IV_DOMAIN "test.domain.com" #else #define IV_DOMAIN "domain.com" #endif #define IV_SECURE "secure." IV_DOMAIN #define IV_MOBILE "m." IV_DOMAIN </code></pre> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798276#798276 2 Answer by Neil Butterworth for C Macros to create strings Neil Butterworth 2009-04-28T14:30:26Z 2009-04-28T14:30:26Z <p>As others have noted, use token pasting. You should also be aware that macro names like</p> <pre><code>__TESTING </code></pre> <p>are reserved in C (don't know about Objective C) for the implementation - you are not allowed to use them in your own code. The reserved names are anything containing double underscores and anything begining with an underscore and an uppercase letter.</p> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798311#798311 3 Answer by Michael Burr for C Macros to create strings Michael Burr 2009-04-28T14:38:27Z 2009-04-28T15:00:41Z <p>There are a couple ways to do this:</p> <ol> <li><p>if you're dealing with only string literals, you can simply use simply use strings - placing one string literal after another causes the compiler to concatenate them.</p></li> <li><p>if there may be other things than string literals involved (ie., you are creating new identifiers from the macros) use the '<code>##</code>" preprocessor token pasting operator. You'd probably also need to use the '<code>#</code>' 'stringizing operator to make your macros into literal strings.</p></li> </ol> <p>An example of #1:</p> <pre><code>#ifdef __TESTING #define IV_DOMAIN "domain.org" //in house testing #elif __LIVE_TESTING #define IV_DOMAIN "test.domain.com" //live testing servers #else #define IV_DOMAIN "domain.com" //production #endif // Sub-Domain #define IV_SECURE "secure." IV_DOMAIN //secure.domain.org etc #define IV_MOBILE "m." IV_DOMAIN </code></pre> <p>And as far as the token pasting operator goes, I don't think that most of the answers that suggested using the token pasting preprocessor operator have actually tried it - it can be tricky to use.</p> <p>Using the answer that is often suggested will result in a compiler error when you try to use the <code>IV_SECURE</code> macro, because:</p> <pre><code>#define IV_SECURE "secure."##IV_DOMAIN </code></pre> <p>expands to:</p> <pre><code>"secure"domain.org </code></pre> <p>You might want to try to use the <code>'</code>#`' 'stringizing' operator:</p> <pre><code>#define IV_SECURE "secure." #IV_DOMAIN </code></pre> <p>But that won't work because it only works on macro arguments - not just any old macro.</p> <p>one thing to be aware of when you're using the token-paste ('##') or stringizing ('#') preprocessing operators is that you have to use an extra level of indirection for them to work properly in all cases.</p> <p>If you don't do this and the items passed to the token-pasting operator are macros themselves, you'll get results that are probably not what you want:</p> <pre><code>#include &lt;stdio.h&gt; #define STRINGIFY2( x) #x #define STRINGIFY(x) STRINGIFY2(x) #define PASTE2( a, b) a##b #define PASTE( a, b) PASTE2( a, b) #define BAD_PASTE(x,y) x##y #define BAD_STRINGIFY(x) #x #define SOME_MACRO function_name int main() { printf( "buggy results:\n"); printf( "%s\n", STRINGIFY( BAD_PASTE( SOME_MACRO, __LINE__))); printf( "%s\n", BAD_STRINGIFY( BAD_PASTE( SOME_MACRO, __LINE__))); printf( "%s\n", BAD_STRINGIFY( PASTE( SOME_MACRO, __LINE__))); printf( "\n" "desired result:\n"); printf( "%s\n", STRINGIFY( PASTE( SOME_MACRO, __LINE__))); } </code></pre> <p>The output:</p> <pre><code>buggy results: SOME_MACRO__LINE__ BAD_PASTE( SOME_MACRO, __LINE__) PASTE( SOME_MACRO, __LINE__) desired result: function_name21 </code></pre> <p>So using your original <code>IV_DOMAIN</code> defines and the utilty macros from above, you could do this to get what you want:</p> <pre><code>// Sub-Domain #define IV_SECURE "secure." STRINGIFY( IV_DOMAIN) //secure.domain.org etc #define IV_MOBILE "m." STRINGIFY( IV_DOMAIN) </code></pre> http://stackoverflow.com/questions/798221/c-macros-to-create-strings/798321#798321 2 Answer by rmeador for C Macros to create strings rmeador 2009-04-28T14:40:04Z 2009-04-28T14:40:04Z <p>I see lots of good and correct answers to your first question, but none to your second, so here's this: I think this is a terrible idea. Why should you have to rebuild your software (particularly the release version) just to change the server name? Also, how will you know which version of your software points at which server? You'll have to build in a mechanism to check at runtime. If it's at all practical on your platform, I recommend you load the domains/URLs from a config file. Only the smallest of embedded platforms may not be "practical" for that purpose :)</p>