Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

29
Chapter 12 Files (reference: Deitel’s chap 11) 20061025 chap8

Transcript of Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Page 1: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Chapter 12

Files(reference: Deitel’s chap 11)

20061025 chap8

Page 2: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Introduction of File

• 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

20061025 chap8 2

Page 3: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

20061213 cha12 3

Input/Output Files: Review and Further Study

Text file: a named collection of characters saved in secondary storage (e.g. on a disk).

To mark the end of a text file: a special end-of-file character. <eof>

Pressing the <return> or <enter> key causes the newline character to be placed in the file. (‘\n’).

This is a text file!<newline> It has two lines.<newline><eof>

Page 4: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Meanings of Common Escape Sequences

Escape Sequence Meaning

‘\n’ new line

‘\t’ tab

‘\f’ form feed (new page)

‘\r’ return (go back to column 1 of current output line)

‘\b’ backspace

Page 5: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Comparison of I/O with Standard Files and I/O with User-Defined File Pointers

Line Functions That Access stdin and stdout

Functions That Can Access Any Text File

1 scanf(“%d”, &num); fscanf(infilep,“%d”, &num);

2 printf(“Number=%d\n”,num); fprintf(outfilep, “Number=%d\n”,num);

Page 6: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

The 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.

20061025 chap8 6

Page 7: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

The Data Hierarchy• Data Hierarchy (continued):

– File – group of related records• Example: payroll file

– Database – group of related files

20061025 chap8 7

Page 8: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

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

20061025 chap8 8

Page 9: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Files and Streams

20061025 chap8 9

Page 10: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Files and Streams• 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)

20061025 chap8 10

Page 11: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

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

20061025 chap8 11

Page 12: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

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

20061025 chap8 12

Page 13: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

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

20061025 chap8 13

Page 14: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Creating a Sequential Access File

20061025 chap8 14

Mode Description r Open a file for reading. w Create a file for writing. If the file already exists,

discard the current contents. a Append; open or create a file for writing at end of file. r+ Open a file for update (reading and writing). w+ Create a file for update. If the file already exists,

discard the current contents. a+ Append; open or create a file for update; writing is

done at the end of the file.

Page 15: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Creating a Sequential Access File (Ex1)

20061025 chap8 15

Page 16: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Creating a Sequential Access File (Ex1)

20061025 chap8 16

Page 17: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

20061025 chap8 17

Program Output

Enter the account, name, and balance.Enter EOF to end input.? 100 Jones 24.98? 200 Doe 345.67? 300 White 0.00? 400 Stone -42.16? 500 Rich 224.62? ^Z

Page 18: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Creating a Sequential Access File (Ex2)using fprintf

20061025 chap8 18

Page 19: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

20061025 chap8 19

ONSATIR.TXT File

Bu bir ornek satirdir. Satir no: 1Bu bir ornek satirdir. Satir no: 2Bu bir ornek satirdir. Satir no: 3Bu bir ornek satirdir. Satir no: 4Bu bir ornek satirdir. Satir no: 5Bu bir ornek satirdir. Satir no: 6Bu bir ornek satirdir. Satir no: 7Bu bir ornek satirdir. Satir no: 8Bu bir ornek satirdir. Satir no: 9Bu bir ornek satirdir. Satir no: 10

Page 20: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Creating a Sequential Access File (Ex2)writing char by char using fputc

20061025 chap8 20

Page 21: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

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 pointerfscanf( 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)

20061025 chap8 21

Page 22: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Sequential-access File

Operating Systems, 2012, Danny Hendler & Roie Zivan22

Page 23: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

20061025 chap8

1 /* Fig. 11.7: fig11_07.c

2 Reading and printing a sequential file */

3 #include <stdio.h>

4

5 int main()

6 {

7 int account; /* account number */

8 char name[ 30 ]; /* account name */

9 double balance; /* account balance */

10

11 FILE *cfPtr; /* cfPtr = clients.txt file pointer */

12

13 /* fopen opens file; exits program if file cannot be opened */

14 if ( ( cfPtr = fopen( "clients.txt", "r" ) ) == NULL ) {

15 printf( "File could not be opened\n" );

16 } /* end if */

17 else { /* read account, name and balance from file */

18 printf( "%-10s%-13s%s\n", "Account", "Name", "Balance" );

19 fscanf( cfPtr, "%d%s%lf", &account, name, &balance );

20

21 /* while not end of file */

22 while ( !feof( cfPtr ) ) {

23 printf( "%-10d%-13s%7.2f\n", account, name, balance );

24 fscanf( cfPtr, "%d%s%lf", &account, name, &balance );

25 } /* end while */

26

Page 24: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

20061025 chap8

Account Name Balance100 Jones 24.98200 Doe 345.67300 White 0.00400 Stone -42.16500 Rich 224.62

27 fclose( cfPtr ); /* fclose closes the file */

28 } /* end else */

29

30 return 0; /* indicates successful termination */

31

32 } /* end main */

Page 25: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

25

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 ints, but have different sizes on disk

300 White 0.00 400 Jones 32.87 (old data in file)If we want to change White's name to Worthington,

300 White 0.00 400 Jones 32.87

300 Worthington 0.00ones 32.87

Data gets overwritten

Page 26: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

2000 Prentice Hall, Inc.All rights reserved.

OutlineOutline26

1. Initialize variables

2. Open file

2.1 Input choice

2.2 Scan files

3. Print

1 /* Fig. 11.8: fig11_08.c2 Credit inquiry program */3 #include <stdio.h>45 int main()6 { 7 int request, account;8 double balance;9 char name[ 30 ];10 FILE *cfPtr;1112 if ( ( cfPtr = fopen( "clients.txt", "r" ) ) == NULL )13 printf( "File could not be opened\n" );14 else { 15 printf( "Enter request\n"16 " 1 - List accounts with zero balances\n"17 " 2 - List accounts with credit balances\n"18 " 3 - List accounts with debit balances\n"19 " 4 - End of run\n? " );20 scanf( "%d", &request );2122 while ( request != 4 ) { 23 fscanf( cfPtr, "%d%s%lf", &account, name, 24 &balance );2526 switch ( request ) { 27 case 1:28 printf( "\nAccounts with zero "29 "balances:\n" );3031 while ( !feof( cfPtr ) ) { 32

Page 27: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

2000 Prentice Hall, Inc.All rights reserved.

OutlineOutline27

2.2 Scan files

3. Print

33 if ( balance == 0 )34 printf( "%-10d%-13s%7.2f\n", 35 account, name, balance );3637 fscanf( cfPtr, "%d%s%lf", 38 &account, name, &balance );39 }4041 break;42 case 2:43 printf( "\nAccounts with credit "44 "balances:\n" );4546 while ( !feof( cfPtr ) ) { 4748 if ( balance < 0 )49 printf( "%-10d%-13s%7.2f\n", 50 account, name, balance );5152 fscanf( cfPtr, "%d%s%lf", 53 &account, name, &balance );54 }5556 break;57 case 3:58 printf( "\nAccounts with debit "59 "balances:\n" );6061 while ( !feof( cfPtr ) ) { 6263 if ( balance > 0 )64 printf( "%-10d%-13s%7.2f\n",

Page 28: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

2000 Prentice Hall, Inc.All rights reserved.

OutlineOutline28

3.1 Close file

65 account, name, balance );

66

67 fscanf( cfPtr, "%d%s%lf",

68 &account, name, &balance );

69 }

70

71 break;

72 }

73

74 rewind( cfPtr );

75 printf( "\n? " );

76 scanf( "%d", &request );

77 }

78

79 printf( "End of run.\n" );

80 fclose( cfPtr );

81 }

82

83 return 0;

84 }

Page 29: Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

2000 Prentice Hall, Inc.All rights reserved.

OutlineOutline29

Program Output

 Enter request 1 - List accounts with zero balances 2 - List accounts with credit balances 3 - List accounts with debit balances 4 - End of run? 1 Accounts with zero balances:300 White 0.00 ? 2 Accounts with credit balances:400 Stone -42.16 ? 3 Accounts with debit balances:100 Jones 24.98200 Doe 345.67500 Rich 224.62? 4End of run.