source: tests/copyfile.cfa@ 4be0117

Last change on this file since 4be0117 was 3ac5fd8, checked in by Peter A. Buhr <pabuhr@…>, 13 months ago

first attempt changing end-of-file to an exception

  • Property mode set to 100644
File size: 1.5 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// copyfile.cfa --
8//
9// Author : Peter A. Buhr
10// Created On : Fri Jun 19 13:44:05 2020
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sat Aug 17 14:18:47 2024
13// Update Count : 11
14//
15
16#include <fstream.hfa>
17#include <exception.hfa>
18
19int main( int argc, char * argv[] ) {
20 ifstream in = stdin; // copy default files
21 ofstream out = stdout;
22
23 try {
24 choose ( argc ) { // terminate if command-line errors
25 case 3, 2:
26 open( in, argv[1] ); // open input file first as output creates file
27 if ( argc == 3 ) open( out, argv[2] ); // do not create output unless input opens
28 case 1: ; // use default files
29 default: // wrong number of options
30 exit | "Usage" | argv[0] | "[ input-file (default stdin) [ output-file (default stdout) ] ]";
31 } // choose
32 } catch( open_failure * ex ; ex->istream == &in ) {
33 exit | "Unable to open input file" | argv[1];
34 } catch( open_failure * ex ; ex->ostream == &out ) {
35 close( in ); // optional
36 exit | "Unable to open output file" | argv[2];
37 } // try
38
39 out | nlOff; // turn off auto newline
40 in | nlOn; // turn on reading newline
41
42 char ch;
43 try {
44 for () { // read all characters
45 in | ch;
46 out | ch;
47 } // for
48 } catch( end_of_file * ) {
49 } // try
50} // main
Note: See TracBrowser for help on using the repository browser.