17 File Processing. OBJECTIVES In this chapter you will learn:  To create, read, write and update files.  Sequential file processing.  Random-access.

Slides:



Advertisements
Similar presentations
1 Classes and Data Abstraction and File Processing Lecture 13.
Advertisements

© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved Introduction Data files –Can be created, updated,
 2007 Pearson Education, Inc. All rights reserved C File Processing.
CPSC 231 D.H. C++ File Processing 1 Learning Objectives §C++ I/O streams. §Reading and writing sequential files. §Reading and writing random access files.
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.
計算機概論實習 Files and Streams C++ views file as sequence of bytes Ends with end-of-file marker n-1 end-of-file marker 67 This is.
Copyright © 2012 Pearson Education, Inc. Chapter 12: Advanced File Operations.
 2006 Pearson Education, Inc. All rights reserved File Processing.
Darbas su failais Arnas Terekas IT 1gr. Vilniaus universitetas Matematikos ir informatikos fakultetas.
CSIS 123A Lecture 8 Streams & File IO Glenn Stevenson CSIS 113A MSJC.
C++ How to Program, 7/e © by Pearson Education, Inc. All Rights Reserved.
C++ How to Program, 7/e © by Pearson Education, Inc. All Rights Reserved.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Copyright © 2015, 2012, 2009 Pearson Education, Inc., Publishing as Addison-Wesley All rights reserved. Chapter 12: Advanced File Operations.
Programming Principles II Lecture Notes 7 Files Andreas Savva.
STL List // constructing lists #include int main () { // constructors used in the same order as described above: std::list first; // empty list of ints.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
 2003 Prentice Hall, Inc. All rights reserved. 1 IS 0020 Program Design and Software Tools Stack/Queue - File Processing Lecture 10 March 29, 2005.
 2008 Pearson Education, Inc. All rights reserved File Processing.
An Introduction to Programming with C++ Sixth Edition Chapter 14 Sequential Access Files.
計算機程式語言 Lecture 17-1 國立台灣大學生物機電系 林達德 17 File Processing.
C++ How to Program, 8/e © by Pearson Education, Inc. All Rights Reserved.
File I/O. fstream files File: similar to vector of elements Used for input and output Elements of file can be –character (text)struct –object (non-text.
C++ FILE I/O.
Liang, Introduction to Programming with C++, Second Edition, (c) 2010 Pearson Education, Inc. All rights reserved Chapter 13 File Input and.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 12 Advanced File Operations.
DCT1063 Programming 2 CHAPTER 3 FILE INPUT AND FILE OUTPUT Mohd Nazri Bin Ibrahim Faculty of Computer, Media & Technology TATi University College
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.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide
chap8 Chapter 12 Files (reference: Deitel ’ s chap 11)
Fall 2015CISC/CMPE320 - Prof. McLeod1 CISC/CMPE320 Assignment 1 due Friday, 7pm. RAD due next Friday. Presentations week 6. Today: –More details on functions,
1 CSC241: Object Oriented Programming Lecture No 32.
Input/Output CSci 588: Data Structures, Algorithms and Software Design Fall 2011 All material not from online sources copyright © Travis Desell, 2011
File Processing Files are used for data persistance-permanent retention of large amounts of data. Computer store files on secondary storage devices,such.
GE 211 Programming in C ++ Dr. Ahmed Telba Room :Ac -134
1 Today’s Objectives  Announcements Homework #5 is due next Monday, July 24. Since this date is so close to the end of the semester, no late assignments.
Learners Support Publications Working with Files.
Lecture 14 Arguments, Classes and Files. Arguments.
FILE HANDLING(WORKING WITH FILES) FILE- A file is a collection of related data stored in a particular area on the disk. STREAMS- interface between the.
Binary Files. Text Files vs. Binary Files Text files: A way to store data in a secondary storage device using Text representation (e.g., ASCII characters)
 2007 Pearson Education, Inc. All rights reserved. 1 C File Processing.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Ms N Nashandi Dr SH Nggada 2016/01/03Ms N Nashandi and Dr SH Nggada1 Week 6 -File input and output in C++
2008YeungNam Univ. SE Lab. 1 C++ views each file as a sequence of bytes terminated by EOF-marker. Header files Files are opened by creating objects of.
CS212: Object Oriented Analysis and Design
Chapter 14: Sequential Access Files
File Processing.
Programming with ANSI C ++
11 C File Processing.
17 File Processing.
Tutorial4us.com File Handling in C++ Tutorial4us.com.
TMF1414 Introduction to Programming
What is a File? A file is a collection on information, usually stored on a computer’s disk. Information can be saved to files and then later reused.
C ++ MULTIPLE CHOICE QUESTION
CPSC 231 D.H. C++ File Processing
FILE HANDLING IN C++.
17 File Processing.
17 File Processing.
آشنایی با ساختارها و کار با فایلها
files Dr. Bhargavi Goswami Department of Computer Science
C++ FileIO pepper.
Topics Input and Output Streams More Detailed Error Testing
Chapter 12: Advanced File Operations.
Fundamental of Programming (C)
C++ Programming: chapter 6 – iostream
C++ Programming Lecture 8 File Processing
Presentation transcript:

17 File Processing

OBJECTIVES In this chapter you will learn:  To create, read, write and update files.  Sequential file processing.  Random-access file processing.  To use high-performance unformatted I/O operations.  The differences between formatted-data and raw-data file processing.  To build a transaction-processing program using random-access file processing.

17.1 File/IO Introduction C++ uses the following classes to perform output and input characters to/from files – ofstream: Stream class to write on files – ifstream: Stream class to read from files – fstream: Stream class to both read and write from/to files These classes are derived directly or indirectly from the classes istream, and ostream We have used cin as an object of class istream and cout, an object of class ostream We can use file streams the same way we use cin and cout, with the only difference that we have to associate these streams with physical files

17.1 File/IO Introduction // basic file operations #include using namespace std; int main () { ofstream myfile; myfile.open ("example.txt"); myfile << "Writing this to a file.\n"; myfile.close(); return 0; } [file example.txt] Writing this to a file Inserts a sentence into the stream exactly the same way as cout but using file stream myfile

17.2 The Data Hierarchy Bits (“binary digits”) – Can assume one of two values, 0 or 1 – Smallest data item that computers support Computer circuitry performs simple bit manipulations Ultimately all data items are composed of bits Characters – Include decimal digits, letters and special symbols Composed of bits ( 1 s and 0 s) – A character set is the set of all characters used on a particular computer – char s are stored in bytes (8 bits) – wchar_t s are stored in more than one byte

17.2 The Data Hierarchy (Cont.) Fields – Composed of characters – Conveys some meaning – Example Uppercase and lowercase letters can represent a name Records – Composed of several fields – Represented as a class in C++ – Example An employee’s record might include id#, name, address, etc. – A record key is a field unique to each record

Fig | Data hierarchy.

17.2 The Data Hierarchy (Cont.) File – Composed of a group of related records – Example A payroll file containing one record for each employee – Many ways to organize records in a file Such as a sequential file – Records are stored in order by a record-key field Database – Composed of a group of related files – Managed by a collection of programs called a database management system (DBMS)

17.3 Files and Streams Files – Viewed by C++ as a sequence of bytes – Ends either with an end-of-file marker or at a system- recorded byte number – Communication between a program and a file is performed through stream objects header file – Stream class templates basic_ifstream – for file input basic_ofstream – for file output basic_fstream – for file input and output – Files are opened by creating objects of stream template specializations

Fig | C++’s view of a file of n bytes.

Open a file The first operation is to associate the stream to a real file In order to open a file with a stream object we use its member function open(): – open (filename, mode); Mode is an optional parameter

Mode class default mode parameter ofstreamios::out ifstreamios::in fstreamios::in | ios::out

 2006 Pearson Education, Inc. All rights reserved. 13 Outline Fig17_04.cpp (1 of 2) Open file client.dat for output Overloaded operator! will return true if the file did not open successfully

 2006 Pearson Education, Inc. All rights reserved. 14 Outline Fig17_04.cpp (2 of 2) Overloaded operator void * will return the null pointer 0 ( false ) when the user enters the end-of-file indicator Write data to client.dat using the stream insertion operator ofstream destructor implicitly closes the file

17.4 Creating a Sequential File (Cont.) Creating an ofstream object – Opens a file for output – Constructor takes two arguments A filename – If the file doe not exist, it is first created A file-open mode – ios::out – the default mode Overwrites preexisting data in the file – ios::app Appends data to the end of the file – Can also use member function open on existing object Takes same arguments as the constructor

Common Programming Error 17.2 Not opening a file before attempting to reference it in a program will result in an error.

17.4 Creating a Sequential File (Cont.) Using an ofstream object – Writing to the file Use the stream insertion operator – Member function close Releases the file resource Implicitly performed by ofstream ’s destructor

Performance Tip 17.1 Closing files explicitly when the program no longer needs to reference them can reduce resource usage (especially if the program continues execution after closing the files).

17.5 Reading Data from a Sequential File Creating an ifstream object – Opens a file for input – Constructor takes two arguments A filename A file-open mode – ios::in – the default mode Can only read from the file – Can also use member function open on an existing object Takes same arguments as the constructor

Good Programming Practice 17.1 Open a file for input only (using ios::in) if the file’s contents should not be modified. This prevents unintentional modification of the file’s contents and is an example of the principle of least privilege.

 2006 Pearson Education, Inc. All rights reserved. 21 Outline Fig17_07.cpp (1 of 3)

 2006 Pearson Education, Inc. All rights reserved. 22 Outline Fig17_07.cpp (2 of 3) Open clients.dat for input Returns a null pointer 0 ( false ) when the end of clients.dat is reached Overloaded operator! returns true if clients.dat was not opened successfully ifstream destructor implicitly closes the file

 2006 Pearson Education, Inc. All rights reserved. 23 Outline Fig17_07.cpp (3 of 3)

17.5 Reading Data from a Sequential File (Cont.) File-position pointer – The byte number of the next byte to be read or written – Member functions seekg and seekp (of istream and ostream, respectively) Repositions the file-position pointer to the specified location – Takes desired offset argument as a long A second argument can specify the seek direction – ios::beg – the default Positioning relative to the beginning – ios::cur Positioning relative to the current position – ios::end Positioning relative to the end

17.5 Reading Data from a Sequential File (Cont.) – Member functions seekg and seekp (Cont.) Examples – fileObject.seekg( n ); Position to the nth byte of fileObject – fileObject.seekg( n, ios::cur ); Position n bytes forward in fileobject – fileObject.seekg( n, ios::end ); Position n bytes back from end of fileObject – fileObject.seekg( 0, ios::end ); Position at end of fileObject

17.5 Reading Data from a Sequential File (Cont.) File-position pointer (Cont.) – Member functions tellg and tellp (of istream and ostream, respectively) Returns current position of the file-position pointer as type long Example – Location = fileObject.tellg();

17.5 Reading Data from a Sequential File (Cont.)

17.6 Updating Sequential Files Updating a record in a sequential file – The new record could be longer than the old record If it is, it could overwrite the next sequential record You would have to rewrite every record into another file – Copy over all records before this one – Write new version of this record – Copy over all records after this one This might be acceptable if you are updating many records

17.7 Random-Access Files Random-access files – Necessary for instant-access applications Such as transaction-processing systems – A record can be inserted, deleted or modified without affecting other records – Various techniques can be used Require that all records be of the same length, arranged in the order of the record keys – Program can calculate the exact location of any record Base on the record size and record key

Fig | C++ view of a random-access file.

17.10 Reading from a Random-Access File Sequentially Sequentially reading a random-access file – ifstream member function read Inputs a number of bytes from the current file position in the stream into an object First argument – A char * pointing to the object in memory Second argument – A size_t specifying the number of bytes to input – Additional benefit Sequentially read-in records are sorted in order of ascending record keys – Space-time trade off: a fast sorting algorithm, but space- consuming

17.8 Creating a Random-Access File ostream member function write – Writes a number of bytes from a location in memory to the stream If the stream is associated with a file, the writing is at the “put” file-position pointer – First argument A const char * pointing to bytes in memory – Second argument A size_t specifying the number of bytes to write – Example outFile.write( reinterpret_cast ( &number ), sizeof( number ) );

17.9 Writing Data Randomly to a Random-Access File Writing data randomly – Opening for input and output in binary mode Use an fstream object Combine file-open modes ios::in, ios::out and ios::binary – Separate each open mode from the next with the bitwise inclusive OR operator ( | ) – Use function seekp to set the “put” file-position pointer to the specific position Example calculation – ( n – 1 ) * sizeof( ClientData ) Byte location for nth ClientData record – Use function write to output the data

Quiz Find the number of words in a file Find the frequency of characters in the file