473,320 Members | 2,107 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

String comparison in preprocessor commands

L.S.

How can I make certain code parts be compiled conditionally, depending
on the definition of a macro such as:

#define VERSION "2.3"

Is it all right to do things like:
#if VERSION == "2.3"
...../* conditionally compiled code */
#endif

#if VERSION != "2.3"
...../* conditionally compiled code */
#endif

#if VERSION > "2.3"
...../* conditionally compiled code */
#endif
Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.
Thanks for any help,

Erik Leunissen
--
leunissen@ nl | Merge the left part of these two lines into one,
e. hccnet. | respecting a character's position in a line.

Nov 14 '05 #1
7 44052
Erik Leunissen wrote:
L.S.

How can I make certain code parts be compiled conditionally, depending
on the definition of a macro such as:

#define VERSION "2.3"

Is it all right to do things like:
#if VERSION == "2.3"
..../* conditionally compiled code */
#endif

#if VERSION != "2.3"
..../* conditionally compiled code */
#endif

#if VERSION > "2.3"
..../* conditionally compiled code */
#endif
Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.
Please check the FAQ (http://www.eskimo.com/~scs/C-faq/top.html) before
posting, see question 10.12.

Thanks for any help,

Erik Leunissen


Rob Gamble

Nov 14 '05 #2
In article <42*********************@reader10.nntp.hccnet.nl >,
Erik Leunissen <lo**@the.footer.invalid> wrote:


#if VERSION > "2.3"
..../* conditionally compiled code */
#endif


There is no simple, direct way to do this with macros.

Some unpleasant but workable solutions are:

- Rewrite the macro as separate integers. Then your conditional
compilation can do stuff like:

#if MAJOR_VERSION > 2 || (MAJOR_VERSION == 2 && MINOR_VERSION > 3) /*etc*/

- Rewrite the macro as a single integer with an implied decimal
point, i.e. if you think you'll never have a version between
2.99 and 3.00, you can do this:

#define VERSION 203

and then integer comparisons like

#if VERSION > 203

will do the right thing.

- Use an additional make dependency or a "pre-build" step to run a
small command line program that does something along the lines of:

int major, minor;
sscanf(VERSION, "%d.%d", &major, &minor); /* not the best way */
printf("#define MAJOR_VERSION %d\n", major);
printf("#define MINOR_VERSION %d\n", minor);
printf("#define IMPLIED_DECIMAL_VERSION %d\n", major*100+minor);

with output redirected to a .h file. Then you can use one of
the previous solutions w/o changing VERSION itself.

- If the difference between versions is something like a significant
API change, it's often the case that the API has some new macros or
has removed some old ones. If you can make the conditional
compliation depend on the presense/absence of a guaranteed part of
the API then you don't need to specifically use the version number
itself.

- If the conditionally compiled code is not a huge amount, make it not
be conditionally compiled--do the check for version number at
run time. Convert to double and plain old if's will work. Unless
you have some hard space or time performance limits, it's likely
that the extra overhead will be unnoticeable. Also, this opens up
the possibility of using something like an environment variable
to switch between old and new behaviors.
--
7842++
Nov 14 '05 #3


Erik Leunissen wrote:
L.S.

How can I make certain code parts be compiled conditionally, depending
on the definition of a macro such as:

#define VERSION "2.3"

Is it all right to do things like:
#if VERSION == "2.3"
..../* conditionally compiled code */
#endif

#if VERSION != "2.3"
..../* conditionally compiled code */
#endif

#if VERSION > "2.3"
..../* conditionally compiled code */
#endif
No, that won't work: The preprocessor can generate
string literals, but it can't actually work with strings.
(In particular, it can't compare them.)

What you *can* do, which may be satisfactory for some
purposes, is use the preprocessor to generate a compile-
time constant, test that value with `if' instead of `#if',
and rely on the compiler to eliminate dead code:

#define MAJOR (VERSION[0] - '0')
#define MINOR (VERSION[2] - '0')
if (MAJOR == 2 && MINOR == 3) { ... }
if (MAJOR != 2 || MINOR != 3) { ... }
if (MAJOR > 2 || (MAJOR == 2 && MINOR > 3)) { ... }

However, this trick will only work for executable statements;
you can't use it to "conditionally compile" declarations and
the like. Also, it will break pretty badly if VERSION ever
becomes "2.10" or "10.0" ...
Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.


If you really cannot change the macro definition, things
are going to be messy. The best I can suggest is to use a
"helper" program as suggested by Anonymous 7843. (However,
note that his suggestion of converting VERSION to `double'
is not very robust; consider the "2.10" case. The '.' in
a version number is a field separator, not a decimal point.)

If you must leave VERSION's string-ness and value intact
but are allowed to change the way it's defined, things can
be lots easier. Instead of trying to extract MAJOR and MINOR
from VERSION, you could use MAJOR and MINOR as the "primary
sources" and derive VERSION from them:

#define MAJOR 2
#define MINOR 3

#define STRING(x) STR_HELPER(x)
#define STR_HELPER(x) #x
#define VERSION STRING(MAJOR) "." STRING(MINOR)

This gives VERSION the same value as before, but makes MAJOR
and MINOR available for straightforward preprocessor tests.

--
Er*********@sun.com

Nov 14 '05 #4
Thanks all for your valuable insight and suggestions; they've helped a lot.

Greetings,

Erik Leunissen
==============
Erik Leunissen wrote:
L.S.

How can I make certain code parts be compiled conditionally, depending
on the definition of a macro such as:

#define VERSION "2.3"

Is it all right to do things like:
#if VERSION == "2.3"
..../* conditionally compiled code */
#endif

#if VERSION != "2.3"
..../* conditionally compiled code */
#endif

#if VERSION > "2.3"
..../* conditionally compiled code */
#endif
Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.
Thanks for any help,

Erik Leunissen


--
leunissen@ nl | Merge the left part of these two lines into one,
e. hccnet. | respecting a character's position in a line.

Nov 14 '05 #5
Erik Leunissen wrote:

L.S.

How can I make certain code parts be compiled conditionally, depending
on the definition of a macro such as:

#define VERSION "2.3"

Is it all right to do things like:

#if VERSION == "2.3"
..../* conditionally compiled code */
#endif [...] Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.


Don't define a string... define a number.

#define VERSION 0x0203

To test for that version:

#if VERSION == 0x0203

To test for prior to that version:

#if VERSION < 0x0203

To test for that version or later

#if VERSION >= 0x0203

And so on.

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer.h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:Th*************@gmail.com>

Nov 14 '05 #6
In article <42***************@spamcop.net>,
Kenneth Brody <ke******@spamcop.net> wrote:
....
Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.


Don't define a string... define a number.


What part of "I'm not in the position to change the macro definition" are
you having a problem with?

Nov 14 '05 #7
Kenny McCormack wrote:

In article <42***************@spamcop.net>,
Kenneth Brody <ke******@spamcop.net> wrote:
...
Or should I go about this differently? Please note that I'm not in the
position to change the macro definition.


Don't define a string... define a number.


What part of "I'm not in the position to change the macro definition" are
you having a problem with?


The part that my brain didn't process while reading it.

D'oh!

Is he in a position to define an additional macro along side this one?

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer.h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:Th*************@gmail.com>

Nov 14 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: ramin | last post by:
Hi, I would be greately thankful if somebody can give me some information about how string comparison is implemented in mysql. (Both in Physical and Application layer) How queries on string (for...
46
by: yadurajj | last post by:
Hello i am newbie trying to learn C..I need to know about string comparisons in C, without using a library function,...recently I was asked this in an interview..I can write a small program but I...
4
by: Peter Kirk | last post by:
Hi I am looking at some code which in many places performs string comparison using == instead of Equals. Am I right in assuming that this will in fact work "as expected" when it is strings...
1
by: bjjnova | last post by:
I have the following string comparison that is throwing an error I cannot find ( I will include my attempts to trace the error) In the line following the asterisks, written as I have below, a...
4
by: almurph | last post by:
Hi, Hope you can help me with this one. I'm looking for some nice string comparison algorithms. I want to be able to compare 2 strings (fairly smallish, less than 50 characters) and return a %...
9
by: Usman Jamil | last post by:
Hi I'm having a strange error while comparing two strings. Please check the code below. This is a simple string comparison code and works just fine on all of my machines. While debugging an...
14
by: Steve Bergman | last post by:
I'm looking for a module to do fuzzy comparison of strings. I have 2 item master files which are supposed to be identical, but they have thousands of records where the item numbers don't match in...
3
by: questionit | last post by:
Hi I have a string comparison code from VB. While (Not ((myString Like "??????") And (myString Like "00*"))) All i am wondering is if we can do the similar thing in C/C++ i.e using 'Like' ...
3
by: itmfl | last post by:
We are writing a program that multiplies two matrices of size n x m and m x n together. The matrices are stored in a file. The user provides the filename in the command line prompt. The file is...
10
by: lilly07 | last post by:
Hi, I have one column of strings in 1st file file and another file which consists of 5 clumns in each line and my basic objective is to find each item/line of 1st file is available in 3rd column of...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.