Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,253 @@
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.io;
@:coreApi
class Bytes {
public var length(default, null):Int;
var b:hl.Bytes;
function new(b:hl.Bytes, length:Int):Void {
this.b = b;
this.length = length;
}
inline function out(pos:Int):Bool {
return (pos : UInt) >= (length : UInt);
}
inline function outRange(pos:Int, len:Int):Bool {
return pos < 0 || len < 0 || ((pos + len) : UInt) > (length : UInt);
}
public function get(pos:Int):Int {
return if (out(pos)) 0 else b[pos];
}
public function set(pos:Int, v:Int):Void {
if (out(pos))
throw Error.OutsideBounds;
b[pos] = v;
}
public function blit(pos:Int, src:Bytes, srcpos:Int, len:Int):Void {
if (outRange(pos, len) || src.outRange(srcpos, len))
throw Error.OutsideBounds;
b.blit(pos, src.b, srcpos, len);
}
public function fill(pos:Int, len:Int, value:Int):Void {
if (outRange(pos, len))
throw Error.OutsideBounds;
b.fill(pos, len, value);
}
public function sub(pos:Int, len:Int):Bytes {
if (outRange(pos, len))
throw Error.OutsideBounds;
return new Bytes(b.sub(pos, len), len);
}
public function compare(other:Bytes):Int {
var len = length < other.length ? length : other.length;
var r = b.compare(0, other.b, 0, len);
if (r == 0)
r = length - other.length;
return r;
}
#if hl_check_align
static var alignBuffer:hl.Bytes = new hl.Bytes(8);
#end
public function getDouble(pos:Int):Float {
if (out(pos + 7))
return 0.;
#if hl_check_align
return if (pos & 3 == 0) b.getF64(pos) else {
alignBuffer.blit(0, b, pos, 8);
alignBuffer.getF64(0);
}
#else
return b.getF64(pos);
#end
}
public function getFloat(pos:Int):Float {
if (out(pos + 3))
return 0.;
#if hl_check_align
return if (pos & 3 == 0) b.getF32(pos) else {
alignBuffer.blit(0, b, pos, 4);
alignBuffer.getF32(0);
}
#else
return b.getF32(pos);
#end
}
public function setDouble(pos:Int, v:Float):Void {
if (out(pos + 7))
throw Error.OutsideBounds;
#if hl_check_align
if (pos & 7 == 0)
b.setF64(pos, v);
else {
alignBuffer.setF64(0, v);
b.blit(pos, alignBuffer, 0, 8);
}
#else
b.setF64(pos, v);
#end
}
public function setFloat(pos:Int, v:Float):Void {
if (out(pos + 3))
throw Error.OutsideBounds;
#if hl_check_align
if (pos & 3 == 0)
b.setF32(pos, v);
else {
alignBuffer.setF32(0, v);
b.blit(pos, alignBuffer, 0, 4);
}
#else
b.setF32(pos, v);
#end
}
public inline function getUInt16(pos:Int):Int {
return if (out(pos + 1)) 0 else b.getUI16(pos);
}
public inline function setUInt16(pos:Int, v:Int):Void {
if (out(pos + 1))
throw Error.OutsideBounds;
b.setUI16(pos, v);
}
public function getInt32(pos:Int):Int {
return if (out(pos + 3)) 0 else b.getI32(pos);
}
public function getInt64(pos:Int):haxe.Int64 {
if (out(pos + 7))
return haxe.Int64.ofInt(0);
return haxe.Int64.make(b.getI32(pos + 4), b.getI32(pos));
}
public function setInt32(pos:Int, v:Int):Void {
if (out(pos + 3))
throw Error.OutsideBounds;
b.setI32(pos, v);
}
public inline function setInt64(pos:Int, v:haxe.Int64):Void {
setInt32(pos + 4, v.high);
setInt32(pos, v.low);
}
public function getString(pos:Int, len:Int, ?encoding:Encoding):String {
if (outRange(pos, len))
throw Error.OutsideBounds;
var b = new hl.Bytes(len + 2);
b.blit(0, this.b, pos, len);
b[len] = 0;
b[len + 1] = 0;
return @:privateAccess (encoding == RawNative ? String.fromUCS2(b) : String.fromUTF8(b));
}
@:deprecated("readString is deprecated, use getString instead")
@:noCompletion
public inline function readString(pos:Int, len:Int):String {
return getString(pos, len);
}
public function toString():String {
return getString(0, length);
}
public function toHex():String {
var s = new StringBuf();
var chars = [];
var str = "0123456789abcdef";
for (i in 0...str.length)
chars.push(str.charCodeAt(i));
for (i in 0...length) {
var c = get(i);
s.addChar(chars[c >> 4]);
s.addChar(chars[c & 15]);
}
return s.toString();
}
public inline function getData():BytesData {
return new haxe.io.BytesData(b, length);
}
public static function alloc(length:Int):Bytes {
var b = new hl.Bytes(length);
b.fill(0, length, 0);
return new Bytes(b, length);
}
public static function ofString(s:String, ?encoding:Encoding):Bytes@:privateAccess {
if (encoding == null)
encoding = UTF8;
return switch (encoding) {
case RawNative:
return new Bytes(s.bytes.sub(0, s.length << 1), s.length << 1);
case UTF8:
var size = 0;
var b = s.bytes.utf16ToUtf8(s.length, size);
return new Bytes(b, size);
}
}
public static function ofData(b:BytesData):Bytes {
return new Bytes(b.bytes, b.length);
}
public static function ofHex(s:String):Bytes {
var len = s.length;
if ((len & 1) != 0)
throw "Not a hex string (odd number of digits)";
var l = len >> 1;
var b = new hl.Bytes(l);
for (i in 0...l) {
var high = s.charCodeAt(i * 2);
var low = s.charCodeAt(i * 2 + 1);
high = (high & 0xf) + ((high & 0x40) >> 6) * 9;
low = (low & 0xf) + ((low & 0x40) >> 6) * 9;
b.setUI8(i, ((high << 4) | low) & 0xff);
}
return new Bytes(b, l);
}
public inline static function fastGet(b:BytesData, pos:Int):Int {
return b[pos];
}
}

View File

@ -0,0 +1,131 @@
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.io;
@:coreApi
class BytesBuffer {
var b:hl.Bytes;
var pos:Int;
var size:Int;
public var length(get, never):Int;
public function new() {
pos = 0;
size = 16; // ensure increment of 8
b = new hl.Bytes(size);
}
inline function get_length():Int {
return pos;
}
public inline function addByte(byte:Int):Void {
if (pos == size)
__expand(0);
b[pos++] = byte;
}
function __expand(req:Int):Void {
var nsize = (size * 3) >> 1;
if (nsize < req)
nsize = req;
var b2 = new hl.Bytes(nsize);
b2.blit(0, b, 0, pos);
b = b2;
size = nsize;
}
function __add(b:hl.Bytes, bpos:Int, blen:Int):Void {
if (pos + blen > size)
__expand(pos + blen);
this.b.blit(pos, b, bpos, blen);
pos += blen;
}
public inline function add(src:Bytes):Void {
__add(@:privateAccess src.b, 0, src.length);
}
public inline function addString(v:String, ?encoding:Encoding):Void {
var len = 0;
@:privateAccess (encoding == RawNative ? __add(v.bytes, 0, v.length << 1) : __add(v.bytes.utf16ToUtf8(0, len), 0, len));
}
public inline function addInt32(v:Int):Void {
if (pos + 4 > size)
__expand(0);
b.setI32(pos, v);
pos += 4;
}
public inline function addInt64(v:haxe.Int64):Void {
if (pos + 8 > size)
__expand(0);
b.setI32(pos, v.low);
b.setI32(pos + 4, v.high);
pos += 8;
}
public inline function addFloat(v:Float):Void {
if (pos + 4 > size)
__expand(0);
#if hl_check_align
if (pos & 3 == 0)
b.setF32(pos, v);
else @:privateAccess {
haxe.io.Bytes.alignBuffer.setF32(0, v);
b.blit(pos, haxe.io.Bytes.alignBuffer, 0, 4);
}
#else
b.setF32(pos, v);
#end
pos += 4;
}
public inline function addDouble(v:Float):Void {
if (pos + 8 > size)
__expand(0);
#if hl_check_align
if (pos & 7 == 0)
b.setF64(pos, v);
else @:privateAccess {
haxe.io.Bytes.alignBuffer.setF64(0, v);
b.blit(pos, haxe.io.Bytes.alignBuffer, 0, 8);
}
#else
b.setF64(pos, v);
#end
pos += 8;
}
public inline function addBytes(src:Bytes, pos:Int, len:Int):Void {
if (pos < 0 || len < 0 || pos + len > src.length)
throw Error.OutsideBounds;
__add(@:privateAccess src.b, pos, len);
}
public function getBytes():Bytes {
return @:privateAccess new haxe.io.Bytes(b, pos);
}
}

View File

@ -0,0 +1,55 @@
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.io;
class FPHelper {
// note : this is not thread safe, use TLS when available
static var i64tmp = Int64.ofInt(0);
static var helper = new hl.Bytes(8);
public static function i32ToFloat(i:Int):Single {
helper.setI32(0, i);
return helper.getF32(0);
}
public static function floatToI32(f:Single):Int {
helper.setF32(0, f);
return helper.getI32(0);
}
public static function i64ToDouble(low:Int, high:Int):Float {
helper.setI32(0, low);
helper.setI32(4, high);
return helper.getF64(0);
}
public static function doubleToI64(v:Float):Int64 {
helper.setF64(0, v);
var i64 = i64tmp;
@:privateAccess {
i64.set_low(helper.getI32(0));
i64.set_high(helper.getI32(4));
}
return i64;
}
}