[comp.lang.c++] .h-file extractor from c++ source file available?

collins@hplabsz.HPL.HP.COM (Patricia Collins) (08/06/88)

Do you know of a utility for extracting include files from c++ source
files?  It's probably doable with a straightforward awk script, but in
the spirit of re-use, we're hoping to grab one instead of writing our
own.  Thanks!

--Patricia Collins
  hplabs!hplpc!pc
  collins@hplabs.hp.com

henry@utzoo.uucp (Henry Spencer) (08/07/88)

In article <2192@hplabsz.HPL.HP.COM> collins@hplabsz.HPL.HP.COM (Patricia Collins) writes:
>Do you know of a utility for extracting include files from c++ source
>files?  It's probably doable with a straightforward awk script...

Do you mean something that builds a .h file containing things like external
declarations for the functions in the source file?  If so, my own experiments
(in C, not C++, but I *think* the experience reads over) suggest that this
doesn't work too well.  In practice one often wants to include things like
data-structure definitions in the .h, *but* one also wants to have some such
definitions that are local to the source file.  Doing it right requires at
least marking the items in the source file that are meant for the .h file.
Doing *that* works better than writing the .h file as a separate entity --
it keeps the relevant things together in one file -- but it's nearly the
same amount of work.  Some of this may be sensitive to the details of my
own programming style, but I'd be skeptical of claims that automatic
extraction without marking worked well.
-- 
MSDOS is not dead, it just     |     Henry Spencer at U of Toronto Zoology
smells that way.               | uunet!attcan!utzoo!henry henry@zoo.toronto.edu

greg@vertical.oz (Greg Bond) (08/08/88)

In article <2192@hplabsz.HPL.HP.COM> collins@hplabsz.HPL.HP.COM 
(Patricia Collins) writes:
>Do you know of a utility for extracting include files from c++ source
>files?  

Or, what about a utility to extract ANSI/c++ typed function declarations?
I.e. given
	char *fn(a, b, c)
	int a;
	double b;
	char *c;

produce
	char *fn(int a, double b, char *c)

Would need a fairly complete C grammar I would think.
-- 
Gregory Bond,  Vertical Software, Melbourne, Australia
Internet: greg@vertical.oz.au	(or greg%vertical.oz.au@uunet.uu.net)
Bang: {uunet,mcvax,pyramid,mnetor,ukc,ucb-vision,...}!munnari!vertical.oz!greg
I used to be a pessimist. Now I'm a realist.

rreed@mntgfx.mentor.com (Robert Reed) (08/09/88)

In article <1988Aug7.005251.7548@utzoo.uucp> henry@utzoo.uucp (Henry Spencer) writes:
    In article <2192@hplabsz.HPL.HP.COM> collins@hplabsz.HPL.HP.COM (Patricia Collins) writes:
    >Do you know of a utility for extracting include files from c++ source
    >files?  It's probably doable with a straightforward awk script...
    
    Some of this may be sensitive to the details of my own programming style, 
    but I'd be skeptical of claims that automatic extraction without marking 
    worked well.

But that is NOT to say that automatic extraction does not work well.  In the
last project upon which I worked, we had a tool called autohdr which relied
on a marking scheme we deeveloped for C.  This method used special declarations
to mark exported structures, including defines, typedefs and structs, and 
generated a temporary header file which was then compared against the current
header file.  If the files were different, the old file was replaced, and make
would automatically recompile those targets depending on the header.

The scheme still required the same amount of work for editing, and required
more overhead for the generation and checking process.  However, the editing
process was simplified by having a single "module" which contained both
internal and external declarations.  Revision control is simplified by the
commonality of unified header/code files.  

The syntax of C++ complicates the process, but it should be possible to 
accommodate the extensions.  Special care and more detailed analysis will be
required to support things like inline declarations, which need to be 
completely copied to the header file.  It would be a useful tool, though.

brown@galaxy.ee.rochester.edu (Eric Brown) (08/10/88)

In article <168@vertical.oz> greg@vertical.oz (Greg Bond) writes:
>What about a utility to extract ANSI/c++ typed function declarations?
>I.e. given
>	char *fn(a, b, c)
>	int a;
>	double b;
>	char *c;
>
>produce
>	char *fn(int a, double b, char *c)
>
>Would need a fairly complete C grammar I would think.

There is such a program - in fact I discovered it a year ago at work.
It's called PrototypeMaker.  Where can you get it you ask.  Well, its
for Lightspeed C on the Macintosh.  As Lightspeed C has always
required the strict prototyping as required in C++, it generates
output exactly as you describe above.  I do not know if it is public
domain or not.

-Eric.

brown@galaxy.ee.rochester.edu
broe@uhura.cc.rochester.edu

orr@cs.glasgow.ac.uk (Fraser Orr) (08/10/88)

In article <168@vertical.oz> greg@vertical.oz (Greg Bond) writes:
>In article <2192@hplabsz.HPL.HP.COM> collins@hplabsz.HPL.HP.COM 
(Patricia Collins) writes:
>Do you know of a utility for extracting include files from c++ source
>files?  

I'm in the process of developing a tool to do this.
It requires a complete reorganisation of your program  (this is not an unfortunate
side effect, but the original purpose of the tool was and is to help better organize
your programs and documentation, the automatic insertion fo declarations etc is
a fortunate side effect).
The program is organised into a series of typed SECTIONs, that are labeled with an
name and a few other pieces of information. This is followed by a USES line that
declares which other sections contain things used by this section. The system then
inserts the appripriate declarations (which it collects and coolates itself).
As an example consider a section that declares a function to do a linear search through
an array of type AnyType.

Function    Search
Declaration int Search ( AnyType Target )
Uses        AnyType TheArray

int Search ( AnyType Target )
{
  int i ;

  for (i=0; i<ARRAYMAX ; i++ ) {
     if ( Target == TheArray [i] )
       return i ;
     }
  return NOTFOUND ;
} ;


This is how it is planned, there are a few things yet to be added, but even in its present
buggy form, it is much better than vi grep and a makefile generator ( it of course uses
the USES information to generate the makefile).
Someone else mentioned inline functios and their extraction. In this system,  you change
the word Function to Inline, and put the keyword inline in front of the procedure 
declaration and it is done!


==Fraser Orr ( Dept C.S., Univ. Glasgow, Glasgow, G12 8QQ, UK)
UseNet: {uk}!cs.glasgow.ac.uk!orr       JANET: orr@uk.ac.glasgow.cs
ARPANet(preferred xAtlantic): orr%cs.glasgow.ac.uk@nss.cs.ucl.ac.uk

henry@utzoo.uucp (Henry Spencer) (08/10/88)

In article <1988Aug8.180524.3167@mntgfx.mentor.com> rreed@mntgfx.UUCP (Robert Reed) writes:
> >  Some of this may be sensitive to the details of my own programming style, 
> >  but I'd be skeptical of claims that automatic extraction without marking 
> >    worked well.
>
>But that is NOT to say that automatic extraction does not work well.  In the
>last project upon which I worked, we had a tool called autohdr which relied
>on a marking scheme we deeveloped for C... [It]
>generated a temporary header file which was then compared against the current
>header file.  If the files were different, the old file was replaced, and make
>would automatically recompile those targets depending on the header.
>
>The scheme still required the same amount of work for editing, and required
>more overhead for the generation and checking process.  However, the editing
>process was simplified by having a single "module" which contained both
>internal and external declarations.  Revision control is simplified by the
>commonality of unified header/code files.  

Yes, I agree, this works very nicely.  I've been using a simple form of
marking, plus an identical generate-compare-replace setup, experimentally
on a project of mine.  Having everything in the same file is a big win.
-- 
Intel CPUs are not defective,  |     Henry Spencer at U of Toronto Zoology
they just act that way.        | uunet!attcan!utzoo!henry henry@zoo.toronto.edu