forked from ThoughtWorksInc/Binding.scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBindingJvmOrJs.scala
121 lines (97 loc) · 2.58 KB
/
BindingJvmOrJs.scala
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
package com.thoughtworks.binding
private[binding] object BindingJvmOrJs {
type ConstantsData[+A] = scalajs.js.Array[_ <: A]
@inline
def toConstantsData[A](seq: IterableOnce[A]) = {
import scalajs.js.JSConverters._
seq.toJSArray
}
@inline
def toCacheData[A](seq: collection.Iterable[A]) = {
import scalajs.js.JSConverters._
seq.toJSArray
}
@inline
def emptyCacheData[A]: HasCache[A]#Cache = scalajs.js.Array()
trait HasCache[A] {
private[binding] type Cache = scalajs.js.Array[A]
private[binding] def cacheData: Cache
@inline
private[binding] final def getCache(n: Int): A = cacheData(n)
@inline
private[binding] final def updateCache(n: Int, newelem: A): Unit = {
cacheData(n) = newelem
}
@inline
private[binding] final def cacheLength: Int = cacheData.length
@inline
private[binding] final def clearCache(): Unit = {
cacheData.length = 0
}
@inline
private[binding] final def removeCache(n: Int): A = {
cacheData.remove(n)
}
private[binding] final def removeCache(idx: Int, count: Int): Unit = {
cacheData.remove(idx, count)
}
@inline
private[binding] final def appendCache(
elements: IterableOnce[A]
): Seq[A] = {
val seq = Seq.from(elements)
cacheData ++= seq
seq
}
@inline
private[binding] final def appendCache(elem: A): Unit = {
cacheData += elem
}
@inline
private[binding] final def prependCache(elem: A): Unit = {
cacheData.unshift(elem)
}
@inline
private[binding] final def insertOneCache(n: Int, elem: A): Seq[A] = {
cacheData.insert(n, elem)
Seq(elem)
}
@inline
private[binding] final def insertCache(
n: Int,
elems: IterableOnce[A]
): Seq[A] = {
val seq = Seq.from(elems)
cacheData.insertAll(n, elems)
seq
}
@inline
private[binding] final def cacheIterator: Iterator[A] = {
cacheData.iterator
}
@inline
private[binding] final def spliceCache(
from: Int,
mappedNewChildren: Cache,
replaced: Int
) = {
cacheData.splice(
from,
replaced,
scalajs.runtime.toScalaVarArgs(mappedNewChildren): _*
)
}
@inline
private[binding] final def spliceCache(
from: Int,
mappedNewChildren: IterableOnce[A],
replaced: Int
) = {
cacheData.splice(from, replaced, Seq.from(mappedNewChildren): _*)
}
@inline
private[binding] final def indexOfCache(a: A): Int = {
cacheData.indexOf(a)
}
}
}