 2007 Pearson Education, Inc. All rights reserved. 1 11 C File Processing.

Slides:



Advertisements
Similar presentations
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 11 – File Processing Outline 11.1Introduction.
Advertisements

File processing with functions H&K Chapter 3 Instructor – Gokcen Cilingir Cpt S 121 (June 27, 2011) Washington State University.
© 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.
 2006 Pearson Education, Inc. All rights reserved File Processing.
CS1061: C Programming Lecture 19: Random Access Files A. O’Riordan, 2004, 2007 updated.
Lec11: File Processing 廖雪花 TEL: 年 5 月.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating.
17 File Processing. OBJECTIVES In this chapter you will learn:  To create, read, write and update files.  Sequential file processing.  Random-access.
CS1061 C Programming Lecture 18: Sequential File Processing A. O’Riordan, 2004, 2007 updated.
Lecture 11 – Files Operation. Introduction Almost all of the program developed before this is interactive In interactive environment, input is via keyboard.
C File Processing. Objectives To be able to create, write and update files. To become familiar with sequential access file processing. To become familiar.
1 Structure part 1 & File Processing. 2 Structures.
 2006 Pearson Education, Inc. All rights reserved Files and Streams.
C How to Program, 7/e © by Pearson Education, Inc. All Rights Reserved.
C How to Program, 6/e © by Pearson Education, Inc. All Rights Reserved.
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.
Programming Practice Introduction Tree Operations. Binary Search Tree. File Processing Create, read, write and update files. Sequential.
1 File Processing Dr. Serdar ÇELEBİ. 2 Outline Introduction The Data Hierarchy Files and Streams Creating a Sequential Access File Reading Data from a.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Programming Languages -1 (Introduction to C) files Instructor: M.Fatih AMASYALI
Text and Binary File Processing 程式設計 潘仁義 CCU COMM.
1. Introduction File Declaration and Initialization Creating and Opening File Closing File EOF Reading from and Writing into a File Extra : Random Access.
 2008 Pearson Education, Inc. All rights reserved 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.
 2000 Prentice Hall, Inc. All rights reserved Introduction Data files –Can be created, updated, and processed by C programs –Are used for permanent.
© 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.
C Program Design C File Processing 主講人:虞台文. Content Introduction Data Hierarchy Files and Streams Creating a Sequential-Access File Reading Data from.
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.
 Pearson Education, Inc. All rights reserved Files and Streams.
CNG 140 C Programming (Lecture set 10) Spring Chapter 10 Data Files.
chap8 Chapter 12 Files (reference: Deitel ’ s chap 11)
C File Processing. Objectives To be able to create, write and update files. To become familiar with sequential access file processing. To become familiar.
Chapter 12 Files (reference: Deitel ’ s chap 11) chap8.
CSC141- Introduction to Computer Programming Teacher: AHMED MUMTAZ MUSTEHSAN Lecture – 29 Thanks for Lecture Slides:
File Processing Part 2. Random Access File In sequential access file, record in a file created with the formatted output function fprintf are not necessarily.
1 CSC103: Introduction to Computer and Programming Lecture No 28.
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.
1 Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating a Sequential Access File 11.5Reading.
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.
UniMAP SemI-11/12EKT120: Computer Programming1 Files.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
UniMAP SemI-11/12EKT120: Computer Programming1 Files.
Chapter 11 – File Processing
11 C File Processing.
17 File Processing.
Chapter 4 File Processing
TMF1414 Introduction to Programming
EKT120: Computer Programming
Chapter 11 – File Processing
Text and Binary File Processing
Review & Lab assignments
Chapter: 7-12 Final exam review.
Accessing Files in C Professor Hugh C. Lauer CS-2303, System Programming Concepts (Slides include materials from The C Programming Language, 2nd edition,
Fundamental of Programming (C)
EPSII 59:006 Spring 2004.
EPSII 59:006 Spring 2004.
Chapter 11 Files chap8.
Professor Jodi Neely-Ritz University of Florida
Presentation transcript:

 2007 Pearson Education, Inc. All rights reserved C File Processing

 2007 Pearson Education, Inc. All rights reserved. 2 I read part of it all the way through. — Samuel Goldwyn Hats off! The flag is passing by. — Henry Holcomb Bennett

 2007 Pearson Education, Inc. All rights reserved. 3 Consciousness … does not appear to itself chopped up in bits. … A “river” or a “stream” are the metaphors by which it is most naturally described. — William James I can only assume that a “Do Not File” document is filed in a “Do Not File” file. — Senator Frank Church

 2007 Pearson Education, Inc. All rights reserved. 4 OBJECTIVES In this chapter you will learn:  To create, read, write and update files.  Sequential access file processing.  Random-access file processing.

 2007 Pearson Education, Inc. All rights reserved Introduction 11.2Data Hierarchy 11.3Files and Streams 11.4Creating a Sequential-Access File 11.5Reading Data from a Sequential-Access File 11.6Random-Access Files 11.7Creating a Random-Access File 11.8Writing Data Randomly to a Random-Access File 11.9Reading Data from a Random-Access File 11.10Case Study: Transaction-Processing Program

 2007 Pearson Education, Inc. All rights reserved Introduction  Data files – Can be created, updated, and processed by C programs – Are used for permanent storage of large amounts of data - Storage of data in variables and arrays is only temporary

 2007 Pearson Education, Inc. All rights reserved Data Hierarchy  Data Hierarchy: – Bit – smallest data item - Value of 0 or 1 – Byte – 8 bits - Used to store a character Decimal digits, letters, and special symbols – Field – group of characters conveying meaning - Example: your name – Record – group of related fields - Represented by a struct or a class - Example: In a payroll system, a record for a particular employee that contained his/her identification number, name, address, etc.

 2007 Pearson Education, Inc. All rights reserved Data Hierarchy  Data Hierarchy (continued): – File – group of related records - Example: payroll file – Database – group of related files

 2007 Pearson Education, Inc. All rights reserved. 9 Fig | Data hierarchy.

 2007 Pearson Education, Inc. All rights reserved Data Hierarchy  Data files – Record key - Identifies a record to facilitate the retrieval of specific records from a file – Sequential file - Records typically sorted by key

 2007 Pearson Education, Inc. All rights reserved Files and Streams  C views each file as a sequence of bytes – File ends with the end-of-file marker - Or, file ends at a specified byte  Stream created when a file is opened – Provide communication channel between files and programs – Opening a file returns a pointer to a FILE structure - Example file pointers: - stdin - standard input (keyboard) - stdout - standard output (screen) - stderr - standard error (screen)

 2007 Pearson Education, Inc. All rights reserved Files and Streams  FILE structure – File descriptor - Index into operating system array called the open file table – File Control Block (FCB) - Found in every array element, system uses it to administer the file

 2007 Pearson Education, Inc. All rights reserved. 13 Fig | C’s view of a file of n bytes.

 2007 Pearson Education, Inc. All rights reserved Files and Streams  Read/Write functions in standard library – fgetc - Reads one character from a file - Takes a FILE pointer as an argument - fgetc( stdin ) equivalent to getchar() – fputc - Writes one character to a file - Takes a FILE pointer and a character to write as an argument - fputc( 'a', stdout ) equivalent to putchar( 'a' ) – fgets - Reads a line from a file – fputs - Writes a line to a file – fscanf / fprintf - File processing equivalents of scanf and printf

 2007 Pearson Education, Inc. All rights reserved Creating a Sequential-Access File  C imposes no file structure – No notion of records in a file – Programmer must provide file structure  Creating a File – FILE *cfPtr; - Creates a FILE pointer called cfPtr – cfPtr = fopen(“clients.dat", “w”); - Function fopen returns a FILE pointer to file specified - Takes two arguments – file to open and file open mode - If open fails, NULL returned

 2007 Pearson Education, Inc. All rights reserved Creating a Sequential-Access File – fprintf - Used to print to a file - Like printf, except first argument is a FILE pointer (pointer to the file you want to print in) – feof( FILE pointer ) - Returns true if end-of-file indicator (no more data to process) is set for the specified file – fclose( FILE pointer ) - Closes specified file - Performed automatically when program ends - Good practice to close files explicitly  Details – Programs may process no files, one file, or many files – Each file must have a unique name and should have its own pointer

 2007 Pearson Education, Inc. All rights reserved. 17 Outline fig11_03.c (1 of 2 ) FILE pointer definition creates new file pointer fopen function opens a file; w argument means the file is opened for writing

 2007 Pearson Education, Inc. All rights reserved. 18 Outline fig11_03.c (2 of 2 ) feof returns true when end of file is reached fprintf writes a string to a file fclose closes a file

 2007 Pearson Education, Inc. All rights reserved. 19 Common Programming Error 11.1 Opening an existing file for writing ( "w" ) when, in fact, the user wants to preserve the file, discards the contents of the file without warning.

 2007 Pearson Education, Inc. All rights reserved. 20 Common Programming Error 11.2 Forgetting to open a file before attempting to reference it in a program is a logic error.

 2007 Pearson Education, Inc. All rights reserved. 21 Common Programming Error 11.3 Using the wrong file pointer to refer to a file is a logic error.

 2007 Pearson Education, Inc. All rights reserved. 22 Error-Prevention Tip 11.1 Be sure that calls to file processing functions in a program contain the correct file pointers.

 2007 Pearson Education, Inc. All rights reserved. 23 Fig | End-of-file key combinations for various popular operating systems.

 2007 Pearson Education, Inc. All rights reserved. 24 Good Programming Practice 11.1 Explicitly close each file as soon as it is known that the program will not reference the file again.

 2007 Pearson Education, Inc. All rights reserved. 25 Performance Tip 11.1 Closing a file can free resources for which other users or programs may be waiting.

 2007 Pearson Education, Inc. All rights reserved. 26 Common Programming Error 11.4 Opening a nonexistent file for reading is an error.

 2007 Pearson Education, Inc. All rights reserved. 27 Common Programming Error 11.5 Opening a file for reading or writing without having been granted the appropriate access rights to the file (this is operating-system dependent) is an error.

 2007 Pearson Education, Inc. All rights reserved. 28 Common Programming Error 11.6 Opening a file for writing when no disk space is available is an error.

 2007 Pearson Education, Inc. All rights reserved. 29 Fig | Relationship between FILE pointers, FILE structures and FCBs.

 2007 Pearson Education, Inc. All rights reserved. 30 Common Programming Error 11.7 Opening a file with the incorrect file mode is a logic error. For example, opening a file in write mode ( "w" ) when it should be opened in update mode ( "r+" ) causes the contents of the file to be discarded.

 2007 Pearson Education, Inc. All rights reserved. 31 Fig | File opening modes.

 2007 Pearson Education, Inc. All rights reserved. 32 Error-Prevention Tip 11.2 Open a file only for reading (and not update) if the contents of the file should not be modified. This prevents unintentional modification of the file’s contents. This is another example of the principle of least privilege.

 2007 Pearson Education, Inc. All rights reserved Reading Data from a Sequential- Access File  Reading a sequential access file – Create a FILE pointer, link it to the file to read cfPtr = fopen( “clients.dat", "r" ); – Use fscanf to read from the file - Like scanf, except first argument is a FILE pointer fscanf( cfPtr, "%d%s%f", &accounnt, name, &balance ); – Data read from beginning to end – File position pointer - Indicates number of next byte to be read / written - Not really a pointer, but an integer value (specifies byte location) - Also called byte offset – rewind( cfPtr ) - Repositions file position pointer to beginning of file (byte 0 )

 2007 Pearson Education, Inc. All rights reserved. 34 Outline fig11_07.c (1 of 2 ) fopen function opens a file; r argument means the file is opened for reading

 2007 Pearson Education, Inc. All rights reserved. 35 Outline fig11_07.c (2 of 2 ) fscanf function reads a string from a file

 2007 Pearson Education, Inc. All rights reserved. 36 Outline fig11_08.c (1 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 37 Outline fig11_08.c (2 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 38 Outline fig11_08.c (3 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 39 Outline fig11_08.c (4 of 4 ) rewind function moves the file pointer back to the beginning of the file

 2007 Pearson Education, Inc. All rights reserved. 40 Outline

 2007 Pearson Education, Inc. All rights reserved Reading Data from a Sequential- Access File  Sequential access file – Cannot be modified without the risk of destroying other data – Fields can vary in size - Different representation in files and screen than internal representation - 1, 34, -890 are all int s, but have different sizes on disk

 2007 Pearson Education, Inc. All rights reserved Random-Access Files  Random access files – Access individual records without searching through other records – Instant access to records in a file – Data can be inserted without destroying other data – Data previously stored can be updated or deleted without overwriting  Implemented using fixed length records – Sequential files do not have fixed length records

 2007 Pearson Education, Inc. All rights reserved. 43 Fig | C’s view of a random-access file.

 2007 Pearson Education, Inc. All rights reserved Creating a Random-Access File  Data in random access files – Unformatted (stored as "raw bytes") - All data of the same type ( int s, for example) uses the same amount of memory - All records of the same type have a fixed length - Data not human readable

 2007 Pearson Education, Inc. All rights reserved Creating a Random-Access File  Unformatted I/O functions – fwrite - Transfer bytes from a location in memory to a file – fread - Transfer bytes from a file to a location in memory – Example: fwrite( &number, sizeof( int ), 1, myPtr ); - &number – Location to transfer bytes from - sizeof( int ) – Number of bytes to transfer - 1 – For arrays, number of elements to transfer In this case, "one element" of an array is being transferred - myPtr – File to transfer to or from

 2007 Pearson Education, Inc. All rights reserved Creating a Random-Access File  Writing struct s fwrite( &myObject, sizeof (struct myStruct), 1, myPtr ); – sizeof – returns size in bytes of object in parentheses  To write several array elements – Pointer to array as first argument – Number of elements to write as third argument

 2007 Pearson Education, Inc. All rights reserved. 47 Outline fig11_11.c (1 of 2 )

 2007 Pearson Education, Inc. All rights reserved. 48 Outline fig11_11.c (2 of 2 ) fopen function opens a file; wb argument means the file is opened for writing in binary mode fwrite transfers bytes into a random-access file

 2007 Pearson Education, Inc. All rights reserved Writing Data Randomly to a Random-Access File  fseek – Sets file position pointer to a specific position – fseek( pointer, offset, symbolic_constant ); - pointer – pointer to file - offset – file position pointer (0 is first location) - symbolic_constant – specifies where in file we are reading from - SEEK_SET – seek starts at beginning of file - SEEK_CUR – seek starts at current location in file - SEEK_END – seek starts at end of file

 2007 Pearson Education, Inc. All rights reserved. 50 Outline fig11_12.c (1 of 2 )

 2007 Pearson Education, Inc. All rights reserved. 51 Outline fig11_12.c (2 of 2 ) fseek searches for a specific location in the random-access file

 2007 Pearson Education, Inc. All rights reserved. 52 Outline

 2007 Pearson Education, Inc. All rights reserved. 53 Fig | File position pointer indicating an offset of 5 bytes from the beginning of the file.

 2007 Pearson Education, Inc. All rights reserved Reading Data from a Random- Access File  fread – Reads a specified number of bytes from a file into memory fread( &client, sizeof (struct clientData), 1, myPtr ); – Can read several fixed-size array elements - Provide pointer to array - Indicate number of elements to read – To read multiple elements, specify in third argument

 2007 Pearson Education, Inc. All rights reserved. 55 Outline fig11_15.c (1 of 2 )

 2007 Pearson Education, Inc. All rights reserved. 56 Outline fig11_15.c (2 of 2 ) fread reads bytes from a random- access file to a location in memory

 2007 Pearson Education, Inc. All rights reserved. 57 Outline fig11_16.c (1 of 10 )

 2007 Pearson Education, Inc. All rights reserved. 58 Outline fig11_16.c (2 of 10 )

 2007 Pearson Education, Inc. All rights reserved. 59 Outline fig11_16.c (3 of 10 ) Function textFile creates a text file containing all account data

 2007 Pearson Education, Inc. All rights reserved. 60 Outline fig11_16.c (4 of 10 ) Function updateRecord changes the balance of a specified account

 2007 Pearson Education, Inc. All rights reserved. 61 Outline fig11_16.c (5 of 10 )

 2007 Pearson Education, Inc. All rights reserved. 62 Outline fig11_16.c (6 of 10 ) Function deleteRecord removes an existing account from the file

 2007 Pearson Education, Inc. All rights reserved. 63 Outline fig11_16.c (7 of 10 )

 2007 Pearson Education, Inc. All rights reserved. 64 Outline fig11_16.c (8 of 10 ) Function newRecord adds a new account to the file

 2007 Pearson Education, Inc. All rights reserved. 65 Outline fig11_16.c (9 of 10 )

 2007 Pearson Education, Inc. All rights reserved. 66 Outline fig11_16.c (10 of 10 )