473,405 Members | 2,210 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,405 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 44190
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.