112 lines
1.9 KiB
JavaScript
112 lines
1.9 KiB
JavaScript
import {
|
|
Transaction, Item, StructStore // eslint-disable-line
|
|
} from '../internals.js'
|
|
|
|
import * as encoding from 'lib0/encoding.js'
|
|
import * as decoding from 'lib0/decoding.js'
|
|
|
|
export class ContentAny {
|
|
/**
|
|
* @param {Array<any>} arr
|
|
*/
|
|
constructor (arr) {
|
|
/**
|
|
* @type {Array<any>}
|
|
*/
|
|
this.arr = arr
|
|
}
|
|
|
|
/**
|
|
* @return {number}
|
|
*/
|
|
getLength () {
|
|
return this.arr.length
|
|
}
|
|
|
|
/**
|
|
* @return {Array<any>}
|
|
*/
|
|
getContent () {
|
|
return this.arr
|
|
}
|
|
|
|
/**
|
|
* @return {boolean}
|
|
*/
|
|
isCountable () {
|
|
return true
|
|
}
|
|
|
|
/**
|
|
* @return {ContentAny}
|
|
*/
|
|
copy () {
|
|
return new ContentAny(this.arr)
|
|
}
|
|
|
|
/**
|
|
* @param {number} offset
|
|
* @return {ContentAny}
|
|
*/
|
|
splice (offset) {
|
|
const right = new ContentAny(this.arr.slice(offset))
|
|
this.arr = this.arr.slice(0, offset)
|
|
return right
|
|
}
|
|
|
|
/**
|
|
* @param {ContentAny} right
|
|
* @return {boolean}
|
|
*/
|
|
mergeWith (right) {
|
|
this.arr = this.arr.concat(right.arr)
|
|
return true
|
|
}
|
|
|
|
/**
|
|
* @param {Transaction} transaction
|
|
* @param {Item} item
|
|
*/
|
|
integrate (transaction, item) {}
|
|
/**
|
|
* @param {Transaction} transaction
|
|
*/
|
|
delete (transaction) {}
|
|
/**
|
|
* @param {StructStore} store
|
|
*/
|
|
gc (store) {}
|
|
/**
|
|
* @param {encoding.Encoder} encoder
|
|
* @param {number} offset
|
|
*/
|
|
write (encoder, offset) {
|
|
const len = this.arr.length
|
|
encoding.writeVarUint(encoder, len - offset)
|
|
for (let i = offset; i < len; i++) {
|
|
const c = this.arr[i]
|
|
encoding.writeAny(encoder, c)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return {number}
|
|
*/
|
|
getRef () {
|
|
return 8
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {decoding.Decoder} decoder
|
|
* @return {ContentAny}
|
|
*/
|
|
export const readContentAny = decoder => {
|
|
const len = decoding.readVarUint(decoder)
|
|
const cs = []
|
|
for (let i = 0; i < len; i++) {
|
|
cs.push(decoding.readAny(decoder))
|
|
}
|
|
return new ContentAny(cs)
|
|
}
|