472,338 Members | 1,767 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

Automatic generation of header file.


Maintaining a C++ header file can be painful. I want a way to
automatically generate header files from the implementation file. Does
anybody know of a program that does this?

If not, I'd like to try writing one. The input file would consist of
function definitions and class definitions (with all methods defined
inline). The program would extract all the signatures and place them in a
header file. I can see some small problems related to namespaces and
includes, but are there any show-stoppers?

- Kannan
Jul 23 '05 #1
15 7634
Kannan Goundan wrote:
Maintaining a C++ header file can be painful. I want a way to
automatically generate header files from the implementation file.
Does anybody know of a program that does this?

If not, I'd like to try writing one. The input file would consist of
function definitions and class definitions (with all methods defined
inline). The program would extract all the signatures and place them
in a header file. I can see some small problems related to
namespaces and includes, but are there any show-stoppers?


Show-stoppers I ain't sure of, but consider if your class needs to have
a base class or two. How is that going to be automatically generated?

V
Jul 23 '05 #2
Victor Bazarov wrote:
Kannan Goundan wrote:
Maintaining a C++ header file can be painful. I want a way to
automatically generate header files from the implementation file.
Does anybody know of a program that does this?

If not, I'd like to try writing one. The input file would consist of
function definitions and class definitions (with all methods defined
inline). The program would extract all the signatures and place them
in a header file. I can see some small problems related to
namespaces and includes, but are there any show-stoppers?

Show-stoppers I ain't sure of, but consider if your class needs to have
a base class or two. How is that going to be automatically generated?

V


Why? He can obtain its name from the ": public BC " part of the child
class definition (which can be found in the source file if I got that
right).
You could then (given that the filenames are identical to the class
names) produce an include directive in the generated header which
includes the base class definition (#include BC.hpp).

--
Matthias Kaeppler
Jul 23 '05 #3
On Fri, 08 Apr 2005 23:45:34 -0700, Kannan Goundan <ca*****@yahoo.com> wrote:

Maintaining a C++ header file can be painful. I want a way to
automatically generate header files from the implementation file. Does
anybody know of a program that does this?

If not, I'd like to try writing one. The input file would consist of
function definitions and class definitions (with all methods defined
inline). The program would extract all the signatures and place them in a
header file. I can see some small problems related to namespaces and
includes, but are there any show-stoppers?


Being that the header file defines the api which is used by more than
just the implementation, I'd think you'd want it to not be easily
changed. Maybe you haven't been on the short end of an api change
often enough to appreciate that. :)

--
Joe Seigh
Jul 23 '05 #4
You can ease the pain of managing C++ by following
some rules that are covered in the following article:

http://www.eventhelix.com/RealtimeMa...dePatterns.htm

Deepa
--
EventStudio 2.5 - http://www.EventHelix.com/EventStudio
Generate Sequence diagrams from a simple declarative language

Jul 23 '05 #5
Joe Seigh wrote:
On Fri, 08 Apr 2005 23:45:34 -0700, Kannan Goundan <ca*****@yahoo.com> wrote:

Maintaining a C++ header file can be painful. I want a way
to automatically generate header files from the implementation
file. Does anybody know of a program that does this?

If not, I'd like to try writing one. The input file would
consist of function definitions and class definitions (with
all methods defined inline). The program would extract all
the signatures and place them in a header file. I can see
some small problems related to namespaces and includes, but
are there any show-stoppers?


Being that the header file defines the api which is used by more
than just the implementation, I'd think you'd want it to not be
easily changed. Maybe you haven't been on the short end of an
api change often enough to appreciate that. :)

--
Joe Seigh


There are a few reasons I don't like C++ header files:

1. The C++ header file also includes stuff that isn't part of an API
contract (private methods/fields, inline method implementations).

2. I should only have to worry about API compatibility for external
APIs. When I'm changing the implementation details of my classes, I
don't want to have to make every signature change in two places.

I want to be able to do things the way they are done in Java and C#.

Jul 23 '05 #6
Kannan Goundan wrote:
Joe Seigh wrote:
On Fri, 08 Apr 2005 23:45:34 -0700, Kannan Goundan


<ca*****@yahoo.com>
wrote:

Maintaining a C++ header file can be painful. I want a way
to automatically generate header files from the implementation
file. Does anybody know of a program that does this?

If not, I'd like to try writing one. The input file would
consist of function definitions and class definitions (with
all methods defined inline). The program would extract all
the signatures and place them in a header file. I can see
some small problems related to namespaces and includes, but
are there any show-stoppers?


Being that the header file defines the api which is used by more
than just the implementation, I'd think you'd want it to not be
easily changed. Maybe you haven't been on the short end of an
api change often enough to appreciate that. :)

--
Joe Seigh

There are a few reasons I don't like C++ header files:

1. The C++ header file also includes stuff that isn't part of an API
contract (private methods/fields, inline method implementations).

2. I should only have to worry about API compatibility for external
APIs. When I'm changing the implementation details of my classes, I
don't want to have to make every signature change in two places.

I want to be able to do things the way they are done in Java and C#.


You can do this in C++ as you can in Java.

In Java we have classes and interfaces. When these are used as part of a
public API, everything they contain is viewable by the end user. Its
the same with C++ header files.

However, the external public API is just that, its an Application
Programming INTERFACE.

What we do in Java, is define a series of Interfaces which are our
public API, no concrete classes should be exposed. We do the same in
C++, we use Pure Abstract Classes (which are mere header files) as our
public API and again no concrete C++ class should be exposed.

Jul 23 '05 #7
Victor Bazarov wrote:
Show-stoppers I ain't sure of, but consider if your class needs to
have a base class or two. How is that going to be automatically
generated?
Matthias Kaeppler wrote: Why? He can obtain its name from the ": public BC " part of the
child class definition (which can be found in the source file if I
got that right).
You could then (given that the filenames are identical to the class
names) produce an include directive in the generated header which
includes the base class definition (#include BC.hpp).


I was planning on allowing an optional "public" modifier to cover that
case.

#include "Base.h" @public
#include "Helper.h"
struct PointerOnly; @public

Includes and forward declarations marked "@public" would be put in the
header file, others would be put in the CPP file. This would, I think,
allow for most of the flexibility you'd have if you were writing the
header and CPP files by hand.

However, I've also been considering providing more automation (such as
the one Matthias described) for those who are willing to follow certain
naming/coding conventions.

Jul 23 '05 #8
> Kannan Goundan wrote:
[snip]
There are a few reasons I don't like C++ header files:

1. The C++ header file also includes stuff that isn't part of
an API contract (private methods/fields, inline method
implementations).

2. I should only have to worry about API compatibility for
external APIs. When I'm changing the implementation details
of my classes, I don't want to have to make every signature
change in two places.

I want to be able to do things the way they are done in Java
and C#.

Andrew McDonagh wrote: You can do this in C++ as you can in Java.

In Java we have classes and interfaces. When these are used as
part of a public API, everything they contain is viewable by
the end user. Its the same with C++ header files.

However, the external public API is just that, its an
Application Programming INTERFACE.

What we do in Java, is define a series of Interfaces which are
our public API, no concrete classes should be exposed. We do
the same in C++, we use Pure Abstract Classes (which are mere
header files) as our public API and again no concrete C++ class
should be exposed.


The problem I was trying to solve is the one of having to maintain C++
header files. I want a program to generate my header files for me.
That's what I meant when I said I wanted something like Java.

About only exposing pure abstract classes... I'm not convinced that all
libraries can withstand such a limitation. First of all, there's the
performance hit virtual calls. Second, all objects will have to be
heap allocated. You'll have to use some wrapper class to get RAII.
Third, you can't inherit from a class in the library. You'd have to
roll your own fake adaptor-like inheritance technique. This will be
slower because of the extra indirection and will punish the heap by
creating two objects for every instance of the base class.

This may be acceptable for many libraries (large objects, relatively
few app->library calls), but definitely not for all. BTW, I use the
term API for any library interface. If you use it to describe only a
certain category of libraries then my objections may not apply.

Jul 23 '05 #9
Kannan Goundan wrote:

There are a few reasons I don't like C++ header files:

1. The C++ header file also includes stuff that isn't part of an API
contract (private methods/fields, inline method implementations).

You don't have to put any private methods or fields in the header files,
nor do you have to write inline methods either.

I want to be able to do things the way they are done in Java and C#.


The main problem you'll encounter is the compile-the-world syndrome
unless you are very careful about not recreating the headers unless
absolutely necessary.

Jul 23 '05 #10
Kannan Goundan wrote:
Maintaining a C++ header file can be painful.
I want a way
to automatically generate header files from the implementation file.
Like Fortran 90/95.
Does anybody know of a program that does this?
I used Google

http://www.google.com/

to search for

+"automatic header file generation"

and I found lots of stuff including:

Automatic Header File Generation by Cay S. Horstmann

http://profesores.elo.utfsm.cl/~agv/...dgen/MDGEN.TXT
If not, I'd like to try writing one.
The input file would consist of function and class definitions
(with all methods defined inline).
The program would extract all the signatures
and place them in a header file.
I can see some small problems related to namespaces and includes,
but are there any show-stoppers?


All that is meant by the term "header file"
is that it is included near the top [head]
of a source file or another header file.
Apparently, you want a utility to generate a *module* interface
from a *module* implementation.

You should investigate languages such as modula-2

http://www.modula2.org/

or even Fortran 90/95.
Don't allow yourself to be confused
by the way that the term "interface" is used in Java.

Anyway, lots of C (and C++) programmers have been doing this for years
but it is "wrong headed" from a designer's point of view.
You should write the module interface *first*
then write the implementation to conform with the interface.
Jul 23 '05 #11
Hang Dog wrote:
Kannan Goundan wrote:
There are a few reasons I don't like C++ header files:

1. The C++ header file also includes stuff that isn't part of an API
contract (private methods/fields, inline method implementations).


You don't have to put any private methods or fields in the header files,
nor do you have to write inline methods either.


How can you get away without listing the private fields in a header file?
I thought that they were necessary to let others instantiate your class on
the stack.
I want to be able to do things the way they are done in Java and C#.


The main problem you'll encounter is the compile-the-world syndrome
unless you are very careful about not recreating the headers unless
absolutely necessary.


Yeah... I think that can be solved by doing:

# autogen File.in File.cpp File.h.new
# if [ `diff File.h File.h.new | wc -l` -gt 0 ]; then
mv File.h.new File.h
fi

I've also got to figure out how to get GNU make to cooperate. I remember
there being some problem with these kinds of "maybe" dependencies.
Jul 23 '05 #12
E. Robert Tisdale wrote:
Kannan Goundan wrote:
Maintaining a C++ header file can be painful. I want a way to
automatically generate header files from the implementation file.
[snip]
Automatic Header File Generation by Cay S. Horstmann

http://profesores.elo.utfsm.cl/~agv/...dgen/MDGEN.TXT
This does let you keep everything in one file, but it forces you to
duplicate things in the same ways (which I'd rather not have to do).
If not, I'd like to try writing one. The input file would consist of
function and class definitions (with all methods defined inline).
The program would extract all the signatures and place them in a header
file. I can see some small problems related to namespaces and includes,
but are there any show-stoppers?


All that is meant by the term "header file" is that it is included near
the top [head] of a source file or another header file. Apparently, you
want a utility to generate a *module* interface from a *module*
implementation.


Ahh...yes. My terminology was imprecise. I want to take a class
implementation and generate a class header. The input would be of the
form:

class MyClass {
public:
MyClass(int x) {
this->x = x;
}
void Run() {
cout << "Run " << x << endl;
}
inline void Set(int x)
{
this->x = x;
}
private:
int x;
}

Only the parts required in the class header file would be copied there.
The type signatures for "MyClass()", "Run()", and "x" and the
implementation for "Set()", because it is marked "inline".
You should investigate languages such as modula-2

http://www.modula2.org/

or even Fortran 90/95.
Don't allow yourself to be confused
by the way that the term "interface" is used in Java.

Anyway, lots of C (and C++) programmers have been doing this for years
but it is "wrong headed" from a designer's point of view. You should
write the module interface *first* then write the implementation to
conform with the interface.


Though I feel that there are cases where a separate interface file for
each class is too much, C++ requires even more than that. As far as I
know, you must also list all the private fields and methods in the header
file. This is what annoys me the most because I have to muck around in two
files when some implementation detail changes.

Jul 23 '05 #13
Kannan Goundan wrote:
Hang Dog wrote:
Kannan Goundan wrote:
There are a few reasons I don't like C++ header files:

1. The C++ header file also includes stuff that isn't part of an API
contract (private methods/fields, inline method implementations).


You don't have to put any private methods or fields in the header files,
nor do you have to write inline methods either.

How can you get away without listing the private fields in a header file?
I thought that they were necessary to let others instantiate your class on
the stack.


Google "Cheshire Cat" + C++.
Jul 23 '05 #14
Hang Dog wrote:
Kannan Goundan wrote:

[snip]
How can you get away without listing the private fields in a header
file? I thought that they were necessary to let others instantiate your
class on the stack.


Google "Cheshire Cat" + C++.


But this doesn't let you keep things on the stack, right? As far as I
can tell, the implementation class will still be instantiated with "new".
Jul 23 '05 #15
Kannan Goundan wrote:
Hang Dog wrote:
Kannan Goundan wrote:


[snip]
How can you get away without listing the private fields in a header
file? I thought that they were necessary to let others instantiate your
class on the stack.


Google "Cheshire Cat" + C++.

But this doesn't let you keep things on the stack, right? As far as I
can tell, the implementation class will still be instantiated with "new".


Your original post simply whined about having to have everything in the
header file. Its not necessary, and in many cases undesireable too.
Jul 23 '05 #16

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

Similar topics

0
by: Rasmus Fogh | last post by:
Someone raised the question of automatic code generation a few weeks back. And yes, we (CCPN) are using automatic Python code generation in a...
6
by: Matt | last post by:
I have begun designing and programming in C++ after a several years away from software engineering/programming. I am looking for an "automatic...
2
by: guoqi zheng | last post by:
dear sir, I am using itextShap for pdf generation. I know I can insert image into it, I can add header to it as well. However, I can not add an...
4
by: Petterson Mikael | last post by:
Hi, Anyone out there that knows of a automatic test generation tool for cpp? Another requirement is that the test results should be presented in...
0
by: JoshforRefugee | last post by:
heard that we can do automatic code generation using macros, but not sure how can I pursue this. Here is my problem. In my env, I have class A,B...
25
by: sidd | last post by:
In the following code: int i = 5; ---it goes to .data segment int j; ---it goes to bss segment int main() { int c; int i = 5;...
1
by: toto | last post by:
Dear friends, I'm quite new in template programming but they are giving me a very hard time. I'm using gcc as a compiler and I'm mainly develop...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...

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.