Presentation is loading. Please wait.

Presentation is loading. Please wait.

Copyright © 2012 Pearson Education, Inc. Chapter 5 Working with Data Files.

Similar presentations


Presentation on theme: "Copyright © 2012 Pearson Education, Inc. Chapter 5 Working with Data Files."— Presentation transcript:

1 Copyright © 2012 Pearson Education, Inc. Chapter 5 Working with Data Files

2 Copyright © 2012 Pearson Education, Inc. Outline Objectives 1.Defining File Streams 2.Reading Data Files 3.Generating a Data File 4.Problem Solving Applied: Data Filters – Modifying an HTML File 5.Error Checking 6.Numerical Technique: Linear Modeling* 7.Problem Solving Applied: Ozone Measurements*

3 Copyright © 2012 Pearson Education, Inc. Objectives Develop problem solutions in C++ that: Open and close data files for input and output. Read data from files using common looping structures. Check the state of an input stream. Recover from input stream errors. Apply the numerical technique of linear modeling.

4 Defining File Streams Copyright © 2012 Pearson Education, Inc.

5 Standard Input and Output C++ defines the cin and cout objects to represent the standard input (keyboard) and standard output (console). C++ also defines the standard error stream, cerr. Standard input is a kind of general input stream class; standard output and error streams are special kinds of general output stream. Copyright © 2012 Pearson Education, Inc.

6 Other kinds of Streams Standard C++ library also defines special kinds of streams for file input and output. –#include Copyright © 2012 Pearson Education, Inc.

7 Stream Object Hierarchy Copyright © 2012 Pearson Education, Inc.

8 The ifstream Class The ifstream (input file stream) class is derived from istream (input stream class). –Thus ifstream inherits the input operator and member functions eof() and fail() defined in istream. –The ifstream class also defined specialized methods specific to working with files. Copyright © 2012 Pearson Education, Inc.

9 Input File Streams Each data files used for input must have an ifstream object associated with it: ifstream sensor1; sensor1.open(“sensor1.dat”); -Or just – ifstream sensor1(“sensor1.dat”); Copyright © 2012 Pearson Education, Inc.

10 Avoiding Bugs If opening the named file fails, the fail error bit is set, and all statements to read from the file will be ignored. –NO error message will be generated but the program will continue to execute. –Check to be sure that the open was successful. fail() method of istream returns false. Copyright © 2012 Pearson Education, Inc.

11 Input File Example ifstream sensor1; sensor1.open("sensor1.dat"); if ( sensor1.fail() ) //open failed { cerr << "File sensor1.dat could not be opened"; exit(1); //end execution of the program } Copyright © 2012 Pearson Education, Inc.

12 The ofstream Class The ofstream (output file stream) class is derived from ostream (output stream class). –Thus ofstream inherits the output operator and member functions ostream. –The ofstream class also defined specialized methods specific to working with files. Copyright © 2012 Pearson Education, Inc.

13 Output File Streams Each data files used for output must have an ofstream object associated with it: ofstream sensor1; sensor1.open(“balloon.dat”); -Or just – ofstream sensor1(“balloon.dat”); Copyright © 2012 Pearson Education, Inc.

14 Output File Modes By default, opening a file for output in this way will either create the file if it doesn’t already exist or overwrite a previously existing file. If you wish to simply append new content to the previously existing file, you may open the file in append mode: sensor1.open(“balloon.dat”, ios::append); Copyright © 2012 Pearson Education, Inc.

15 More on File Objects The close() methods for both input and output stream objects should be called when the program is done with the file. –The method(s) will be called automatically when the program exits. When you use a string class to represent the file name, you must use the c_str() method of string to provide the appropriate type for use in input and output open/constructor methods. Copyright © 2012 Pearson Education, Inc.

16 Reading Data Files Copyright © 2012 Pearson Education, Inc.

17 File Formats To read a file, some knowledge about the contents of the file are needed: –Name of the file. –Order and data types of the values stored in the file. Three common structures: –First-line in file contains number of lines/records in the file. –Trailer signal/sentinel signal used to indicate the last line/record in the file. –End-of-file used directly to indicate last line/record in the file. Copyright © 2012 Pearson Education, Inc.

18 Specified Number of Lines sensor1.dat 10 0.0 132.5 0.1 147.2 0.2 148.3 0.3 157.3 0.4 163.2 0.5 158.2 0.6 169.3 0.7 148.2 0.8 137.6 Copyright © 2012 Pearson Education, Inc. //open input file ifstream sensor1(“sensor1.dat”); //read the number of data entries int numEntries; sensor1 >> numEntries; //read every row double t, y; for (int i = 0; I < numEntries; i++) { sensor1 >> t >> y; //do something with the data }

19 Trailer/Sentinel Signal sensor2.dat 0.0 132.5 0.1 147.2 0.2 148.3 0.3 157.3 0.4 163.2 0.5 158.2 0.6 169.3 0.7 148.2 0.8 137.6 -99 -99 Copyright © 2012 Pearson Education, Inc. //open input file ifstream sensor2(“sensor2.dat”); //read every row double t, y; do { sensor1 >> t >> y; if (t < 0 || y < 0) break; //do something with the data } while (! sensor1.eof());

20 EOF-based File Input sensor3.dat 0.0 132.5 0.1 147.2 0.2 148.3 0.3 157.3 0.4 163.2 0.5 158.2 0.6 169.3 0.7 148.2 0.8 137.6 Copyright © 2012 Pearson Education, Inc. //open input file ifstream sensor3(“sensor3.dat”); //read every row double t, y; while (! sensor3.eof()) { sensor1 >> t >> y; if (sensor3.fail()) break; //do something with the data }

21 Generating a Data File Copyright © 2012 Pearson Education, Inc.

22 Writing Files After opening an output file, writing to a file is no different from writing to standard output. Must decide on a file format. –Sentinels can be hard to choose to avoid conflict with valid data. –Knowing in advance how many lines/records are in the file is sometimes difficult or impractical. –Usually best to use eof-style file format where file structure contains only valid information. Copyright © 2012 Pearson Education, Inc.

23 Problem Solving Applied: Data Filters – Modifying an HTML File Copyright © 2012 Pearson Education, Inc.

24 Problem Solving Applied: Data Filters – Modifying an HTML File Copyright © 2012 Pearson Education, Inc.

25 Problem Solving Applied: Data Filters – Modifying an HTML File Copyright © 2012 Pearson Education, Inc.

26 Problem Solving Applied: Data Filters – Modifying an HTML File Copyright © 2012 Pearson Education, Inc.

27 Problem Solving Applied: Data Filters – Modifying an HTML File Copyright © 2012 Pearson Education, Inc.

28 Error Checking Copyright © 2012 Pearson Education, Inc.

29 Error Checking In addition to indicating if an error occurs when opening a file, fail() may also be used to detect other types of errors. –Errors can occur when trying to read from an input stream when the data on the input stream isn’t of the appropriate type. Copyright © 2012 Pearson Education, Inc.

30 Whitespace Whitespace is defined as blank, tab, newline, form feed, and carriage return characters. Used to separate data when reading from an input stream. For example, to read 2 integers from an input stream, there must be whitespace between the two numbers. –C++ ignores the whitespace to read the numbers. –If any other characters are encountered, the error (fail) state is set. Copyright © 2012 Pearson Education, Inc.

31 Input Stream Errors Do not generate notification of errors! –Only set the error state. Reads will not affect the state of the input buffer or alter variables. –However the program will continue executing! Must “clear” the error state before additional input may be read (using istream’s clear() method). Copyright © 2012 Pearson Education, Inc.

32 Stream State Indicated by a set of state flags: –badbit, failbit, eofbit, goodbit. Events may alter the stream state: Copyright © 2012 Pearson Education, Inc. Eventbadbitfailbiteofbitgoodbit Initialization of a stream 0001 Failure to open a file0100 Unexpected data encountered 0100 End of file encountered 0110

33 Stream Class Methods Copyright © 2012 Pearson Education, Inc. MethodDescription bool bad()Returns true iff badbit is set. bool eof()Returns true iff eofbit is set. bool fail()Returns true iff failbit is set. bool good()Returns true iff goodbit is set. void clear(iostate flag = goodbit)Sets the state flags. iostate rdstate()Returns the value of the state flags.

34 Numerical Technique: Linear Modeling* Copyright © 2012 Pearson Education, Inc.

35 Linear Modeling Linear modeling is the name given to the process that determines the linear equation (y = mx + b) that is the best fit to a set of data points. –Linear regression does this by minimizing the squared distance between the line and the data points. Copyright © 2012 Pearson Education, Inc.

36 Example Copyright © 2012 Pearson Education, Inc.

37 Solving for Linear Model Parameters Copyright © 2012 Pearson Education, Inc.

38 Problem Solving Applied: Ozone Measurements* Copyright © 2012 Pearson Education, Inc.

39 Problem Solving Applied: Ozone Measurements* Copyright © 2012 Pearson Education, Inc.

40 Problem Solving Applied: Ozone Measurements* Copyright © 2012 Pearson Education, Inc.

41 Problem Solving Applied: Ozone Measurements* Copyright © 2012 Pearson Education, Inc.

42 Problem Solving Applied: Ozone Measurements* Copyright © 2012 Pearson Education, Inc.


Download ppt "Copyright © 2012 Pearson Education, Inc. Chapter 5 Working with Data Files."

Similar presentations


Ads by Google