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

const struct members

Suppose I have a structure with many members, and I pass a pointer to
that structure to a function. I'd like the prototype of the function
to specify that it will only be changing certain members of the
function, but I have only the following horrific way to do that. Can
someone please suggest a better alternative?

#include <stdio.h>

struct foo {
char *a;
char *b;
};

struct const_foo {
const char *a;
const char *b;
};

struct foo_const_a {
const char *a;
char *b;
};

struct foo_const_b {
char *a;
const char *b;
};

void modify_a(struct foo_const_b *f)
{
f->a = "a has been changed!";
}

void modify_b(struct foo_const_a *f)
{
f->b = "b has been changed!";
}

void print_foo(struct const_foo *f)
{
printf("f.a = %s\nf.b = %s\n", f->a, f->b);
}

int main(void)
{
struct foo F = {"a string", "b string"};

print_foo((struct const_foo*)&F);
modify_a((struct foo_const_b*)&F);
modify_b((struct foo_const_a*)&F);
print_foo((struct const_foo*)&F);

return 0;
}

May 1 '06 #1
5 3304

"Bill Pursell" <bi**********@gmail.com> wrote in message
news:11**********************@j33g2000cwa.googlegr oups.com...
Suppose I have a structure with many members, and I pass a pointer to
that structure to a function. I'd like the prototype of the function
to specify that it will only be changing certain members of the
function, but I have only the following horrific way to do that. Can
someone please suggest a better alternative?

#include <stdio.h>

struct foo {
char *a;
char *b;
};

struct const_foo {
const char *a;
const char *b;
};

struct foo_const_a {
const char *a;
char *b;
};

struct foo_const_b {
char *a;
const char *b;
};

void modify_a(struct foo_const_b *f)
{
f->a = "a has been changed!";
}

void modify_b(struct foo_const_a *f)
{
f->b = "b has been changed!";
}

void print_foo(struct const_foo *f)
{
printf("f.a = %s\nf.b = %s\n", f->a, f->b);
}

int main(void)
{
struct foo F = {"a string", "b string"};

print_foo((struct const_foo*)&F);
modify_a((struct foo_const_b*)&F);
modify_b((struct foo_const_a*)&F);
print_foo((struct const_foo*)&F);

return 0;
}


Since modify_b can't modify 'a' and modify_a can't modify 'b', why do you
need to protect the other structure elements? Is there a data corruption
issue here?

If so, you might want to have two versions of the structure: "protected" and
"unprotected". At a critical point in the program, copy the "protected"
structure to the "unprotected" one. Modify elements of the "unprotected"
structure via a normal routine or assignment. When done, you have a few
choices. You could discard the "unprotected" structure, copy the
"unprotected" structure to the "protected" one, copy the modified element
from the "unprotected" structure to the "protected", or compare the
structures to see what's going wrong.
Rod Pemberton
May 1 '06 #2
On 1 May 2006 12:19:48 -0700, "Bill Pursell" <bi**********@gmail.com>
wrote:
Suppose I have a structure with many members, and I pass a pointer to
that structure to a function. I'd like the prototype of the function
to specify that it will only be changing certain members of the
function, but I have only the following horrific way to do that. Can
someone please suggest a better alternative?

#include <stdio.h>

struct foo {
char *a;
char *b;
};

struct const_foo {
const char *a;
const char *b;
};

struct foo_const_a {
const char *a;
char *b;
};

struct foo_const_b {
char *a;
const char *b;
};

void modify_a(struct foo_const_b *f)
{
f->a = "a has been changed!";
}

void modify_b(struct foo_const_a *f)
{
f->b = "b has been changed!";
}

void print_foo(struct const_foo *f)
{
printf("f.a = %s\nf.b = %s\n", f->a, f->b);
}

int main(void)
{
struct foo F = {"a string", "b string"};

print_foo((struct const_foo*)&F);
Unfortunately, this need not work. You have no guarantee that the
padding, or lack of same, in a struct foo is the same as that in a
struct const_foo). offsetof(struct foo,b) could be 4 while
offsetof(struct const_foo,b) could be 8. Unlikely, I admit, but still
possible, especially on the DS9000. modify_a((struct foo_const_b*)&F);
modify_b((struct foo_const_a*)&F);
print_foo((struct const_foo*)&F);

return 0;
}

Remove del for email
May 2 '06 #3
Rod Pemberton wrote:
"Bill Pursell" <bi**********@gmail.com> wrote in message
news:11**********************@j33g2000cwa.googlegr oups.com...
Suppose I have a structure with many members, and I pass a pointer to
that structure to a function. I'd like the prototype of the function
to specify that it will only be changing certain members of the
function, but I have only the following horrific way to do that. Can
someone please suggest a better alternative?

#include <stdio.h>

struct foo {
char *a;
char *b;
};

struct const_foo {
const char *a;
const char *b;
};

struct foo_const_a {
const char *a;
char *b;
};

struct foo_const_b {
char *a;
const char *b;
};

void modify_a(struct foo_const_b *f)
{
f->a = "a has been changed!";
}

void modify_b(struct foo_const_a *f)
{
f->b = "b has been changed!";
}

void print_foo(struct const_foo *f)
{
printf("f.a = %s\nf.b = %s\n", f->a, f->b);
}

int main(void)
{
struct foo F = {"a string", "b string"};

print_foo((struct const_foo*)&F);
modify_a((struct foo_const_b*)&F);
modify_b((struct foo_const_a*)&F);
print_foo((struct const_foo*)&F);

return 0;
}


Since modify_b can't modify 'a' and modify_a can't modify 'b', why do you
need to protect the other structure elements? Is there a data corruption
issue here?


There's no data corruption problem, I just observed that in many
instances I have data structures with several buffers getting passed
into functions, and the only manner by which I can tell which function
modifies which buffer is to inspect the function body/comments. I
could modify the protoypes to specify that the struct is constant, but
that of course gives no assurance on the contents of foo->a. I suppose
the only other solution is to define the structure as having const
members and making it difficult to assign/modify things. Something
like:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct foo {
const char *a;
const char *b;
};

void
print_foo(const struct foo *f)
{
printf("f.a = %s\n", f->a);
printf("f.b = %s\n", f->b);
}

void
modify(const struct foo *f, char *dest)
{
const char *src = f->a;
dest[0] = src[0]+1;
}

int
main(void)
{
struct foo f;
f.a = malloc(20);
f.b = malloc(20);
if (f.a == NULL || f.b == NULL)
perror(0), exit(-1);

strcpy((char *)f.a, "string a");
strcpy((char *)f.b, "string b");

print_foo(&f);
modify(&f, (char *)f.b);
print_foo(&f);
return 0;
}
The trouble with this is that modify() (or print_foo()!) could be still
be written to do:
((char *)f->a)[3]++;
but that's pathologically poor coding, so I can avoid that. In this
instance, the caller is doing all the casting, so it's fairly clear
from context which members are being modified.

May 2 '06 #4

"Bill Pursell" <bi**********@gmail.com> wrote in message
news:11**********************@g10g2000cwb.googlegr oups.com...
Rod Pemberton wrote:
"Bill Pursell" <bi**********@gmail.com> wrote in message
news:11**********************@j33g2000cwa.googlegr oups.com...
Suppose I have a structure with many members, and I pass a pointer to
that structure to a function. I'd like the prototype of the function
to specify that it will only be changing certain members of the
function, but I have only the following horrific way to do that. Can
someone please suggest a better alternative?


Since modify_b can't modify 'a' and modify_a can't modify 'b', why do you need to protect the other structure elements? Is there a data corruption issue here?


There's no data corruption problem, I just observed that in many
instances I have data structures with several buffers getting passed
into functions, and the only manner by which I can tell which function
modifies which buffer is to inspect the function body/comments. I
could modify the protoypes to specify that the struct is constant, but
that of course gives no assurance on the contents of foo->a. I suppose
the only other solution is to define the structure as having const
members and making it difficult to assign/modify things. Something
like:


It seems that you are trying to create C features with may be available in
C++. I know very little about C++, but IIRC, you can implement data
protection due to the object oriented feature of binding code with data.
The code gets executed for each action on the data. Which means, you can
prevent variables from being multiply assigned, set, reset or whatever...
Perhaps you might look into using a small amount of C++.
Rod Pemberton
May 2 '06 #5
On 1 May 2006 12:19:48 -0700, "Bill Pursell" <bi**********@gmail.com>
wrote:
Suppose I have a structure with many members, and I pass a pointer to
that structure to a function. I'd like the prototype of the function
to specify that it will only be changing certain members of the
function, but I have only the following horrific way to do that. Can
someone please suggest a better alternative?

#include <stdio.h>

struct foo {
char *a;
char *b;
};

struct const_foo {
const char *a;
const char *b;
};

struct foo_const_a {
const char *a;
char *b;
};

struct foo_const_b {
char *a;
const char *b;
};

void modify_a(struct foo_const_b *f)
{
f->a = "a has been changed!";
}

void modify_b(struct foo_const_a *f)
{
f->b = "b has been changed!";
}

Those don't (even) do what you asked for. What you declared const is
the data pointed to by the struct member e.g. a, not the member a
itself. In your modify_a (struct foo_const_b *f)
f->b = something would work with no (required) complaint.
You wanted
struct foo_const_a { char * const a; char * b; };
etc.

As already noted, formally these 'slightly different' structs are not
required to be 'compatible' i.e. laid out the same, although I don't
see any plausible reason an implementation would not do so.

And as you already noted, there is nothing to prevent the called
routine from casting away these 'partial consts', so in general you're
going to have to read the code of those functions anyway. Ideally you
(or whoever) should give the functions, and sometimes their
interface/prototype parameters, names that accurately describe what
they do, so just by looking at them you can tell. That's not always
easy to do however, especially in code that has evolved (and often
deteriorated) over time, changes, and (supposed) enhancements.
If the routines/library you are calling are in really bad shape, you
might be better off just rewriting up to scratch. Your call.

- David.Thompson1 at worldnet.att.net
May 11 '06 #6

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

Similar topics

19
by: Thomas Matthews | last post by:
Hi, Given a structure of pointers: struct Example_Struct { unsigned char * ptr_buffer; unsigned int * ptr_numbers; }; And a function that will accept the structure:
2
by: kelvSYC | last post by:
If you have an instance of a struct that's marked const, does the const keyword mean that all of its members are read-only? What if you wanted a struct where some members are constants and a few...
10
by: S.Tobias | last post by:
1. If I have a struct type which contains a const member: struct mystruct { const int id; int mutable; }; does a definition struct mystruct ms; define an object `ms' which is *partly* const? ...
3
by: dj | last post by:
Perhaps this question should be in the standard c newsgroup, but i hope somebody answers it here. Anyway, I came across this situation in an otherwise c++ code. I need a struct that works like...
10
by: subramanian100in | last post by:
The following is a beginner's question. Suppose TYPE1 and TYPE2 are two types for which suitable ctors and operator= are defined. Suppose I have class Test { TYPE1 mem1;
3
by: subramanian100in | last post by:
Consider the following program: #include <iostream> using namespace std; class Base { public: Base(int x = 0);
12
by: hweekuan | last post by:
hi, it seems i can't assign the const variable u in class A, one way to solve the problem may be to build a copy constructor. however, why does C++ or vector class not like this code? my g++ is:...
15
by: akomiakov | last post by:
Is there a technical reason why one can't initialize a cost static non- integral data member in a class?
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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,...
0
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...

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.