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

Writing a function that changes an unknown-type numeric variable

In my software, there are some variables that represents some settings.
They usually are numerical variables: unsigned char (0..255),
signed char (-127..128), unsigned int (0..65535), signed int (-32767..32768).

I want to write a generic C function that changes the value of one parameter.
For example, a function that takes a pointer to the variable and increments
it by one. Of course, the function doesn't know the variable type (unsigned
char, signed char, and so on).

I thought to solve this problem in two ways, but I don't like them.

The first solution is to create a struct with 4 different pointers where
only one of that is not NULL.

struct {
unsigned char *p_uchar;
signed char *p_schar;
unsigned int *p_uint;
signed int *p_sint;
...
} param;

But I will lost many RAM space and the incrementing function will be poor
optimized.

if( p_uchar )
*p_uchar++;
else if( p_schar )
*p_schar++;
else if( p_uint )
*p_uint++;
else if( p_sint )
*p_sint++;
The other solution is to use a member of the struct to identify the type of
the variable and using void pointer for the variable.

#define PARAMTYPE_UCHAR 1
#define PARAMTYPE_SCHAR 2
#define PARAMTYPE_UINT 3
#define PARAMTYPE_SINT 4
struct {
int type;
void *p_value;
...
};

In this way I will allocate less space than before but the incrementing function
is low optimized.

if( type==PARAMTYPE_UCHAR )
(*(unsigned char *)p_value)++;
else if( type==PARAMTYPE_SCHAR )
(*(signed char *)p_value)++;
....
I wonder that a different and more elegant solution there is.
I think to the printf() function. I pass int and char with %d parameter
and the printf() works well, but it doesn't know the exact type of
the variable.
Maybe the only problem is with unsigned numerical variables that want
the %u parameter, I think.
Jul 19 '06 #1
8 1804
In article <GU********************@twister1.libero.it>,
pozz <pN************@libero.itwrote:
>I want to write a generic C function that changes the value of one parameter.
For example, a function that takes a pointer to the variable and increments
it by one. Of course, the function doesn't know the variable type (unsigned
char, signed char, and so on).
>In this way I will allocate less space than before but the incrementing function
is low optimized.
>if( type==PARAMTYPE_UCHAR )
(*(unsigned char *)p_value)++;
else if( type==PARAMTYPE_SCHAR )
(*(signed char *)p_value)++;
...
Try a switch() statement: at worst it will expand in to a chain of
if/else, and the optimizer might be able to do much better than that.

Alternately, try something like,

void increment_uchar( void *p_value ) { *(unsigned char *)p_value)++ };
void increment_schar( void *p_value ) { *(signed char *)p_value)++ };
[...]

Then you have a table of increment functions, and use

increment_functions[type](p_value);
--
"No one has the right to destroy another person's belief by
demanding empirical evidence." -- Ann Landers
Jul 19 '06 #2
pozz <pN************@libero.itwrites:
if( p_uchar )
*p_uchar++;
You mean (*p_uchar)++;

[...]
The other solution is to use a member of the struct to identify the type of
the variable and using void pointer for the variable.

#define PARAMTYPE_UCHAR 1
#define PARAMTYPE_SCHAR 2
#define PARAMTYPE_UINT 3
#define PARAMTYPE_SINT 4
struct {
int type;
void *p_value;
...
};
struct tag {
int type;
union {
unsigned char *uc;
signed char *sc;
unsigned int *ui;
signed int *si;
} p;
};

switch (v->type) {
case PARAMTYPE_UCHAR:
(*v->p.uc)++;
break;
case PARAMTYPE_SCHAR:
(*v->p.sc)++;
break;
case PARAMTYPE_UINT:
(*v->p.ui)++;
break;
case PARAMTYPE_SINT:
(*v->p.si)++;
break;
}

Actually, do you really need pointers? If not, you can do this:

struct tag {
int type;
union {
unsigned char uc;
signed char sc;
unsigned int ui;
signed int si;
} p;
};

switch (v->type) {
case PARAMTYPE_UCHAR:
v->p.uc++;
break;
case PARAMTYPE_SCHAR:
v->p.sc++;
break;
case PARAMTYPE_UINT:
v->p.ui++;
break;
case PARAMTYPE_SINT:
v->p.si++;
break;
}

--
int main(void){char p[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuv wxyz.\
\n",*q="kl BIcNBFr.NKEzjwCIxNJC";int i=sizeof p/2;char *strchr();int putchar(\
);while(*q){i+=strchr(p,*q++)-p;if(i>=(int)sizeof p)i-=sizeof p-1;putchar(p[i]\
);}return 0;}
Jul 19 '06 #3
Ben Pfaff ha scritto:
struct tag {
int type;
union {
unsigned char *uc;
signed char *sc;
unsigned int *ui;
signed int *si;
} p;
};
I don't want to use union because I must use const variables that are
stored in a FLASH memory (microcontroller architecture) and not in RAM
that is small. I must initialize that const variables but I have an old
compiler and I can't initialize the members of a union (only C99 can do
that, I think).

Anyway, your example is very similar to the following:

struct {
int type;
void *p_value;
} p;

Or not?
Jul 19 '06 #4
pozz <pN************@libero.itwrites:
Ben Pfaff ha scritto:
>struct tag {
int type;
union {
unsigned char *uc;
signed char *sc;
unsigned int *ui;
signed int *si;
} p;
};

I don't want to use union because I must use const variables that are
stored in a FLASH memory (microcontroller architecture) and not in RAM
that is small. I must initialize that const variables but I have an old
compiler and I can't initialize the members of a union (only C99 can do
that, I think).
Hmm. Well, that's rough, I guess.
Anyway, your example is very similar to the following:

struct {
int type;
void *p_value;
} p;
It avoids the need for casts or wordy implicit conversions, but
the effect is similar.
--
Bite me! said C.
Jul 19 '06 #5

pozz wrote:
In my software, there are some variables that represents some settings.
They usually are numerical variables: unsigned char (0..255),
signed char (-127..128), unsigned int (0..65535), signed int (-32767..32768).

I want to write a generic C function that changes the value of one parameter.
For example, a function that takes a pointer to the variable and increments
it by one. Of course, the function doesn't know the variable type (unsigned
char, signed char, and so on).
You can make use of some somewhat fancy macros to do the right thing.
That way there's no long chain of tests at run-time.
Something very close to:

#define DefVar(Name,Type ) typedef Type Name##_Type; Name##_Type
Name;

#define Increment( Name ) (( Name##_Type * ) (&Name) ) ++

Jul 19 '06 #6


Ancient_Hacker wrote On 07/19/06 14:39,:
pozz wrote:
>>In my software, there are some variables that represents some settings.
They usually are numerical variables: unsigned char (0..255),
signed char (-127..128), unsigned int (0..65535), signed int (-32767..32768).

I want to write a generic C function that changes the value of one parameter.
For example, a function that takes a pointer to the variable and increments
it by one. Of course, the function doesn't know the variable type (unsigned
char, signed char, and so on).


You can make use of some somewhat fancy macros to do the right thing.
That way there's no long chain of tests at run-time.
Something very close to:

#define DefVar(Name,Type ) typedef Type Name##_Type; Name##_Type
Name;

#define Increment( Name ) (( Name##_Type * ) (&Name) ) ++
If I understand your intent, this would be used as

DefVar(fred,int)
DefVar(ethel,short)
...
Increment(fred);
Increment(ethel);

expanding to

typedef int fred_Type;
fred_Type fred;
typedef short ethel_Type;
ethel_Type ethel;
...
((fred_Type *)(&fred))++;
((ethel_Type *)(&ethel))++;

Have I got it? If so, I don't see how this improves on

int fred;
short ethel;
...
fred++;
ethel++;

(In fact, it has the appearance of a disimprovement.) Would
you mind explaining the benefits, or explaining what I've
overlooked?

--
Er*********@sun.com

Jul 19 '06 #7
(In fact, it has the appearance of a disimprovement.) Would
you mind explaining the benefits, or explaining what I've
overlooked?

The original poster wanted a "function" to increment an arbitrary
variable. My humble macro does that, with considerably less run-time
overhead. Whopee.

Although now looking back, it may be that he just has a void * pointer
coming in, in which case this macro is not quite the ticket.

Since the exact original intent isnt clear the best solution is still
up in the air.

Yet another way: If you can segregate the variables by size, then you
can key off the address:

if( Ptr_To_Var >= &Chr_Base && Ptr_To_Var < &Int_Base ) ((uchar *)
Ptr_To_Var) ++
else
if( Ptr_To_Var >= &Int_Base && Ptr_To_Var < &Long_Base ) ((int *)
Ptr_To_Var) ++
else
if( Ptr_To_Var >= &Long_Base && Ptr_To_Var < &End_Vars ) ((long int *)
Ptr_To_Var)
else { // impossible address }

Jul 19 '06 #8
On Wed, 19 Jul 2006 17:23:50 GMT, pozz <pN************@libero.it>
wrote in comp.lang.c:
In my software, there are some variables that represents some settings.
They usually are numerical variables: unsigned char (0..255),
signed char (-127..128), unsigned int (0..65535), signed int (-32767..32768).

I want to write a generic C function that changes the value of one parameter.
For example, a function that takes a pointer to the variable and increments
it by one. Of course, the function doesn't know the variable type (unsigned
char, signed char, and so on).

I thought to solve this problem in two ways, but I don't like them.

The first solution is to create a struct with 4 different pointers where
only one of that is not NULL.

struct {
unsigned char *p_uchar;
signed char *p_schar;
unsigned int *p_uint;
signed int *p_sint;
...
} param;

But I will lost many RAM space and the incrementing function will be poor
optimized.

if( p_uchar )
*p_uchar++;
else if( p_schar )
*p_schar++;
else if( p_uint )
*p_uint++;
else if( p_sint )
*p_sint++;
The other solution is to use a member of the struct to identify the type of
the variable and using void pointer for the variable.

#define PARAMTYPE_UCHAR 1
#define PARAMTYPE_SCHAR 2
#define PARAMTYPE_UINT 3
#define PARAMTYPE_SINT 4
struct {
int type;
void *p_value;
...
};

In this way I will allocate less space than before but the incrementing function
is low optimized.

if( type==PARAMTYPE_UCHAR )
(*(unsigned char *)p_value)++;
else if( type==PARAMTYPE_SCHAR )
(*(signed char *)p_value)++;
...
I wonder that a different and more elegant solution there is.
I think to the printf() function. I pass int and char with %d parameter
and the printf() works well, but it doesn't know the exact type of
the variable.
Maybe the only problem is with unsigned numerical variables that want
the %u parameter, I think.
The real question is WHY you want to do this. I see from a later post
that you are talking about "const" objects in an embedded system, but
you can't reliably change const objects.

You should explain the real problem that you are trying to solve, and
not just ask for help with what appears to be a rather clumsy solution
you are trying to kludge. There is probably a much better approach to
do what you really need to accomplish.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://c-faq.com/
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Jul 20 '06 #9

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

Similar topics

48
by: Joseph | last post by:
Hi I'm writing a commercial program which must be reliable. It has to do some basic reading and writing to and from files on the hard disk, and also to a floppy. I have foreseen a potential...
8
by: Matt Kruse | last post by:
I've found that under some circumstances, some code that I've been using to find an object's coordinates with respect to the viewport does not behave correctly. Is there a function that has been...
0
by: bohuge | last post by:
Hey! At the time being I'm working on a backup solution for a Qtek9090 pocketpc, which should be able to find and backup outlook data to a server, local files, messages and contact from the sim...
9
by: Christian Christmann | last post by:
Hi, I was just going through this exercise http://www.cas.mcmaster.ca/~franek/books/membook-answers/ch4/answers-ch4-3.html and I'am confused about the answer. It says: "... the compiler...
2
by: news | last post by:
I just upgraded to PHP 4.4.2 on my Slackware 10.2 system. And Apache/mySQL/PHP all work great through a browser. No errors. But when I try to run a PHP script through the command line, which I...
2
by: Qingning Huo | last post by:
Hi, Is this valid C++? It compiles on VC8 and g++ 4.1.1, but fails on Sun CC 5.8. --cut -- template<class T> class TClass { public:
6
by: Jack White | last post by:
Does anyone know if an analogue to the "swap()" function found in C++ exists in C#. For those not familiar, let's say you have a function that loads some collection passed in by reference. If an...
5
by: rotems | last post by:
Hi, I have a problem. I need to open unknown number of files for writing. In order to solve the problem I tried to open files in an array, where each node in the array is a pointer to a file....
4
by: lostlander | last post by:
In ARMCC, and Microsoft C, when i use a function which is never defined or delared, it gives out a warning, not a compiling error? why? (This leads to a bug to my program since I seldom pay much...
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
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,...
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
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...
0
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...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.