473,545 Members | 2,688 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

trouble, writing an array of structure to binary file.

Hi!

In my code, I have an array of a structure, which I want to save to a
binary file. When the array is just created, everything works fine, but
when I change contents of the array, saving results in a file, which
doesn't hold the information of the changed array anymore. I dont know why.

Here is the code:

/*

1. loadDirectory() loads records from a binary file into an Array (of table_elements)
2. The address of the first element of the array is stored in 'records'.
3. saveDirectory() should save the array to a file again.

My problem is now: when I change some array elements and then save the
array to a file, and then reload the file via loadDirectory, the content of the
array-elements has changed. I dont know why.

*/

#define DIRECTORY_FILE "index.director y"

typedef struct {
int local_depth;
int elements;
int address;
} table_element;
table_element *records;
int global_depth;
int loadDirectory() {
FILE *directoryFile = fopen (DIRECTORY_FILE , "rb");

if (directoryFile != NULL) {
fread ( &global_dept h, sizeof (int), 1, directoryFile);

printf ("Global Depth = %d\n", global_depth);

int size = (int) pow(2,global_de pth);
printf ("Size = %d\n", size);
table_element e[size];
table_element eintrag;
int i;
for (i=0; i < (int) pow(2,global_de pth); i++) {
fread ( &eintrag, sizeof (table_element) , 1, directoryFile);
printf ("I've read the following: Local-Depth = %d, Elements = %d, Address = %d\n", eintrag.local_d epth, eintrag.element s, eintrag.address );
e[i] = eintrag;
}
records = e;
return 0;

} else return -1;
}

void saveDirectory () {
FILE *fdirectory = fopen (DIRECTORY_FILE , "wb");

if (fdirectory != NULL) {

fwrite (&global_dept h, sizeof (int), 1, fdirectory);
fwrite (records, sizeof (table_element) , (int) pow (2,global_depth ), fdirectory);

fclose (fdirectory);
}
}

Thank you in advance. If the output is unreadable, have a look at
http://nopaste.php-q.net/63414

Greets Jens
Nov 14 '05 #1
4 5621
Jens Mittag wrote:

Hi!

In my code, I have an array of a structure, which I want to save to a
binary file. When the array is just created, everything works fine, but
when I change contents of the array, saving results in a file, which
doesn't hold the information of the changed array anymore. I dont know why.

Here is the code:

/*

1. loadDirectory() loads records from a binary file into an Array (of table_elements)
2. The address of the first element of the array is stored in 'records'.
3. saveDirectory() should save the array to a file again.

My problem is now: when I change some array elements and then save the
array to a file, and then reload the file via loadDirectory, the content of the
array-elements has changed. I dont know why.

*/

#define DIRECTORY_FILE "index.director y"

typedef struct {
int local_depth;
int elements;
int address;
} table_element;

table_element *records;
int global_depth;

int loadDirectory() {
FILE *directoryFile = fopen (DIRECTORY_FILE , "rb");

if (directoryFile != NULL) {
fread ( &global_dept h, sizeof (int), 1, directoryFile);

printf ("Global Depth = %d\n", global_depth);

int size = (int) pow(2,global_de pth);
printf ("Size = %d\n", size); table_element e[size];
table_element eintrag;
int i;
These declaration belong way up there, under FILE *... As it is
it should not even compile under any self-respecting C compiler.
for (i=0; i < (int) pow(2,global_de pth); i++) {
fread ( &eintrag, sizeof (table_element) , 1, directoryFile);
printf ("I've read the following: Local-Depth = %d, Elements = %d, Address = %d\n", eintrag.local_d epth, eintrag.element s, eintrag.address );
e[i] = eintrag;
}
records = e;
e is local. At function exit its contents are lost and its
address becomes meaningless.
return 0;
However the file is still open. Naughty.

} else return -1;
}

void saveDirectory () {
FILE *fdirectory = fopen (DIRECTORY_FILE , "wb");

if (fdirectory != NULL) {

fwrite (&global_dept h, sizeof (int), 1, fdirectory);
fwrite (records, sizeof (table_element) , (int) pow (2,global_depth ), fdirectory);

fclose (fdirectory);
}
}

Thank you in advance. If the output is unreadable, have a look at
http://nopaste.php-q.net/63414


Try to publish complete, compilable, source which demonstrates the
problem. Also limit line length to 65 or so, and do not use //
comments or tabs in newsgroups.

--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Nov 14 '05 #2
Am Sun, 06 Jun 2004 16:19:13 +0000 schrieb CBFalconer:
Try to publish complete, compilable, source which demonstrates the
problem. Also limit line length to 65 or so, and do not use //
comments or tabs in newsgroups.


Thanks. Will try all the stuff you mentioned.

Jens
Nov 14 '05 #3


Jens Mittag wrote:
Hi!

In my code, I have an array of a structure, which I want to save to a
binary file. When the array is just created, everything works fine, but
when I change contents of the array, saving results in a file, which
doesn't hold the information of the changed array anymore. I dont know why.

Here is the code:

/*

1. loadDirectory() loads records from a binary file into an Array (of table_elements)
2. The address of the first element of the array is stored in 'records'.
3. saveDirectory() should save the array to a file again.

My problem is now: when I change some array elements and then save the
array to a file, and then reload the file via loadDirectory, the content of the
array-elements has changed. I dont know why.
You have not shown code that details how you came to this
conclusion. Because of this, one cannot specifically point to
the cause of the unexpected behavior. However, in the code you
have provided, there is one glaring error in function
LoadDirectory involving the creation of the array.

*/

#define DIRECTORY_FILE "index.director y"

typedef struct {
int local_depth;
int elements;
int address;
} table_element;
table_element *records;
int global_depth;
int loadDirectory() {
FILE *directoryFile = fopen (DIRECTORY_FILE , "rb");

if (directoryFile != NULL) {
fread ( &global_dept h, sizeof (int), 1, directoryFile);

printf ("Global Depth = %d\n", global_depth);

int size = (int) pow(2,global_de pth);
printf ("Size = %d\n", size);
table_element e[size];
e is declared and exists only in function loadDirectory.

table_element eintrag;
int i;
for (i=0; i < (int) pow(2,global_de pth); i++) {
fread ( &eintrag, sizeof (table_element) , 1, directoryFile);
printf ("I've read the following: Local-Depth = %d, Elements = %d, Address = %d\n", eintrag.local_d epth, eintrag.element s, eintrag.address );
e[i] = eintrag;
}
records = e;
The global pointer, records, points to this function's local array. Once
the function concludes its execution, the local variable will cease
to exist and the value of records is useless. A quick solution is to
dynamically allocate using function malloc or realloc to create the
array. The maintenance involved in the dynamic memory manage can
become complex. To help reduce the complexity, I would suggest you
modify your datatype and write functions that you can use to
safely manipulate the datatype. Although I do not know the specific
purpose of your datatype, I have provided, below, an example that might
help you.

return 0;

} else return -1;
}

void saveDirectory () {
FILE *fdirectory = fopen (DIRECTORY_FILE , "wb");


.......snip.... ...
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define DIRECTORY_FILE "index.dat"

typedef struct
{
int local_depth;
int elements;
int address;
} table_element;

typedef struct
{
table_element *records;
unsigned global_depth;
} table_array;

/* Prototypes */
int loadDirectory(t able_array *p);
int createArray(tab le_array *p, unsigned global_depth);
int saveDirectory (table_array *p);
void freeArray(table _array *p);
void printArray(tabl e_array *p);

int main(void)
{
table_element test[4] = {{ 1,2,3},{2,3,4}, {3,4,5},{6,7,8} };
table_array my = {NULL};
unsigned i,depth;

depth = 2;
if(!createArray (&my,depth)) exit(EXIT_FAILU RE);
for(i = 0;i < (unsigned)pow(2 ,depth);i++)
my.records[i] = test[i];
printArray(&my) ;
if(saveDirector y(&my)) puts("\nSaving the array to file");
else
{
puts("\nFailure in saving the array to file");
exit(EXIT_FAILU RE);
}
puts("\nFreeing the array\n");
freeArray(&my);
printArray(&my) ;
puts("\nloading the array from file\n");
if(loadDirector y(&my)) printArray(&my) ;
else puts("Failure in loading array from file");
freeArray(&my);
return 0;
}

int loadDirectory(t able_array *p)
{
FILE *directoryFile = fopen (DIRECTORY_FILE , "rb");

if (directoryFile == NULL) return 0;
else
{
unsigned size,i;

freeArray(p);
if(1 != fread (&p->global_depth , sizeof (int), 1,
directoryFile))
{
freeArray(p);
return 0;
}
size = (unsigned)pow(2 ,p->global_depth );
p->records = malloc(size * (sizeof *p->records));
if(!p->records)
{
freeArray(p);
return 0;
}
for (i=0; i < size ; i++)
if(1 != fread(&p->records[i],sizeof(table_e lement),
1, directoryFile))
{
freeArray(p);
return 0;
}
}
fclose(director yFile);
return 1;
}

int createArray(tab le_array *p, unsigned global_depth)
{
table_element *tmp;

if((tmp = realloc(p->records,
(size_t)pow(2,g lobal_depth)*(s izeof *p->records))) == NULL)
return 0;
p->records = tmp;
p->global_depth = global_depth;
return 1;
}

int saveDirectory (table_array *p)
{
FILE *fdirectory = fopen (DIRECTORY_FILE , "wb");

if (fdirectory == NULL || p->global_depth == 0) return 0;
else
{
unsigned size;
if(1 != fwrite (&p->global_depth , sizeof (int),
1, fdirectory))
return 0;
size = (unsigned)pow(2 ,p->global_depth );
if(size != fwrite(p->records, sizeof(table_el ement),
size, fdirectory))
return 0;
fclose (fdirectory);
}
return 1;
}

void freeArray(table _array *p)
{
free(p->records);
p->records = NULL;
p->global_depth = 0;
return;
}

void printArray(tabl e_array *p)
{
unsigned i;

if(p->global_depth == 0) puts("No Allocated Array");
else
{
for(i = 0;i < (unsigned)pow(2 ,p->global_depth); i++)
printf("Element #%u\n\tlocal_de pth = %d\n\t"
"Elements = %d\n\tAddress = %d\n\n",
i+1,p->records[i].local_depth,
p->records[i].elements,p->records[i].address);
}
return;
}
--
Al Bowers
Tampa, Fl USA
mailto: xa******@myrapi dsys.com (remove the x to send email)
http://www.geocities.com/abowers822/

Nov 14 '05 #4
On Sun, 06 Jun 2004 16:19:13 GMT, CBFalconer <cb********@yah oo.com>
wrote:
Jens Mittag wrote:

typedef struct {
int local_depth;
int elements;
int address;
} table_element;

table_element *records;
int global_depth;

int loadDirectory() {
FILE *directoryFile = fopen (DIRECTORY_FILE , "rb");

if (directoryFile != NULL) {
fread ( &global_dept h, sizeof (int), 1, directoryFile);

printf ("Global Depth = %d\n", global_depth);

int size = (int) pow(2,global_de pth);
More idiomatic, and probably more efficient: 1<<global_depth .
printf ("Size = %d\n", size);

table_element e[size];
table_element eintrag;
int i;


These declaration belong way up there, under FILE *... As it is
it should not even compile under any self-respecting C compiler.

They should under any C99; or gcc, which respects itself perhaps more
than it should. And if neither of those, then moving them is still
wrong as size is not a constant expression.
for (i=0; i < (int) pow(2,global_de pth); i++) {
Since you've already computed 'size', (re)use it.
fread ( &eintrag, sizeof (table_element) , 1, directoryFile);
printf ("I've read the following: Local-Depth = %d, Elements = %d, Address = %d\n", eintrag.local_d epth, eintrag.element s, eintrag.address );
e[i] = eintrag;
}
Or, if you don't need the outputs, or can do them separately/later,
replace the whole loop by one
fread (e /* or records */, sizeof *e, size, directoryFile)
preferably with also
if( fread_as_above != size ) /* handle error appropriately */
records = e;


e is local. At function exit its contents are lost and its
address becomes meaningless.

Yep, that's the real killer.

- David.Thompson1 at worldnet.att.ne t
Nov 14 '05 #5

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

Similar topics

5
5544
by: rob | last post by:
hey every1, I've got alot of data to write out to file and it's all just 1's and 0's. It's all stored in 2 dimensional arrays of width 32 and varying height. At the moment it's all just integer arrays and the individual 1's and 0's are being written out as integers.
29
3539
by: Glen | last post by:
Is it possible to write a structure to a file in c...as in c++...?? is it using fwrite?? thanx glen
5
4323
by: Phil Kelly | last post by:
Hi I need to write the contents of a structure to a binary file - there is one string and 2 integers, but I can't seem to figure out how to write the data correctly. If I am simply writing text to a file there is no problem - that starts when I attempt to write the structure. Can someone help me out, please?
2
4846
by: twawsico | last post by:
I have a piece of code that needs to read the contents of a binary file (that I've created with another app) into an array of structures. The binary data in the file represents just a series of singles that correspond to those in my structure detailed below. So when I load the file, all that I know for certain is that there will be some...
3
3409
by: Zeke Zinzul | last post by:
Hi Guys & Geeks, What's the most elegant way of dealing with binary data and structures? Say I have this (which I actually do, a woo-hoo): struct Struct_IconHeader { byte width; byte height;
6
5247
by: arne.muller | last post by:
Hello, I've come across some problems reading strucutres from binary files. Basically I've some strutures typedef struct { int i; double x; int n; double *mz;
6
1591
by: John | last post by:
Hi I am trying to save settings of controls on my form to a file so I can read them back later and recreate the controls on the form. I have figured out how to go through all controls and get their properties (see code below). What I am not sure is; how and what type of file format I need to save the info to and how to read it back. Would...
5
3798
by: zehra.mb | last post by:
Hi, I had written application for storing employee data in binary file and reading those data from binary file and display it in C language. But I face some issue with writing data to binary file. Here is my part of my code. struct cust_data { int nCAFID; char *szFirstName;
3
11142
by: =?Utf-8?B?UmF5IE1pdGNoZWxs?= | last post by:
Hello, I'm trying to write an array of structures named myStructArray to a binary file and later on read it back. Although I could complete the entire project in C in about 2 minutes, I obviously have my head up and locked when it comes to C#. My first attempt to read such a file was something like: ...
0
7502
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7434
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7457
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7791
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5360
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5078
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3470
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1921
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
744
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.