CNG 140 C Programming (Lecture set 10) Spring 2006-2007 Chapter 10 Data Files.

Slides:



Advertisements
Similar presentations
File Management in C. A file is a collection of related data that a computers treats as a single unit. File is a collection of data stored permanently.
Advertisements

Files in C Rohit Khokher. Files in C Real life situations involve large volume of data and in such cases, the console oriented I/O operations pose two.
C File Processing - I Math 130 B Smith: Eval: 3. Energy and excitement helped for avg graphics. Gen interest. A bit wordy, henced redundant in some parts.
Chapter 11: Data Files & File Processing In this chapter, you will learn about Files and streams Creating a sequential access file Reading data from a.
Chapter 10.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved Introduction Data files –Can be created, updated,
 2000 Prentice Hall, Inc. All rights reserved. Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Chapter 11 C File Processing Acknowledgment The notes are adapted from those provided by Deitel & Associates, Inc. and Pearson Education Inc.
Chapter 15.
Chapter 8: I/O Streams and Data Files. In this chapter, you will learn about: – I/O file stream objects and functions – Reading and writing character-based.
Console and File I/O - Basics Rudra Dutta CSC Spring 2007, Section 001.
計算機程式語言 Lecture 8-1 國立臺灣大學生物機電系 8 8 I/O File Streams and Data Files.
© Janice Regan, CMPT 128, Jan CMPT 128: Introduction to Computing Science for Engineering Students C File Input and Output Checking input for errors.
CNG 140 C Programming (Lecture set 9) Spring Chapter 9 Character Strings.
A First Book of ANSI C Fourth Edition Chapter 10 Data Files.
CP104 Introduction to Programming File I/O Lecture 33 __ 1 File Input/Output Text file and binary files File Input/output File input / output functions.
File Handling Spring 2013Programming and Data Structure1.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
22. FILE INPUT/OUTPUT. File Pointers and Streams Declarations of functions that perform file I/O appear in. Each function requires a file pointer as a.
C++ for Engineers and Scientists Second Edition Chapter 8 I/O File Streams and Data Files.
Chapter 9 I/O Streams and Data Files
File Handling In C By - AJAY SHARMA. We will learn about- FFile/Stream TText vs Binary Files FFILE Structure DDisk I/O function OOperations.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
1. Introduction File Declaration and Initialization Creating and Opening File Closing File EOF Reading from and Writing into a File Extra : Random Access.
Introduction to Programming Using C Files. 2 Contents Files Working with files Sequential files Records.
Chapter 8 File-Oriented Input and Output. 8.1 INTRODUCTION a file can also be designed to store data. We can easily update files, A data file as input.
Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee C Language Part 4.
CSEB114: Principle of programming Chapter 11: Data Files & File Processing.
Chapter 11: Data Files and File Processing Files and streams Creating a sequential access file Reading data from a sequential access file Using fgetc()
Chapter 11 File Processing. Objectives In this chapter, you will learn: –To be able to create, read, write and update files. –To become familiar with.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved Introduction Introduce some standard library functions.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 11 – File Processing Outline 11.1Introduction.
Chapter 12 Files (reference: Deitel ’ s chap 11) chap8.
Chapter 7 : File Processing1 File-Oriented Input & Output CHAPTER 7.
1 CHAPTER6 CHAPTER 6. Objectives: You’ll learn about;  Introduction  Files and streams  Creating a sequential access file  Reading data from a sequential.
Chapter 7 Files By C. Shing ITEC Dept Radford University.
chap8 Chapter 12 Files (reference: Deitel ’ s chap 11)
GAME203 – C Files stdio.h C standard Input/Output “getchar()”
Chapter 12 Files (reference: Deitel ’ s chap 11) chap8.
Learners Support Publications Working with Files.
Files A collection of related data treated as a unit. Two types Text
 2007 Pearson Education, Inc. All rights reserved. 1 C File Processing.
FILES IN C. File Operations  Creation of a new file  Opening an existing file  Reading from a file  Writing to a file  Moving to a specific location.
Files. FILE * u In C, we use a FILE * data type to access files. u FILE * is defined in /usr/include/stdio.h u An example: #include int main() { FILE.
Lecture 20: C File Processing. Why Using Files? Storage of data in variables and arrays is temporary Data lost when a program terminates. Files are used.
C Programming Day 2. 2 Copyright © 2005, Infosys Technologies Ltd ER/CORP/CRS/LA07/003 Version No. 1.0 Union –mechanism to create user defined data types.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
FILES AND EXCEPTIONS Topics Introduction to File Input and Output Using Loops to Process Files Processing Records Exceptions.
Silberschatz and Galvin  C Programming Language Kingdom of Saudi Arabia Ministry of Higher Education Al-Majma’ah University College of Education.
11 C File Processing.
Chapter 22 – part a Stream refer to any source of input or any destination for output. Many small programs, obtain all their input from one stream usually.
TMF1414 Introduction to Programming
File I/O.
CSC215 Lecture Input and Output.
CS111 Computer Programming
CSE1320 Files in C Dr. Sajib Datta
File Input/Output.
CSE1320 Files in C Dr. Sajib Datta
Programming in C Input / Output.
Chapter 11 – File Processing
Beginning C Lecture 11 Lecturer: Dr. Zhao Qinpei
File I/O in C Lecture 7 Narrator: Lecture 7: File I/O in C.
Text and Binary File Processing
File Input and Output.
Fundamental of Programming (C)
Programming in C Input / Output.
EPSII 59:006 Spring 2004.
A First Book of ANSI C Fourth Edition
Professor Jodi Neely-Ritz University of Florida
Presentation transcript:

CNG 140 C Programming (Lecture set 10) Spring Chapter 10 Data Files

CNG140 C Programming2 Objectives Declaring, Opening, and Closing File Streams Reading from and Writing to Text Files Random File Access Passing and Returning Filenames Case Study: Creating and Using a Table of Constants Common Programming and Compiler Errors

CNG140 C Programming3 Declaring, Opening, and Closing File Streams To store and retrieve data outside a C program, you need two items: –A file –A file stream

CNG140 C Programming4 Files File: collection of data that is stored together under a common name, usually on a disk, magnetic tape, or CD-ROM Each file has a unique filename, referred to as the file’s external name –For example, prices.dat and info.txt

CNG140 C Programming5 Files (continued)

CNG140 C Programming6 Files (continued) Most C compilers require a program file to have either the extension c or cpp There are two basic types of files –Text files (also known as character-based files): store each individual character, such as a letter, digit, dollar sign, decimal point, and so on, using an individual character code –Binary files: use the same code as your computer processor uses internally for C’s primitive data types Advantage: speed and compactness

CNG140 C Programming7 File Streams File stream: one-way transmission path used to connect a file stored on a physical device to a program Input file stream: receives data from a file into a program Output file stream: sends data to a file

CNG140 C Programming8 File Streams (continued)

CNG140 C Programming9 Declaring a File Stream For each file that your program uses, a file stream must be named (declared) and created (opened) Naming a file stream is accomplished by declaring a pointer type variable name to be of type FILE –FILE *inFile; Asterisk is necessary Name is selected by programmer and internal to the program The FILE data structure is declared in stdio.h

CNG140 C Programming10 Opening a File Stream Opening a file stream (or opening the file): –Establishes the physical communication link between the program and the data file –Equates a specific external filename to the name declared in the FILE declaration statement and known by the program to use for I/O. Use fopen() (declared in stdio.h ) to open a file: As an output file to write to –outFile = fopen("prices.bnd","w"); As output binary to write to –fileOut = fopen("prices.dat", "wb"); As input file to input –inFile = fopen("prices.bnd","r"); If a file opened for reading does not exist, fopen() returns the NULL address value

CNG140 C Programming11 Opening a File Stream (continued)

CNG140 C Programming12 Exit (1) passes its integer argument directly to the operating system and then terminates program operation; declared in stdlib.h if ((inFile = fopen("prices.dat","r")) == NULL ) Opening a File Stream (continued)

CNG140 C Programming13 Opening an output File Stream for an existing file Approach in Program 10.1 does not work for output files –If a file exists having the same name as the file to be opened for writing, the existing file is erased and all its data is lost –The file can first be opened in input mode, simply to see if it exists If it does, the user is given the choice of explicitly permitting it to be overwritten when it is subsequently opened in output mode

CNG140 C Programming14 Opening a File Stream (continued)

CNG140 C Programming15 Sample run 1: A file by the name prices.dat exists. Do you want to continue and overwrite it with the new data (y or n): n The existing file will not be overwritten. Sample run 2: A file by the name prices.dat exists. Do you want to continue and overwrite it with the new data (y or n): y The file has been successfully opened for output. Opening a File Stream (continued)

CNG140 C Programming16 Embedded and Interactive Filenames File name can be max 12 characters long

CNG140 C Programming17 Embedded and Interactive Filenames (continued)

CNG140 C Programming18 Closing a File Stream A file stream is closed using fclose() –fclose() breaks the link between the file’s external and internal names, releasing the internal file pointer name, which can then be used for another file –fclose(inFile); Because all computers have a limit on the maximum number of files that can be open at one time, closing files that are no longer needed makes good sense Open files existing at the end of normal program execution are closed by the operating system

CNG140 C Programming19 Reading from and Writing to Text Files (continued)

CNG140 C Programming20 Reading from and Writing to Text Files Prototypes in stdio.h Examples –fputc('a',outFile); –fputs("Hello world!",outFile); –fprintf(outFile,"%s %n",descrip,price);

CNG140 C Programming21 prices.dat : Batteries Bulbs 3.22 Fuses 1.03 Writing to Text Files: output file

CNG140 C Programming22 Reading from and Writing to Text Files: EOF C appends the low-value hexadecimal byte 0x00 as the end-of-file (EOF) sentinel when the file is closed EOF sentinel is never counted as part of the file fgetc() and fscanf() return the named constant EOF when the marker is detected. The function fgets() returns a NULL(’\0’) when it detects end of the file.

CNG140 C Programming23 Content of a Text Files: The file is appended 0x00 to serve EOF

CNG140 C Programming24 Reading from a Text File Prototypes in stdio.h Examples –fgetc(inFile); –fgets(message,10,inFile); –fscanf(inFile,"%lf",&price);

CNG140 C Programming25 Reading from a Text File (continued)

CNG140 C Programming26 Reading from a Text File: use gets

CNG140 C Programming27 Standard Device Files When a program is run, the keyboard used for entering data is automatically opened and assigned to the internal file pointer name stdin –fscanf(stdin,"%d",&num); The output device used for display is assigned to the file pointer named stdout –fprintf(stdout,"Hello World!"); stderr is assigned to the output device used for system error messages –stderr and stdout often refer to the same device

CNG140 C Programming28 Standard Device Files (continued) The character function pairs listed in Table 10.2 can be used as direct replacements for each other –puts() and fputs() write all the characters in the string except end-of-string NULL, puts() automatically puts new line sequence at the end, fputs() does not. This is not true for the string-handling functions –fgets() stores new line with other characters, gets() does not store new line characters

CNG140 C Programming29 Standard Device Files and I/O functions

CNG140 C Programming30 Random file access With random access any byte from the starting of a file is access directly. To do random reading one must be able to go back and forward in a sequential file. This is possible with some special function calls. One could move backward in the file as well as forward relative to a reference point, which could be beginning, end or current position….

CNG140 C Programming31 Random File Access functions rewind() resets the current position to the start of the file –rewind(inFile) fseek() allows the programmer to move to any position in the file –fseek(fileName, offset, origin) –Offset has to be long integer –Origin: SEEK_SET, SEEK_CUR, and SEEK_END ftell() returns the offset value of the next character that will be read or written –ftell(inFile);

CNG140 C Programming32 Random File Access (continued) Examples of fseek() are –fseek(inFile,4L,SEEK_SET); /* go to the 5 th cha*/ –fseek(inFile,4L,SEEK_CUR); –fseek(inFile,-4L,SEEK_CUR); –fseek(inFile,0L,SEEK_SET); /*got start*/ –fseek(inFile,0L,SEEK_END); –fseek(inFile,-10L,SEEK_END);

CNG140 C Programming33 Random File Access: read a file and print a file in reverse order

CNG140 C Programming34 Random File Access: read and print a file in reverse order

CNG140 C Programming35 Passing file names as arguments The file names are not passed, actually their pointers are passed.

CNG140 C Programming36 Passing and Returning Filenames: open in main() pass to a function

CNG140 C Programming37 Passing and Returning Filenames (continued)

CNG140 C Programming38 Passing and Returning Filenames: use a function to open a file and pass the file pointer or descriptor as an argument to another function

CNG140 C Programming39 Passing and Returning Filenames (continued)

CNG140 C Programming40 Case Study: Check if a given date is a holiday

CNG140 C Programming41 Requirements Specification Objective: create a set of functions that determines if a given date is a holiday Two functions are developed –The first constructs a list of holidays, which is called a holiday table, and consists of legal holiday dates that have been previously stored in a file –The second compares any given date to the dates in the table and determines if there is a match

CNG140 C Programming42 Holiday Table: analysis

CNG140 C Programming43 Holidays table

CNG140 C Programming44 Code the Function Create an array capable of storing 20 integers Set a counter to 0 Open the Holidays.txt file, checking that a successful open occurred While there are dates in the file Read a date as a month, day, and year Convert date to an integer having the form yyyymmdd Assign the integer date to the Holiday array Add 1 to the counter EndWhile Close the Holidays.txt file Return the value of the counter

CNG140 C Programming45 Test and Debug the Function

CNG140 C Programming46 Test and Debug the Function (continued)

CNG140 C Programming47 Analysis for the Second Function: Date matching If the holiday table is empty Call getHolidays() EndIf For all Holidays in the table Retrieve the holiday from the table Compare the date being tested to the date retrieved from the array If there is a match Return 1 EndFor Return 0

CNG140 C Programming48 Code the Function 1 int isHoliday(int testDate) 2 { 3 int getHolidays(); /* function prototype */ 4 #define TRUE 1 5 #define FALSE 0 6 int i; 7 8 /* read the Holiday file if the Holiday array is empty */ 9 if (htable[0] == 0) 10 getHolidays(); /* search the Holiday array for the given date */ 13 for(i = 0; i < HOLIDAYS; i++) 14 if (testDate == htable[i]) 15 return TRUE; return FALSE; 18 }

CNG140 C Programming49 Test and Debug the Function

CNG140 C Programming50 Test and Debug the Function (continued)

CNG140 C Programming51 Writing and Reading Binary Files Binary files store numerical values using the computer’s internal numerical code No number-to-character conversion when writing a number to a file, and no character-to-number conversion when a value is read from the file –Resulting file frequently requires less storage space than its character-based counterpart

CNG140 C Programming52 Writing and Reading Binary Files (continued)

CNG140 C Programming53 Writing and Reading Binary Files (continued)

CNG140 C Programming54 Writing and Reading Binary Files (continued)

CNG140 C Programming55 Writing and Reading Binary Files (continued)

CNG140 C Programming56 Writing and Reading Binary Files (continued)

CNG140 C Programming57 Writing and Reading Binary Files (continued)

CNG140 C Programming58 how to read a word at a time. #include "/sys/stdio.h" main( ) { FILE *fp1; char oneword[100]; int c; fp1 = fopen("TENLINES.TXT","r"); do { c = fscanf(fp1,"%s",oneword); /* got one word from the file */ printf("%s\n",oneword); /* display it on the monitor */ } while (c != EOF); /* repeat until EOF */ fclose(fp1); } /*This program uses the "fscanf" function to read in a string at a time.*/

CNG140 C Programming59 Read a file: A working example #include "/sys/stdio.h" main( ) { FILE *fp1; char oneword[100]; char *c; fp1 = fopen("TENLINES.TXT","r"); do { c = fgets(oneword,100,fp1); /* get one line from the file */ if (c != NULL); printf("%s",oneword); /* display it on the monitor */ } while (c != NULL); /* repeat until NULL */ fclose(fp1); } /*We are using "fgets" which reads in an entire line, including the newline character*/

CNG140 C Programming60 Write to Printer #include "/sys/stdio.h" main( ) { FILE *funny,*printer; int c; funny = fopen("TENLINES.TXT","r"); /* open input file */ printer = fopen("PRN","w"); /* open printer file: PRN diff for diff OSs */ do { c = getc(funny); /* got one character from the file */ if (c != EOF) { putchar(c); /* display it on the monitor */ putc(c,printer); /* print the character */ } } while (c != EOF); /* repeat until EOF (end of file) */ fclose(funny); fclose(printer); } /* open TENLINES.TXT for reading and we open PRN for writing.*/

CNG140 C Programming61 Common Programming Errors Using a file’s external name in place of the internal file pointer variable name when accessing the file Omitting the file pointer name altogether Opening a file for output without first checking that a file with the given name already exists Not understanding the end of a file is only detected until after the EOF sentinel has either been read or passed over

CNG140 C Programming62 Common Programming Errors (continued) Attempting to detect the end of a file using character variable for the EOF marker Supplying an integer argument offset to the seekg() and seekp() functions Not using the sizeof() operator when specifying the number of bytes to be written when writing a binary file Not using the sizeof() operator when specifying the number of bytes to be read when reading a binary file

CNG140 C Programming63 Common Compiler Errors

CNG140 C Programming64 Common Compiler Errors (continued)

CNG140 C Programming65 Summary A data file is any collection of data stored together in an external storage medium under a common name Data files can be stored as either character-based or binary files A data file is opened using the fopen() standard library function A file can be opened for reading, writing, or appending

CNG140 C Programming66 Summary (continued) An internal filename must be declared as a pointer to a FILE In addition to any files opened within a function, the standard files stdin, stdout, and stderr are automatically opened when a program is run Data files can be accessed randomly using rewind(), fseek(), and ftell() Table 10.7 lists the standard file library functions