473,396 Members | 2,016 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,396 software developers and data experts.

Preprocessor, nested files etc.

Hi,

I'm hoping that someone can point me into the right direction here. I'm
trying to gain a bit of a better understanding on how the preprocessor
works - something that seems like a simple topic! I just keep running into
problems (Windows platform) because files are included in the wrong order,
one include file messes up the other one etc.. I think I need to brush up on
some basics here.

In this example project, I have several cpp files (~10) that all pretty much
include one common header file. In Visual Studio I turned the option on to
actually generate those pre-processed files - so that I could see what's
actually going on behind the scenes.

Well, I expected one big file but instead got one preprocessor file for each
of the cpp files in the project. OK, I suppose that this makes sense. One of
the things however I'm constantly trying to do is to prevent header files
from being included more than once - do I not need to worry about this when
it's included from different cpp files?

Also, when I #define macros and put them at the beginning of the header file
like

#ifndef HEADERFILE1_H
#define HEADERFILE1_H

....
...
#endif

then those macro definitions don't seem to stick. When the next cpp files is
being processed, the header file is being included again - even though the
macro was previously defined

Is this normal, and where am I getting confused?
Thanks!
Flo.
Jul 22 '05 #1
12 1543
On Thu, 12 Aug 2004 15:17:26 -0700, Florian wrote:
I just keep running
into problems (Windows platform) because files are included in the wrong
order,
Headers should be minimal and complete. Each header should include every
header it needs. Nothing more. This would prevent users needing to know
about inclusion orders.

One cheap trick to ensure the completeness of headers is to include that
header in that headers implementation file *first*. Assume foo.h exists,
then in foo.cpp:

// foo.cpp
#include "foo.h" // before other includes

Some Windows headers were not complete (at least in the VC++ 6.0 days),
so you were forced to know some inclusion order.
one include file messes up the other one etc..
That sounds like a macro problem. One macro defined in one header
changes the text in another header. Macros are evil; try to avoid them.
One of the things however I'm constantly trying to do is to
prevent header files from being included more than once
This is needed and important for each translation unit. Each translation
unit should include each header file that it needs only once.
- do I not need
to worry about this when it's included from different cpp files?
Perfectly normal. The C++ compilation unit is called a translation
unit. A translation unit is what comes out of the
preprocessor. Translation units are not aware of other translation
units. If a cpp file needs definitions in a header, it must include that
header itself.
Also, when I #define macros and put them at the beginning of the header
file like

#ifndef HEADERFILE1_H
#define HEADERFILE1_H

...
..
#endif

then those macro definitions don't seem to stick. When the next cpp
files is being processed, the header file is being included again - even
though the macro was previously defined

Is this normal, and where am I getting confused?


This is normal.

Ali
Jul 22 '05 #2
Hi

You can also use the directive, #pragma once, in the header file - this
would ensure that the header is only included once in a build.

Regards
Ashley Visagie

Jul 22 '05 #3
Hi

You can also use the directive, #pragma once, to ensure that the header
file is only included once in a build.

Regards
Ashley Visagie

Jul 22 '05 #4
Ashes wrote:

Hi

You can also use the directive, #pragma once, in the header file - this
would ensure that the header is only included once in a build.


Strictly speaking, whatever you can do with #pragma is implementation-defined.
I'd say don't use it unless you really have to.

Though I've got to admit, every compiler that I have access to implements
#pragma once the way you would expect it. Then again, Gcc does complain
about it being "obsolete".

Denis
Jul 22 '05 #5
Florian wrote:

then those macro definitions don't seem to stick. When the next cpp files is
being processed, the header file is being included again - even though the
macro was previously defined

Is this normal, and where am I getting confused?


Each source code file (each *.cpp) is compiled independently of all others.
That's the way things work in C++.
And of course it makes sense. Your project consists of 10 files. The project
I am involved in, consists of more then 400 files. Consider I make a change
in one of them and the compiler is going to recompile everything (sometimes
we have to do this, it takes around 2 hours for a complete recompile).

When the compiler compiles a *.cpp file, it starts in a fresh state. Nothing
it has learned by compiling a previous source code file remains. Which is
a good thing, because it means it can compile a collection of *.cpp files
in any order it likes. If you make a change in one of them, only this file
needs to be recompiled and the linker will form a new executable from the
results of all the copilation steps (they are called 'object files' or 'machine
code files')

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #6
Ashes wrote:
Hi

You can also use the directive, #pragma once, to ensure that the header
file is only included once in a build.

Regards
Ashley Visagie


Which compiler uses #pragma once?
The OP is working on a Windows platform. There are many
different compilers that are available for that platform.
The #pragma directives are compiler specific.

--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.comeaucomputing.com/learn/faq/
Other sites:
http://www.josuttis.com -- C++ STL Library book

Jul 22 '05 #7
Danke Heinz,

That makes sense now. I just didn't know that in C++ each cpp file is it's
on unit, like Ali said. Thanks a lot for clarifying this, that will make
troubleshooting a bit easier in the future.

Flo

"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message
news:41***************@gascad.at...
Florian wrote:

then those macro definitions don't seem to stick. When the next cpp files
is
being processed, the header file is being included again - even though
the
macro was previously defined

Is this normal, and where am I getting confused?


Each source code file (each *.cpp) is compiled independently of all
others.
That's the way things work in C++.
And of course it makes sense. Your project consists of 10 files. The
project
I am involved in, consists of more then 400 files. Consider I make a
change
in one of them and the compiler is going to recompile everything
(sometimes
we have to do this, it takes around 2 hours for a complete recompile).

When the compiler compiles a *.cpp file, it starts in a fresh state.
Nothing
it has learned by compiling a previous source code file remains. Which is
a good thing, because it means it can compile a collection of *.cpp files
in any order it likes. If you make a change in one of them, only this file
needs to be recompiled and the linker will form a new executable from the
results of all the copilation steps (they are called 'object files' or
'machine
code files')

--
Karl Heinz Buchegger
kb******@gascad.at

Jul 22 '05 #8
Thanks Ali,

That makes more sense now. I didn't know that in CPP each file was it's own
translation unit. I suppose that's not the case in C then, correct?

Anyway - thanks a bunch,

Flo.

"Ali Cehreli" <ac******@yahoo.com> wrote in message
news:pa*********************************@yahoo.com ...
On Thu, 12 Aug 2004 15:17:26 -0700, Florian wrote:
I just keep running
into problems (Windows platform) because files are included in the wrong
order,


Headers should be minimal and complete. Each header should include every
header it needs. Nothing more. This would prevent users needing to know
about inclusion orders.

One cheap trick to ensure the completeness of headers is to include that
header in that headers implementation file *first*. Assume foo.h exists,
then in foo.cpp:

// foo.cpp
#include "foo.h" // before other includes

Some Windows headers were not complete (at least in the VC++ 6.0 days),
so you were forced to know some inclusion order.
one include file messes up the other one etc..


That sounds like a macro problem. One macro defined in one header
changes the text in another header. Macros are evil; try to avoid them.
One of the things however I'm constantly trying to do is to
prevent header files from being included more than once


This is needed and important for each translation unit. Each translation
unit should include each header file that it needs only once.
- do I not need
to worry about this when it's included from different cpp files?


Perfectly normal. The C++ compilation unit is called a translation
unit. A translation unit is what comes out of the
preprocessor. Translation units are not aware of other translation
units. If a cpp file needs definitions in a header, it must include that
header itself.
Also, when I #define macros and put them at the beginning of the header
file like

#ifndef HEADERFILE1_H
#define HEADERFILE1_H

...
..
#endif

then those macro definitions don't seem to stick. When the next cpp
files is being processed, the header file is being included again - even
though the macro was previously defined

Is this normal, and where am I getting confused?


This is normal.

Ali

Jul 22 '05 #9
Thanks,

It seems as if my "problem" was the fact that I didn't understand the
concept of the translation units - I should be fine in the future.

Flo.

"Ashes" <av******@hotmail.com> wrote in message
news:92******************************@localhost.ta lkaboutprogramming.com...
Hi

You can also use the directive, #pragma once, in the header file - this
would ensure that the header is only included once in a build.

Regards
Ashley Visagie

Jul 22 '05 #10

"Florian" <wi*******@gmxREMOVEUPPERCASE.net> wrote in message
news:3l***************@newssvr28.news.prodigy.com. ..
Thanks Ali,

That makes more sense now. I didn't know that in CPP each file was it's own translation unit. I suppose that's not the case in C then, correct?


Not correct. C and C++ have the same compilation model.

john
Jul 22 '05 #11


Florian wrote:
Thanks Ali,

That makes more sense now. I didn't know that in CPP each file was it's own
translation unit. I suppose that's not the case in C then, correct?


C source files are complied the same as C++. Each is its own translation
unit.

Jul 22 '05 #12
Florian wrote:

Thanks Ali,

That makes more sense now. I didn't know that in CPP each file was it's own
translation unit. I suppose that's not the case in C then, correct?


Same thing

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #13

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

Similar topics

8
by: Bram Stolk | last post by:
Hi there, What could I use to parse CPP macros in Python? I tried the Parnassus Vaults, and python lib docs, but could not find a suitable module. Thanks, Bram
24
by: Nudge | last post by:
I have an array, and an unrolled loop which looks like this: do_something(A); do_something(A); .... do_something(A); I thought: why should I type so much? I should write a macro. So I was...
13
by: seemanta dutta | last post by:
Greetings C gurus, I have used preprocessor directives since a very long time. But whenever I see some professional piece of C code, the linux kernel for example, I get literally confused by the...
9
by: Walter Roberson | last post by:
I have run into a peculiarity with SGI's C compiler (7.3.1.2m). I have been reading carefully over the ANSI X3.159-1989 specification, but I cannot seem to find a justification for the behaviour....
2
by: Paolo | last post by:
I imported a VC++6.0 project into VC++7.1. The conversion operation makes a mess with Preprocessor Definitions, adding a "$(NoInherit)" for each file. For example: I had a DLL project in VC++6.0...
2
by: Prashant Mahajan | last post by:
I just wanted comments from you all on the following topic: Let's say we have 2, C code files namely file1.c and file2.c. file1.c contains few pre-processor definations say #define TEST1 10 We...
32
by: spibou | last post by:
Is the output of the C preprocessor deterministic ? What I mean by that is , given 2 compilers which conform to the same standard, will their preprocessors produce identical output given as input...
21
by: Bogdan | last post by:
Can anyone recommend a program for indentation of C preprocessor directives. My file looks like this: #ifdef a #define b #else #define c #endif int main() {
13
by: josh | last post by:
Hi, I've read that in the future the C++ will not more support the preprocessor and now some preprocessor functionality have already been implemented in the language itself. What are that? ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.