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

« back to all changes in this revision

Viewing changes to haxe/std/neko/io/Logger.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 neko.io;
26
 
 
27
 
class Logger extends Input {
28
 
 
29
 
        var input : Input;
30
 
        var output : Output;
31
 
        var autoFlush : Bool;
32
 
 
33
 
        public function new(i,?o,?flush) {
34
 
                input = i;
35
 
                output = o;
36
 
                autoFlush = if( flush == null ) output != null else flush;
37
 
        }
38
 
 
39
 
        public function logChar( c : Int ) {
40
 
        }
41
 
 
42
 
        public function logString( buf : String ) {
43
 
        }
44
 
 
45
 
        public override function readChar() {
46
 
                var c = input.readChar();
47
 
                logChar(c);
48
 
                if( output != null ) output.writeChar(c);
49
 
                if( autoFlush ) output.flush();
50
 
                return c;
51
 
        }
52
 
 
53
 
        public override function readBytes(buf,pos,len) {
54
 
                var n = input.readBytes(buf,pos,len);
55
 
                logString(buf.substr(pos,n));
56
 
                if( output != null ) output.writeBytes(buf,pos,n);
57
 
                if( autoFlush ) output.flush();
58
 
                return n;
59
 
        }
60
 
 
61
 
        public override function close() {
62
 
                input.close();
63
 
                if( output != null ) output.close();
64
 
        }
65
 
 
66
 
}