473,387 Members | 1,611 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,387 software developers and data experts.

GDBM prototype magic.

Hi Guys,

I was going through gdbm-1.8.3 source (http://ftp.gnu.org/gnu/gdbm/
gdbm-1.8.3.tar.gz) and found this strange thing : all the exposed
functions of gdbm work with GDBM_FILE pointer (which is returned by
gdbm_open), but in the implementation of gdbm functions (e.g.
gdbm_open in gdbmopen.c)work with a structure called gdbm_file_info.

Now GDBM_FILE is defined like this in gdbm.h an exposed header :

typedef struct { int dummy[10];} *GDBM_FILE;

but gdbm_file_info is a structure which is a lot bigger than this.

For e.g. in gdbm.h gdbm_open is defined as :

extern int gdbm_store __P((GDBM_FILE, datum, datum, int)); /* __P(x)
is x if it is standard C or C++ else _P(x) is () */

but in its definition it is like this :

int
gdbm_store (dbf, key, content, flags)
gdbm_file_info *dbf;
datum key;
datum content;
int flags;

I have these questions : (I searched previous archives of c.l.c, but
only found mention of typedef struct {int dummy[10];} *GDBM_FILE; in a
post called "What makes C _not_ a subset of C++, where it said that
this particular declaration is illegal in C++)

1. How does this sort of code compiles in standard C ? ( What function
prototype matching rule of C applies here ?) When I checked in the
generated Makefile there wasn't any special flags that were passed to
gcc.

2. Why was this done ? My first guess is because the author did not
want to expose the gdbm_file_info structure in gdbm.h so that he can
change it between different releases preserving compatibility (?) Also
to keep the external interface clean.

3. Is this safe ? Will it work in all the compilers and machines i.e.
is it portable ?

Any help is appreciated.
Jun 27 '08 #1
4 1874
vshenoy wrote:
Hi Guys,

I was going through gdbm-1.8.3 source (http://ftp.gnu.org/gnu/gdbm/
gdbm-1.8.3.tar.gz) and found this strange thing : all the exposed
functions of gdbm work with GDBM_FILE pointer (which is returned by
gdbm_open), but in the implementation of gdbm functions (e.g.
gdbm_open in gdbmopen.c)work with a structure called gdbm_file_info.

Now GDBM_FILE is defined like this in gdbm.h an exposed header :

typedef struct { int dummy[10];} *GDBM_FILE;

but gdbm_file_info is a structure which is a lot bigger than this.

For e.g. in gdbm.h gdbm_open is defined as :

extern int gdbm_store __P((GDBM_FILE, datum, datum, int)); /* __P(x)
is x if it is standard C or C++ else _P(x) is () */

but in its definition it is like this :

int
gdbm_store (dbf, key, content, flags)
gdbm_file_info *dbf;
datum key;
datum content;
int flags;

I have these questions : (I searched previous archives of c.l.c, but
only found mention of typedef struct {int dummy[10];} *GDBM_FILE; in a
post called "What makes C _not_ a subset of C++, where it said that
this particular declaration is illegal in C++)

1. How does this sort of code compiles in standard C ? ( What function
prototype matching rule of C applies here ?) When I checked in the
generated Makefile there wasn't any special flags that were passed to
gcc.
The function definition and its declaration are not match, this behavior
should be undefined.

This can work because the linker will not check the prototype.
>
2. Why was this done ? My first guess is because the author did not
want to expose the gdbm_file_info structure in gdbm.h so that he can
change it between different releases preserving compatibility (?) Also
to keep the external interface clean.
Check the source code or ask the author directly. ;)
3. Is this safe ? Will it work in all the compilers and machines i.e.
is it portable ?
No, it's not a good hack.

--
Hi, I'm a .signature virus, please copy/paste me to help me spread
all over the world.
Jun 27 '08 #2
On Mon, 21 Apr 2008 00:35:50 -0700 (PDT), vshenoy
<vi*************@gmail.comwrote:
>Hi Guys,

I was going through gdbm-1.8.3 source (http://ftp.gnu.org/gnu/gdbm/
gdbm-1.8.3.tar.gz) and found this strange thing : all the exposed
functions of gdbm work with GDBM_FILE pointer (which is returned by
gdbm_open), but in the implementation of gdbm functions (e.g.
gdbm_open in gdbmopen.c)work with a structure called gdbm_file_info.

Now GDBM_FILE is defined like this in gdbm.h an exposed header :

typedef struct { int dummy[10];} *GDBM_FILE;

but gdbm_file_info is a structure which is a lot bigger than this.
Nowhere in the discussion below is there any indication of what a
gdbm_file_info looks like. Where do you get the idea it is bigger
than 10 int?
>
For e.g. in gdbm.h gdbm_open is defined as :

extern int gdbm_store __P((GDBM_FILE, datum, datum, int)); /* __P(x)
is x if it is standard C or C++ else _P(x) is () */
Why show us gdbm_store when your question is about gdbm_open?

This is not a definition. It is a declaration (also known as a
prototype). It serves two purposes: 1) to let the compiler check on
(and possibly convert) the arguments you pass, and 2) to let the
compiler generate code to use the return value.
>
but in its definition it is like this :

int
gdbm_store (dbf, key, content, flags)
gdbm_file_info *dbf;
datum key;
datum content;
int flags;
Technically, this definition is inconsistent with the prototype. If
gdbm.h is not included in this source module, the compiler will not
know about the inconsistency. The linker never cares about arguments.
At the code level, there is no problem if gdbm_file_info is also a
structure because all pointers to structure have the same size and
representation.

This is a very old style function definition (pre-C89). While it is
still legal, it is a strong hint that you are looking at code that
predates the standard.
>
I have these questions : (I searched previous archives of c.l.c, but
only found mention of typedef struct {int dummy[10];} *GDBM_FILE; in a
post called "What makes C _not_ a subset of C++, where it said that
this particular declaration is illegal in C++)
It's off-topic but I wonder why unless one of the tokens is a reserved
word.
>
1. How does this sort of code compiles in standard C ? ( What function
prototype matching rule of C applies here ?) When I checked in the
generated Makefile there wasn't any special flags that were passed to
gcc.
Is gdbm.h included in the source module that contains gdbm_store? If
not, there is no prototype to match.
>
2. Why was this done ? My first guess is because the author did not
want to expose the gdbm_file_info structure in gdbm.h so that he can
change it between different releases preserving compatibility (?) Also
to keep the external interface clean.
Not uncommon but remember how old this is.
>
3. Is this safe ? Will it work in all the compilers and machines i.e.
is it portable ?
You would not normally be compiling gdbm_store. It would be in a
library that would be used by the linker to resolve your references to
it. As explained above, while their is an inconsistency it is not the
type to manifest as an error in your generated code.

I would expect it to work only on those systems for which gdbm-1.8.3
is designed. Does gnu work on Windows also or is it limited to Unix?
Does gdbm_open eventually call fopen or does it use system specific
tricks to open the file? If the latter, I would be surprised if it
worked at all on my IBM mainframe.
Remove del for email
Jun 27 '08 #3
Hi Barry,
Nowhere in the discussion below is there any indication of what a
gdbm_file_info looks like. Where do you get the idea it is bigger
than 10 int?
This is the definition of gdbm_file_info (comments removed) :

typedef struct {
char *name;
int read_write;
int fast_write;
int central_free;
int coalesce_blocks;
int file_locking;
void (*fatal_err) ();
int desc;
gdbm_file_header *header;
off_t *dir;
cache_elem *bucket_cache;
int cache_size;
int last_read;
hash_bucket *bucket;
int bucket_dir;
cache_elem *cache_entry;
char header_changed;
char directory_changed;
char bucket_changed;
char second_changed;
} gdbm_file_info;

with some of the compound structures themselves being more than 10
bytes. It is defined in gdbmdefs.h. Also in the same header file
included is header called "proto.h" which is somewhat similar to the
exposed gdbm.h except that it uses gdbm_file_info instead of GDBM_FILE
*
>
For e.g. in gdbm.h gdbm_open is defined as :
extern int gdbm_store __P((GDBM_FILE, datum, datum, int)); /* __P(x)
is x if it is standard C or C++ else _P(x) is () */

This is not a definition. It is a declaration (also known as a
prototype). It serves two purposes: 1) to let the compiler check on
(and possibly convert) the arguments you pass, and 2) to let the
compiler generate code to use the return value.
I am sorry. It should have been "declared as" instead of "defined as".
Why show us gdbm_store when your question is about gdbm_open?
Sorry again for context switching so fast. Basically what I wanted to
say is all the exposed functions (like gdbm_store) work with GDBM_FILE
*, which is returned by gdbm_open, where as internally (in the source
code) all functions receive gdbm_file_info as arguments returned by
gdbm_open in place of GDBM_FILE *
but in its definition it is like this :
int
gdbm_store (dbf, key, content, flags)
gdbm_file_info *dbf;
datum key;
datum content;
int flags;

Technically, this definition is inconsistent with the prototype. If
gdbm.h is not included in this source module, the compiler will not
know about the inconsistency. The linker never cares about arguments.
That is a good point. The source code doesn't include gdbm.h anywhere.
In fact gdbm.h is generated as a part of build process from files
called gdbm.proto and gdbm.proto2.
At the code level, there is no problem if gdbm_file_info is also a
structure because all pointers to structure have the same size and
representation.
Exactly. My question is that is this a portable behavior ? Can we rely
on compiler silently converting back and forth between gdbm_file_info
* and GDBM_FILE * ?
>
Is gdbm.h included in the source module that contains gdbm_store? If
not, there is no prototype to match.
Like I said above, no.
>
2. Why was this done ? My first guess is because the author did not
want to expose the gdbm_file_info structure in gdbm.h so that he can
change it between different releases preserving compatibility (?) Also
to keep the external interface clean.

Not uncommon but remember how old this is.
Actually this is the latest gdbm version.
You would not normally be compiling gdbm_store. It would be in a
library that would be used by the linker to resolve your references to
it. As explained above, while their is an inconsistency it is not the
type to manifest as an error in your generated code.
I was surprised seeing this kind of code in one of the most widely
used database libraries.
I would expect it to work only on those systems for which gdbm-1.8.3
is designed. Does gnu work on Windows also or is it limited to Unix?
It works on windows according to this page :

http://gnuwin32.sourceforge.net/packages/gdbm.htm
Does gdbm_open eventually call fopen or does it use system specific
tricks to open the file? If the latter, I would be surprised if it
worked at all on my IBM mainframe.
It uses open(2) for opening the file.
Jun 27 '08 #4
On Mon, 21 Apr 2008 08:23:19 -0700 (PDT), vshenoy
<vi*************@gmail.comwrote:
>Hi Barry,
>Nowhere in the discussion below is there any indication of what a
gdbm_file_info looks like. Where do you get the idea it is bigger
than 10 int?

This is the definition of gdbm_file_info (comments removed) :

typedef struct {
char *name;
int read_write;
int fast_write;
int central_free;
int coalesce_blocks;
int file_locking;
void (*fatal_err) ();
int desc;
gdbm_file_header *header;
off_t *dir;
cache_elem *bucket_cache;
int cache_size;
int last_read;
hash_bucket *bucket;
int bucket_dir;
cache_elem *cache_entry;
char header_changed;
char directory_changed;
char bucket_changed;
char second_changed;
} gdbm_file_info;

with some of the compound structures themselves being more than 10
bytes. It is defined in gdbmdefs.h. Also in the same header file
included is header called "proto.h" which is somewhat similar to the
exposed gdbm.h except that it uses gdbm_file_info instead of GDBM_FILE
*
>>
>For e.g. in gdbm.h gdbm_open is defined as :
>extern int gdbm_store __P((GDBM_FILE, datum, datum, int)); /* __P(x)
is x if it is standard C or C++ else _P(x) is () */

This is not a definition. It is a declaration (also known as a
prototype). It serves two purposes: 1) to let the compiler check on
(and possibly convert) the arguments you pass, and 2) to let the
compiler generate code to use the return value.

I am sorry. It should have been "declared as" instead of "defined as".
>Why show us gdbm_store when your question is about gdbm_open?

Sorry again for context switching so fast. Basically what I wanted to
say is all the exposed functions (like gdbm_store) work with GDBM_FILE
*, which is returned by gdbm_open, where as internally (in the source
code) all functions receive gdbm_file_info as arguments returned by
gdbm_open in place of GDBM_FILE *
>but in its definition it is like this :
>int
gdbm_store (dbf, key, content, flags)
gdbm_file_info *dbf;
datum key;
datum content;
int flags;

Technically, this definition is inconsistent with the prototype. If
gdbm.h is not included in this source module, the compiler will not
know about the inconsistency. The linker never cares about arguments.

That is a good point. The source code doesn't include gdbm.h anywhere.
In fact gdbm.h is generated as a part of build process from files
called gdbm.proto and gdbm.proto2.
>At the code level, there is no problem if gdbm_file_info is also a
structure because all pointers to structure have the same size and
representation.

Exactly. My question is that is this a portable behavior ? Can we rely
on compiler silently converting back and forth between gdbm_file_info
* and GDBM_FILE * ?
No. The compiler is not silently converting back and forth. In your
code, it is generating an argument of type GDBM.FILE (which is already
a pointer to struct so we don't put an asterisk after it). This is
the argument that will be passed during execution. The library
function will take this argument and treat it as a gdbm_file_info*.
The library function is allowed to do this (more correctly, will get
away with doing this) because the two pointer types are guaranteed to
have the same size and representation. Your code cannot set or
reference the members of the struct (by convention). Nor can it
create an object of this type (the struct has no tag and the typedef
defines only a pointer to struct type). Consequently, you don't
really care how big the struct really is or how badly the typedef
mismatches the actual struct contents.
>
>>
Is gdbm.h included in the source module that contains gdbm_store? If
not, there is no prototype to match.

Like I said above, no.
>>
>2. Why was this done ? My first guess is because the author did not
want to expose the gdbm_file_info structure in gdbm.h so that he can
change it between different releases preserving compatibility (?) Also
to keep the external interface clean.

Not uncommon but remember how old this is.

Actually this is the latest gdbm version.
That may be but the presence of a K&R style function definition
indicates this is old code being carried forward.
>
>You would not normally be compiling gdbm_store. It would be in a
library that would be used by the linker to resolve your references to
it. As explained above, while their is an inconsistency it is not the
type to manifest as an error in your generated code.

I was surprised seeing this kind of code in one of the most widely
used database libraries.
>I would expect it to work only on those systems for which gdbm-1.8.3
is designed. Does gnu work on Windows also or is it limited to Unix?

It works on windows according to this page :

http://gnuwin32.sourceforge.net/packages/gdbm.htm
>Does gdbm_open eventually call fopen or does it use system specific
tricks to open the file? If the latter, I would be surprised if it
worked at all on my IBM mainframe.
It uses open(2) for opening the file.
That is not a C standard function. I believe it's posix so it
probably only works on systems which have some extension method that
adds the posix function headers and libraries.
Remove del for email
Jun 27 '08 #5

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

Similar topics

2
by: Fortepianissimo | last post by:
First off I know I can install the latest python from Fink quite easily and it'll give me everything needed. But I'm trying to distribute my python app to end users who don't really care (or know)...
1
by: Ed | last post by:
I am trying to use a Perl script which requires a Database module other than "dbm" to be the default Mod. So, what the script is checking is import anydbm if (anydbm._defaultmod.__name__ ==...
3
by: jyang825 | last post by:
Hi all, I was hoping I could do something like this in JavaScript: var a = {x:1, y:2}; var b = {x:2, z:3}; b.prototype = a; And then:
31
by: Tony | last post by:
I just noticed that prototype.js is one of the files in the Ajax.NET distribution - I'm pretty concerned about this. Does anyone know if this is the same "prototype.js" that is not well-liked...
1
by: brokow | last post by:
I have been trying to get the gdbm module in python 2.4 to read a gdbm file from python 1.5.2 and having no luck. I get a file error when I try to open the 1.5.2-created gdbm file. Even a very...
0
by: Laszlo Nagy | last post by:
Hi All, gdbm objects have a "firstkey" and a "nextkey" method. So if I want iterate through the keys (which I often do) then I have to do this: def itergdbmkeys(gdbm_obj): key =...
2
by: Shriphani | last post by:
dictionary = gdbm.open('dictionary','c') dictionary = 'Openbox' dictionary.get('Ellipsize') the last line generates an attribute error. Can someone tell me what I am doing wrong? Regards,...
0
by: Douglas Applegate | last post by:
Hi- I am having a problem with shelve. The problem I think is really with gdbm. I'll write out a file using shelve/gdbm on an amd64 machine and then I'll try to read it in on a i386 machine. The...
2
by: RayOsborn | last post by:
I have some old "shelve" databases created in Python 2.2 that use the old bsddb format, whereas the version of Python 2.4 installed by my web hosting service doesn't have bsddb available at all...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...
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
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
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.