1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/*
* 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 cs.internal;
@:native('haxe.lang.FieldHashConflict')
@:nativeGen @:keep
final class FieldHashConflict {
@:readOnly public var hash(default, never):Int;
@:readOnly public var name(default, never):String;
public var value:Dynamic;
public var next:FieldHashConflict;
public function new(hash, name, value:Dynamic, next) {
untyped this.hash = hash;
untyped this.name = name;
this.value = value;
this.next = next;
}
}
@:native('haxe.lang.FieldLookup')
@:classCode("#pragma warning disable 628\n")
@:nativeGen @:keep @:static
final class FieldLookup {
@:protected private static var fieldIds:cs.NativeArray<Int>;
@:protected private static var fields:cs.NativeArray<String>;
@:protected private static var length:Int;
static function __init__() {
length = fieldIds.Length;
}
private static function addFields(nids:cs.NativeArray<Int>, nfields:cs.NativeArray<String>):Void {
// first see if we need to add anything
var cids = fieldIds, cfields = fields;
var nlen = nids.Length;
var clen = length;
if (nfields.Length != nlen)
throw 'Different fields length: $nlen and ${nfields.Length}';
// TODO optimize
var needsChange = false;
for (i in nids) {
if (findHash(i, cids, clen) < 0) {
needsChange = true;
break;
}
}
// if we do, lock and merge
if (needsChange) {
cs.Lib.lock(FieldLookup, {
// trace(cs.Lib.array(nids), cs.Lib.array(cids));
var ansIds = new cs.NativeArray(clen + nlen),
ansFields = new cs.NativeArray(clen + nlen);
var ci = 0, ni = 0, ansi = 0;
while (ci < clen && ni < nlen) {
if (cids[ci] < nids[ni]) {
ansIds[ansi] = cids[ci];
ansFields[ansi] = cfields[ci];
++ci;
} else {
ansIds[ansi] = nids[ni];
ansFields[ansi] = nfields[ni];
++ni;
}
++ansi;
}
if (ci < clen) {
cs.system.Array.Copy(cids, ci, ansIds, ansi, clen - ci);
cs.system.Array.Copy(cfields, ci, ansFields, ansi, clen - ci);
ansi += clen - ci;
}
if (ni < nlen) {
cs.system.Array.Copy(nids, ni, ansIds, ansi, nlen - ni);
cs.system.Array.Copy(nfields, ni, ansFields, ansi, nlen - ni);
ansi += nlen - ni;
}
// trace(cs.Lib.array(ansIds));
fieldIds = ansIds;
fields = ansFields;
length = ansi;
});
}
}
// s cannot be null here
private static inline function doHash(s:String):Int {
var acc = 0; // alloc_int
for (i in 0...s.length) {
acc = ((223 * (acc >> 1) + cast(s[i], Int)) << 1);
}
return acc >>> 1; // always positive
}
public static function lookupHash(key:Int):String {
var ids = fieldIds;
var min = 0;
var max = length;
while (min < max) {
var mid = min + Std.int((max - min) / 2);
var imid = ids[mid];
if (key < imid) {
max = mid;
} else if (key > imid) {
min = mid + 1;
} else {
return fields[mid];
}
}
// if not found, it's definitely an error
throw "Field not found for hash " + key;
}
public static function hash(s:String):Int {
if (s == null)
return 0;
var key = doHash(s);
var ids = fieldIds, fld = fields;
var min = 0;
var max = length;
var len = length;
while (min < max) {
var mid = Std.int(min + (max - min) / 2); // overflow safe
var imid = ids[mid];
if (key < imid) {
max = mid;
} else if (key > imid) {
min = mid + 1;
} else {
var field = fld[mid];
if (field != s)
return ~key; // special case
return key;
}
}
// if not found, min holds the value where we should insert the key
// ensure thread safety:
cs.Lib.lock(FieldLookup, {
if (len != length) // race condition which will very rarely happen - other thread modified sooner.
return hash(s); // since we already own the lock, this second try will always succeed
fieldIds = insertInt(fieldIds, length, min, key);
fields = insertString(fields, length, min, s);
++length;
});
return key;
}
public static function findHash(hash:Int, hashs:cs.NativeArray<Int>, length:Int):Int {
var min = 0;
var max = length;
while (min < max) {
var mid = Std.int((max + min) / 2);
var imid = hashs[mid];
if (hash < imid) {
max = mid;
} else if (hash > imid) {
min = mid + 1;
} else {
return mid;
}
}
// if not found, return a negative value of where it should be inserted
return ~min;
}
public static function removeInt(a:cs.NativeArray<Int>, length:Int, pos:Int) {
cs.system.Array.Copy(a, pos + 1, a, pos, length - pos - 1);
a[length - 1] = 0;
}
public static function removeFloat(a:cs.NativeArray<Float>, length:Int, pos:Int) {
cs.system.Array.Copy(a, pos + 1, a, pos, length - pos - 1);
a[length - 1] = 0;
}
public static function removeDynamic(a:cs.NativeArray<Dynamic>, length:Int, pos:Int) {
cs.system.Array.Copy(a, pos + 1, a, pos, length - pos - 1);
a[length - 1] = null;
}
extern static inline function __insert<T>(a:cs.NativeArray<T>, length:Int, pos:Int, x:T):cs.NativeArray<T> {
var capacity = a.Length;
if (pos == length) {
if (capacity == length) {
var newarr = new NativeArray((length << 1) + 1);
a.CopyTo(newarr, 0);
a = newarr;
}
} else if (pos == 0) {
if (capacity == length) {
var newarr = new NativeArray((length << 1) + 1);
cs.system.Array.Copy(a, 0, newarr, 1, length);
a = newarr;
} else {
cs.system.Array.Copy(a, 0, a, 1, length);
}
} else {
if (capacity == length) {
var newarr = new NativeArray((length << 1) + 1);
cs.system.Array.Copy(a, 0, newarr, 0, pos);
cs.system.Array.Copy(a, pos, newarr, pos + 1, length - pos);
a = newarr;
} else {
cs.system.Array.Copy(a, pos, a, pos + 1, length - pos);
cs.system.Array.Copy(a, 0, a, 0, pos);
}
}
a[pos] = x;
return a;
}
public static function insertInt(a:cs.NativeArray<Int>, length:Int, pos:Int, x:Int):cs.NativeArray<Int>
return __insert(a, length, pos, x);
public static function insertFloat(a:cs.NativeArray<Float>, length:Int, pos:Int, x:Float):cs.NativeArray<Float>
return __insert(a, length, pos, x);
public static function insertDynamic(a:cs.NativeArray<Dynamic>, length:Int, pos:Int, x:Dynamic):cs.NativeArray<Dynamic>
return __insert(a, length, pos, x);
public static function insertString(a:cs.NativeArray<String>, length:Int, pos:Int, x:String):cs.NativeArray<String>
return __insert(a, length, pos, x);
public static function getHashConflict(head:FieldHashConflict, hash:Int, name:String):FieldHashConflict {
while (head != null) {
if (head.hash == hash && head.name == name) {
return head;
}
head = head.next;
}
return null;
}
public static function setHashConflict(head:cs.Ref<FieldHashConflict>, hash:Int, name:String, value:Dynamic):Void {
var node = head;
while (node != null) {
if (node.hash == hash && node.name == name) {
node.value = value;
return;
}
node = node.next;
}
head = new FieldHashConflict(hash, name, value, head);
}
public static function deleteHashConflict(head:cs.Ref<FieldHashConflict>, hash:Int, name:String):Bool {
// no conflicting fields at all
if (head == null) {
return false;
}
// list head is conflicting - just point it to the next one
if (head.hash == hash && head.name == name) {
head = head.next;
return true;
}
// loop through the list, removing node if there's one
var prev = head, node = head.next;
while (node != null) {
if (node.hash == hash && node.name == name) {
prev.next = node.next;
return true;
}
node = node.next;
}
// not found
return false;
}
public static function addHashConflictNames(head:FieldHashConflict, arr:Array<String>):Void {
while (head != null) {
arr.push(head.name);
head = head.next;
}
}
}
|