~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/php/io/FileOutput.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2009-03-18 23:09:50 UTC
  • mfrom: (3.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090318230950-pgfuxg2ucolps74t
Tags: 1:2.2-2
* Use ocamlfind to locate and use the libraries xml-light and extlib
  which already exist in Debian as separate packages.
  (Closes: #519630)
* Fixed compile error with camlp4 3.11, thanks to Stéphane Glondu.
  (Closes: #519627)
* Use quilt instead of dpatch for patches, and describe how to use
  quilt in Debian.source (thanks to Russ Allbery).
* Added a Vcs-Hg control filed to indicate the location of the public
  repository.
* Bumped Standards-Version to 3.8.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2005, The haXe Project Contributors
 
3
 * All rights reserved.
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions are met:
 
6
 *
 
7
 *   - Redistributions of source code must retain the above copyright
 
8
 *     notice, this list of conditions and the following disclaimer.
 
9
 *   - Redistributions in binary form must reproduce the above copyright
 
10
 *     notice, this list of conditions and the following disclaimer in the
 
11
 *     documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY THE HAXE PROJECT CONTRIBUTORS "AS IS" AND ANY
 
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
15
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
16
 * DISCLAIMED. IN NO EVENT SHALL THE HAXE PROJECT CONTRIBUTORS BE LIABLE FOR
 
17
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
18
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 
19
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
20
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
21
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
22
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
23
 * DAMAGE.
 
24
 */
 
25
package php.io;
 
26
import php.io.File;
 
27
 
 
28
/**
 
29
        Use [php.io.File.write] to create a [FileOutput]
 
30
**/
 
31
class FileOutput extends haxe.io.Output {
 
32
        private var __f : FileHandle;
 
33
 
 
34
        public function new(f) {
 
35
                __f = f;
 
36
        }
 
37
 
 
38
        public override function writeByte( c : Int ) {
 
39
                var r = untyped __call__('fwrite', __f, __call__('chr', c));
 
40
                if(untyped __physeq__(r, false)) return throw haxe.io.Error.Custom('An error occurred');
 
41
                return r;
 
42
        }
 
43
 
 
44
        public override function writeBytes( b : haxe.io.Bytes, p : Int, l : Int ) : Int {
 
45
                var s = b.readString(p, l);
 
46
                if(untyped __call__('feof', __f)) return throw new haxe.io.Eof();
 
47
                var r = untyped __call__('fwrite', __f, s, l);
 
48
                if(untyped __physeq__(r, false)) return throw haxe.io.Error.Custom('An error occurred');
 
49
                return r;
 
50
        }
 
51
 
 
52
        public override function flush() {
 
53
                var r = untyped __call__('fflush', __f);
 
54
                if(untyped __physeq__(r, false)) throw haxe.io.Error.Custom('An error occurred');
 
55
        }
 
56
 
 
57
        public override function close() {
 
58
                super.close();
 
59
                if(__f != null) untyped __call__('fclose', __f);
 
60
        }
 
61
 
 
62
        public function seek( p : Int, pos : FileSeek ) {
 
63
                var w;
 
64
                switch( pos ) { 
 
65
                        case SeekBegin: w = untyped __php__('SEEK_SET');
 
66
                        case SeekCur  : w = untyped __php__('SEEK_CUR');
 
67
                        case SeekEnd  : w = untyped __php__('SEEK_END');
 
68
                }
 
69
                var r = untyped __call__('fseek', __f, p, w);
 
70
                if(untyped __physeq__(r, false)) throw haxe.io.Error.Custom('An error occurred');
 
71
        }
 
72
 
 
73
        public function tell() : Int {
 
74
                var r = untyped __call__('ftell', __f);
 
75
                if(untyped __physeq__(r, false)) return throw haxe.io.Error.Custom('An error occurred');
 
76
                return cast r;
 
77
        }
 
78
 
 
79
        public function eof() : Bool {
 
80
                return untyped __call__('feof', __f);
 
81
        }
 
82
}