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

« back to all changes in this revision

Viewing changes to haxe/std/neko/io/StringInput.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 StringInput extends Input {
28
 
 
29
 
        var s : String;
30
 
        var pos : Int;
31
 
        var len : Int;
32
 
 
33
 
        public function new( s : String, ?pos : Int, ?len : Int ) {
34
 
                this.s = s;
35
 
                this.pos = if( pos == null ) 0 else pos;
36
 
                this.len = if( len == null ) s.length else len;
37
 
                if( this.pos < 0 || this.len < 0 )
38
 
                        throw "Invalid parameter";
39
 
        }
40
 
 
41
 
        public override function readChar() {
42
 
                if( this.len == 0 )
43
 
                        throw new Eof();
44
 
                var c = untyped __dollar__sget(s.__s,pos);
45
 
                pos += 1;
46
 
                len -= 1;
47
 
                return c;
48
 
        }
49
 
 
50
 
        public override function readBytes( buf : String, bpos, blen ) : Int {
51
 
                if( len == 0 && blen > 0 )
52
 
                        throw new Eof();
53
 
                if( len < blen )
54
 
                        blen = len;
55
 
                untyped __dollar__sblit(buf.__s,bpos,s.__s,pos,blen);
56
 
                pos += blen;
57
 
                len -= blen;
58
 
                return blen;
59
 
        }
60
 
 
61
 
}