Help on digestion of C header files for a short program.


 
Thread Tools Search this Thread
Top Forums Programming Help on digestion of C header files for a short program.
# 8  
Old 07-25-2013
There are no rules (Except that it must be a valid name for a symbol), just traditions. He could have called it SLARTIBARTFAST and it would have worked.

The version does nothing but note the version. You can consider it an unused variable.

Last edited by Corona688; 07-25-2013 at 02:24 PM..
This User Gave Thanks to Corona688 For This Post:
# 9  
Old 07-25-2013
Quote:
Originally Posted by yifangt
I have some unclear catch for the following lines in the "khash.h" file:
Code:
#ifndef __AC_KHASH_H
#define __AC_KHASH_H
#define AC_VERSION_KHASH_H "0.2.6"

I understand #ifndef and #ifdef to avoid redundant inclusion of the headers/definition etc, but not sure the rules to name the content (here the __AC_KHASH_H) as I was recommended capitalized file name KHASH_H or __KHASH_H in general because the file is "khash.h". The author used __AC_KHASH_H. It seems to me anything is fine once it is unique. Did I miss anything? My unclear parts are:
1) What are the rules to name the content of #ifndefine, if any, in general for software developer?
2) Here AC_VERSION_KHASH_H "0.2.6" seems does not impact the program but for version record of the code, is this correct?
Thank you!
The name #defined doesn't matter much as long as every header that you will be using together uses a different name. A simple convention like __HeaderName (with _ replacing . in the header's name [sometimes after converting the header's name to uppercase]) is a common convention using namespace that is reserved by the C and POSIX standards for system implementor's use (not application writer's use). If you are writing application code (not part of the system an implementation delivers to customers), you need to choose a naming convention outside of this namespace that is coordinated with code from any other third party vendors whose code may be used with your code. (And if you're writing code you expect other's to use with their own code, you need to document the convention you use so they can avoid naming conflicts when they use your code.) You won't be adhering to the standards, but if you look at your system's headers you can probably easily figure out the conventions used by your OS vendor and use a similar, but slightly different, convention that will be unilkely to conflict with future vendor updates.

The standards reserve namespaces for the standards and namespaces for system implementers; everything else is available to application writers. People who write 3rd party software and end users are both considered "application writers" by the standards. So if you are in that category, you are stuck with finding a naming convention that doesn't trample on the namespace reserved for standards and system implementors (or your code might start behaving in strange ways when the next update to the system software is installed) and is "unique" compared to the namespaces used by other 3rd party code writers and end users.

Talk to the experts at your employer for the language you're using and follow their coding conventions. (Most medium and large sized companies will have these conventions on-line and give new hire programmers a pointer to them as part of their first day on the job "Here's How We Do Things at XYZ Corp." training.)

I will disagree slightly with Corona688 on the version information. If something isn't working for you with code you get from a 3rd party, they may ask for that version number so that can figure out which version of their product you're using. If you expect to ever make changes to headers that you write that will affect programmers using your code, including version information in your headers may save you or your successors many headaches later. Smilie
This User Gave Thanks to Don Cragun For This Post:
# 10  
Old 07-25-2013
Thanks Don!
I am not a professional coder, and this code discouraged me very much to catch C by myself. I do not want to give up yet. In the original "kseq.h" header line 220-224, 226 and 228 - 233. After I removed the escape backslash the three #define become:
Code:
#define KSEQ_INIT2(SCOPE, type_t, __read) KSTREAM_INIT(type_t, __read, 16384) __KSEQ_TYPE(type_t) __KSEQ_BASIC(SCOPE, type_t) __KSEQ_READ(SCOPE)
#define KSEQ_INIT(type_t, __read) KSEQ_INIT2(static, type_t, __read)
#define KSEQ_DECLARE(type_t) __KS_TYPE(type_t) __KSEQ_TYPE(type_t) extern kseq_t *kseq_init(type_t fd); void kseq_destroy(kseq_t *ks); int kseq_read(kseq_t *seq);

For the first and third #define, are they just auto-expanding to eventually become single #define (like the second #define), or very specific/complicated reason here? This is my first time to see #define "multiple?" things in a single row. Thanks a lot!

Last edited by yifangt; 07-25-2013 at 07:25 PM..
# 11  
Old 07-25-2013
Yes, they are using multiple defines. One invokes others when the program is compiled. They're just using one define to invoke a big mess of things.

Remember, they are text replacement. They get called when the program is compiled. Imagine this simpler example:

Code:
#define declare_add(TYPE)  type add_##type##(type a, type b) { return(a+b); }

When you use it with, say, int -- it plunks down this text:
Code:
int add_int(int a, int b) { return(a+b); }

...for you to call in your program later.

You are digging far, far, far deeper than needed, IMHO, you already have an example of how to use it. If you want to reverse engineer it from scratch, why not just make a new one?
This User Gave Thanks to Corona688 For This Post:
# 12  
Old 07-26-2013
Quote:
Originally Posted by Corona688
Yes, they are using multiple defines. One invokes others when the program is compiled. They're just using one define to invoke a big mess of things.

Remember, they are text replacement. They get called when the program is compiled. Imagine this simpler example:

Code:
#define declare_add(TYPE)  type add_##type##(type a, type b) { return(a+b); }

When you use it with, say, int -- it plunks down this text:
Code:
int add_int(int a, int b) { return(a+b); }

...for you to call in your program later.

You are digging far, far, far deeper than needed, IMHO, you already have an example of how to use it. If you want to reverse engineer it from scratch, why not just make a new one?
OK. I'm confused. When i use the macro definition above, the definition above with the TYPE converted to a single case, and the definition above with mixed case type but only the first ##, I get various complaints from the compiler.

If we're going to give yifangt a simple example, I think we need to provide one that compiles.

Shouldn't the macro be:
Code:
#define declare_add(type)  type add_##type(type a, type b) { return(a+b); }

or:
Code:
#define declare_add(TYPE)  type add_##TYPE(TYPE a, TYPE b) { return(a+b); }

(i.e., TYPE all uppercase or all lowercase and only one ##)?
The following code:
Code:
#include <stdio.h>
#include <stdlib.h>

#define declare_add(type)  type add_##type(type a, type b) { return(a+b); }
declare_add(int)
declare_add(float)
declare_add(double)

int
main(int argc, char *argv[]) {
        printf("%s + %s = %d\n%s + %s = %.15f\n%s + %s = %.15f\n",
                argv[1], argv[2], add_int(atoi(argv[1]), atoi(argv[2])),
                argv[3], argv[4], (double)add_float(atof(argv[3]), atof(argv[4])),
                argv[3], argv[4], add_double(atof(argv[3]), atof(argv[4])));
        return 0;

saved in a file named tester.c and built with gcc on Mac OS X using:
Code:
make tester

and invoked as:
Code:
tester 123 765 123.456e6 123.456e-10

produces the output:
Code:
123 + 765 = 888
123.456e6 + 123.456e-10 = 123456000.000000000000000
123.456e6 + 123.456e-10 = 123456000.000000014901161

which is what I would expect when adding the corresponding pairs of operands using types int, float, and double.

Note that the C standards say that atof() returns a double and the double will be cast to a float when it is passed to add_float() since add_float() is declared to take arguments of type float and return a float result. The float result is cast to a double because the operand to the printf() %f conversion specification is supposed to be a double (not a float). Some compilers are smart enough to cast varargs arguments to printf() to a type appropriate for the given conversion specification, but the standards don't require that level of complexity. Portable applications should cast arguments to printf() to types appropriate for the conversion specification and not assume that a compiler will fix your code for you nor that a compiler will give you a warning or an error if you don't pass an argument of the appropriate type to a function that has varying numbers of arguments.

With Mac OS X's gcc, the C preprocessor will convert the macro calls above to:
Code:
int add_##int(int a, int b) { return(a+b); }
float add_##float(float a, float b) { return(a+b); }
double add_##double(double a, double b) { return(a+b); }

and a later phase of the compiler will convert that to:
Code:
int add_int(int a, int b) { return(a+b); }
float add_float(float a, float b) { return(a+b); }
double add_double(double a, double b) { return(a+b); }

Note that I fully agree with Corona688 that taking a look at very complex macros and typedefs in a header is not an easy way to learn C. You need to start with a more basic tutorial on the language working through examples that you can easily understand. Then work yourself up to more complex constructs when you need them as you write C code to do tasks you want to perform.

If you're going to use this system of headers, libraries, and utilities, you should look at the documentation on how to use the tools that are provided rather than digging through the headers trying to figure out how it is implemented. (It may be that the examples in the headers are a major part of the documentation, but that doesn't mean you need to understand how the macros work to figure out how to use them.)

If you look at the system headers on a Mac OS X or a Solaris system, there is a good chance that you'll feel lost trying to figure out what all of the #ifdef's are doing and what all of the __name functions and variables mean. They are there to allow a single header to be used on a variety of CPU architectures; providing various programming environments with different sizes of integers, sizes of pointers, maximum sizes of file offsets; and to conform to various revisions of various standards. They are meant to be used as a black box to work as specified by the environment you tell the compiler you want to use in your program. If you want to know what the header is supposed to provide to you, look in the standard that defines the programming environment you want to use or in your system's man pages. Don't assume that they should be understood by novice C programmers. (Many expert C programmers can need weeks of concerted study to learn how some of these system headers work.)
These 3 Users Gave Thanks to Don Cragun For This Post:
# 13  
Old 07-26-2013
Thank you so much, Don and Corona668!
I really appreciate your explanation. I was trying catch the details of C. The header files were chosen as I could not understand them at all when I found them, which are not suitable for study but to start with. Next I will try to learn how to use them, exactly as suggested by Corona688. Besides the speed, another reason I was trying to go thru them is to modify them for some scenarios of my use---I am always warned "Do not re-invent the wheel!" Of course! It would be a long way to catch C to a novice level. I have learned a lot from this post, and thanks a lot again!
# 14  
Old 07-26-2013
Quote:
Originally Posted by yifangt
Besides the speed, another reason I was trying to go thru them is to modify them for some scenarios of my use---I am always warned "Do not re-invent the wheel!"
There are plenty of reasons to re-invent the wheel. It helps you understand what you're looking at, for one thing.

It is a library, so hopefully you shouldn't need to modify it too much for your own use. The included example code would be a better place to start than the innards...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find header in a text file and prepend it to all lines until another header is found

I've been struggling with this one for quite a while and cannot seem to find a solution for this find/replace scenario. Perhaps I'm getting rusty. I have a file that contains a number of metrics (exactly 3 fields per line) from a few appliances that are collected in parallel. To identify the... (3 Replies)
Discussion started by: verdepollo
3 Replies

2. Programming

Where to get C header files?

Some of my c code compiles fine but others can't find header files. Colored_Chars.c:4:10: fatal error: graphics.h: No such file or directory Do I need to download them from some where? I found this. Is this what I need to do? Under Using DSL libraries - How do I use graphics.h in... (3 Replies)
Discussion started by: drew77
3 Replies

3. Shell Programming and Scripting

Remove files having 0 byte or only header

Hi Team, I'm looking for a command which removes files having 0 byte of having only header line (1 line). My ETL process generates these files. Few files are not having header, in that case if no data from source, it will be 0 byte and few files are having header, in that case if no data from... (7 Replies)
Discussion started by: ace_friends22
7 Replies

4. UNIX for Dummies Questions & Answers

Kernel Header Files

I'm trying to lookup the definition of the ext4 superblock schedule in the kernel header files, but I can't seem to locate the files. I'm running the most recent Raspian Debian Wheezy OS with kernel version 3.18. Any help is greatly appreciated. Thank you!! (1 Reply)
Discussion started by: ksmarine1980
1 Replies

5. UNIX for Dummies Questions & Answers

Short Mail Program Help

Hi, I have been out of the loop with my UNIX/Linux for several years and have been working mainframe. I was trying to create a short two line program to create a list of email addresses as a variable and then send the list a file. Here is what I did and I thought that is was right, but I am... (3 Replies)
Discussion started by: jbrider
3 Replies

6. Shell Programming and Scripting

Short program to select lines from a file based on a second file

Hello, I use UBUNTU 12.04. I want to write a short program using awk to select some lines in a file based on a second file. My first file has this format with about 400,000 lines and 47 fields: SNP1 1 12.1 SNP2 1 13.2 SNP3 1 45.2 SNP4 1 23.4 My second file has this format: SNP2 SNP3... (1 Reply)
Discussion started by: Homa
1 Replies

7. UNIX for Dummies Questions & Answers

Short Program for Checking Server date

Hi Guys, Good morning! I have a file which looks something like this: Command was launched from partition 0. ------------------------------------------------ Executing command in server server3 Thu Jan 12 11:10:39 EET 2012 ------------------------------------------------... (3 Replies)
Discussion started by: rymnd_12345
3 Replies

8. UNIX for Dummies Questions & Answers

Merge all csv files in one folder considering only 1 header row and ignoring header of all others

Friends, I need help with the following in UNIX. Merge all csv files in one folder considering only 1 header row and ignoring header of all other files. FYI - All files are in same format and contains same headers. Thank you (4 Replies)
Discussion started by: Shiny_Roy
4 Replies

9. UNIX for Dummies Questions & Answers

Merge Files into Single with Header

Hi All, I am trying to merge all files in a directory that end in *.txt to a single file with the contents one after the other. This I can do using the cat function but how do I put the name of the file as a header for each one in the combined single file and seperate the contents from each... (2 Replies)
Discussion started by: pcg
2 Replies

10. Programming

C language Header files

Hi people I'm trying to do a school project and I've a situation wich is bothering me, imagine We've a program and that programs devided in multiple files "dotC1.c" and "dotC2.c" (for example) and they include our own header "header.h", and if We are using some libraries int both files it would... (2 Replies)
Discussion started by: pharaoh
2 Replies
Login or Register to Ask a Question