Monday, May 20, 2019
Software Developer
R N S INSTITUTE OF TECHNOLOGY CHANNASANDRA, BANGALORE 61 UNIX SYSTEM programmeing NOTES FOR 6TH SEMESTER INFORMATION SCIENCE SUBJECT CODE 06CS62 PREPARED BY RAJKUMAR appurtenant Professor Department of In fix upion Science DIVYA K 1RN09IS016 6th Semester Information Science and Engineering emailprotected com text edition Books 1 Terrence Chan Unix System schedule Using C++, Prentice Hall India, 1999. 2 W. Richard Stevens, Stephen A.Rago Advanced Programming in the UNIX Environment, 2nd Edition, Pearson Education / PHI, 2005 Notes have been circulated on self risk nobody can be held responsible if some(prenominal)thing is wrong or is improper information or insufficient information provided in it. contents UNIT 1, UNIT 2, UNIT 3, UNIT 4, UNIT 5, UNIT 6, UNIT 7 RNSIT UNIX SYSTEM PROGRAMMING NOTES UNIT 1 INTRODUCTION UNIX AND ANSI STANDARDS UNIX is a computer operating system originally developed in 1969 by a group of AT&T employees at Bell Labs, including Ken Thompson, Dennis R itchie, Douglas McElroy and Joe Ossanna.Today UNIX systems are get around into various branches, developed over time by AT&T as well as various commercial vendors and non-profit organizations. The ANSI C Standard In 1989, American National Standard Institute (ANSI) proposed C programming language standard X3. 159-1989 to standardise the language constructs and libraries. This is termed as ANSI C standard. This attempt to unify the murder of the C language supported on all computer system. The major differences between ANSI C and K&R C Kernighan and Ritchie are as follows ? Function prototyping ? fill-in of the const and volatile information type qualifiers. Support wide characters and internationalization. ? Permit lam pointers to be enjoymentd without dereferencing. Function prototyping ANSI C adopts C++ mould figure of speech technique where melt definition and declaration embarrass function names, arguments information types, and return value data types. This enables ANSI C compilers to check for function calls in drug user programs that pass invalid number of arguments or hostile arguments data type. These fix a major weakness of K&R C compilers invalid function calls in user programs often pass digest but cause programs to crash when they are executed.Eg unsigned long foo(char * fmt, double data) /*body of foo*/ unsigned long foo(char * fmt, double data) eg int printf(const char* fmt,.. ) External declaration of this function foo is specify variable number of arguments Support of the const and volatile data type qualifiers. ? The const keyword declares that near data cannot be changed. Eg int printf(const char* fmt,.. ) Declares a fmt argument that is of a const char * data type, meaning that the function printf cannot modify data in any character array that is passed as an actual argument value to fmt.Volatile keyword specifies that the values of some variables may change asynchronously, giving an hint to the compilers optimization algo rithm not to pull back any redundant statements that involve volatile objects. char get_io() volatile char* io_port = 0x7777 char ch = *io_port /*read beginning byte of data*/ ch = *io_port /*read second byte of data*/ ? eg If io_port variable is not declared to be volatile when the program is compiled, the compiler may eliminate second ch = *io_port statement, as it is considered redundant with respect to the previous statement. Prepared By RAJKUMAR Asst. Prof. & DIVYA K 1RN09IS016 Page 1 RNSIT UNIX SYSTEM PROGRAMMING NOTES The const and volatile data type qualifiers are as well as supported in C++. Support wide characters and internationalisation ? ? ANSI C supports internationalisation by allowing C-program to use wide characters. Wide characters use more than one byte of storage per character. ANSI C square ups the setlocale function, which allows users to specify the format of date, pecuniary and real number representations. For eg most countries display the date in dd/mm /yyyy format whereas US displays it in mm/dd/yyyy format. Function prototype of setlocale function is ? include char setlocale (int category, const char* locale) ? The setlocale function prototype and realistic values of the category argument are declared in the header. The category values specify what format class(es) is to be changed. Some of the possible values of the category argument are category value found on standard C functions/ bigs LC_CTYPE LC_TIME LC_NUMERIC LC_MONETARY LC_ALL ? ? ? ? ? Affects behavior of the macros Affects date and time format. Affects number representation format Affects pecuniary values format combines the affect of all above Permit function pointers without dereferencing ANSI C specifies that a function pointer may be used like a function name.No referencing is needed when calling a function whose address is contained in the pointer. For Example, the following statement given below defines a function pointer funptr, which contains the address of t he function foo. extern void foo(double xyz,const int *ptr) void (*funptr)(double,const int *)=foo The function foo may be invoked by every directly calling foo or via the funptr. foo(12. 78,Hello world) funptr(12. 78,Hello world) K&R C requires funptr be dereferenced to call foo. (* funptr) (13. 48,Hello usp) ANSI C in like manner defines a set of C processor(cpp) symbols, which may be used in user programs.These symbols are assigned actual values at compilation time. cpp token USE _STDC_ Feature test macro. determine is 1 if a compiler is ANSI C, 0 otherwise _LINE_ Evaluated to the strong-arm line number of a source file. _FILE_ Value is the file name of a module that contains this symbol. _DATE_ Value is the date that a module containing this symbol is compiled. _TIME_ value is the time that a module containing this symbol is compiled. The following test_ansi_c. c program illustrates the use of these symbols include int main() if _STDC_==0 printf(cc is not ANSI C compliant) e lse printf(%s compiled at %s%s.This statement is at line %d , _FILE_ , _DATE_ , _TIME_ , _LINE_ ) endif Return 0 Prepared By RAJKUMAR Asst. Prof. & DIVYA K 1RN09IS016 Page 2 RNSIT ? UNIX SYSTEM PROGRAMMING NOTES Finally, ANSI C defines a set of standard library function & associated headers. These headers are the subset of the C libraries available on most system that implement K&R C. The ANSI/ISO C++ Standard These compilers support C++ classes, derived classes, virtual functions, operator overloading. Furthermore, they should also support template classes, template functions, exception handling and the iostream library classes.Differences between ANSI C and C++ ANSI C Uses K&R C default function declaration for any functions that are referred before their declaration in the program. int foo() ANSI C treats this as old C function declaration & interprets it as declared in following manner. int foo(.. ) ? meaning that foo may be called with any number of arguments. Does not empl oy type_safe linkage technique and does not catch user errors. C++ Requires that all functions must be declared / defined before they can be referenced. int foo() C++ treats this as int foo(void) Meaning that foo may not arguments. accept anyEncrypts external function names for type_safe linkage. Thus reports any user errors. The POSIX standards ? POSIX or Portable Operating System Interface is the name of a family of related standards qualify by the IEEE to define the application-programming interface (API), along with shell and utilities interface for the software compatible with variants of the UNIX operating system. Because many versions of UNIX exist today and each of them provides its own set of API functions, it is difficult for system developers to create applications that can be easily ported to different versions of UNIX.Some of the subgroups of POSIX are POSIX. 1, POSIX. 1b & POSIX. 1c are concerned with the development of set of standards for system developers. POSIX. 1 ? This mission proposes a standard for a base operating system API this standard specifies APIs for the manipulating of files and processes. ? It is formally cognise as IEEE standard 1003. 1-1990 and it was also adopted by the ISO as the international standard ISO/IEC 994511990. POSIX. 1b ? This delegation proposes a set of standard APIs for a real time OS interface these include IPC (interprocess communication). ? This standard is formally known as IEEE standard 1003. -1993. POSIX. 1c ? This standard specifies multi-threaded programming interface. This is the newest POSIX standard. ? These standards are proposed for a generic OS that is not necessarily be UNIX system. ? E. g. VMS from Digital Equipment Corporation, OS/2 from IBM, & Windows NT from Microsoft Corporation are POSIX-compliant, yet they are not UNIX systems. ? To ensure a user program conforms to POSIX. 1 standard, the user should either define the manifested everlasting _POSIX_SOURCE at the beginning of each sour ce module of the program (before inclusion of any header) as define _POSIX_SOURCE ? ? ? ? Or specify the -D_POSIX_SOURCE option to a C++ compiler (CC) in a compilation % CC -D_POSIX_SOURCE *. C ? POSIX. 1b defines different manifested constant to check conformance of user program to that standard. The new macro is _POSIX_C_SOURCE and its value indicates POSIX version to which a user program conforms. Its value can be Prepared By RAJKUMAR Asst. Prof. & DIVYA K 1RN09IS016 Page 3 RNSIT _POSIX_C_SOURCE VALUES 198808L 199009L 199309L MEANING UNIX SYSTEM PROGRAMMING NOTES First version of POSIX. conformity Second version of POSIX. 1 compliance POSIX. 1 and POSIX. 1b compliance ? _POSIX_C_SOURCE may be used in place of _POSIX_SOURCE. However, some systems that support POSIX. 1 only may not accept the _POSIX_C_SOURCE definition. ? There is also a _POSIX_VERSION constant defined in header. It contains the POSIX version to which the system conforms. Program to check and display _POSIX_VERSI ON constant of the system on which it is run define _POSIX_SOURCE define _POSIX_C_SOURCE 199309L include include int main() ifdef _POSIX_VERSION cout
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.