Skip to content

Commit 5a1694c

Browse files
committed
Merge branch 'release/1.1.0'
2 parents 9d6118f + 8efc453 commit 5a1694c

8 files changed

+214
-16
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules/
22
dev/
3+
coverage/
34
npm-debug.log
45
yarn-error.log
56
yarn.lock

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ Method | Description
6666
**`pushAll(values: Array<bit>)`** | Pushes a an array of bits onto the array
6767
**`push(value: bit)`** | Pushes a single bit onto the array
6868
**`atIndex(index: number)`** | Gets the bit at a given index.
69-
**`atIndexRange(index: number, count: number)`** | Gets count bits at a given index
69+
**`atIndexRange(index: number, count?: number)`** | Gets count bits at a given index. If count is null, the range goes to the end of the array
70+
**`set(index: number, value: bit)`** | Sets a specified bit at an index of the array
7071

7172
#### Properties
7273
Property | Description
@@ -82,3 +83,7 @@ Initial release
8283
- `atIndexRange(index: number, count: number)`
8384
- `size`
8485

86+
### 1.1.0
87+
Added method set and made count parameter optional for atIndexRange
88+
- `set(index: number, value: bit)`
89+
- `atIndexRange(index: number, count?: number)`

jest.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
roots: [
3+
"<rootDir>/src"
4+
],
5+
transform: {
6+
"^.+\\.tsx?$": "ts-jest"
7+
},
8+
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
9+
moduleFileExtensions: [
10+
"ts",
11+
"tsx",
12+
"js",
13+
"jsx",
14+
"json",
15+
"node"
16+
],
17+
}

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@
1919
},
2020
"homepage": "https://github.com/Bubblesphere/bit-array",
2121
"devDependencies": {
22+
"@types/jest": "^23.3.0",
2223
"babel-preset-es2015": "^6.24.1",
2324
"clean-webpack-plugin": "^0.1.19",
2425
"copy-webpack-plugin": "^4.5.1",
26+
"jest": "^23.4.1",
27+
"ts-jest": "^23.0.1",
2528
"ts-loader": "^4.1.0",
2629
"typescript": "^2.7.2",
2730
"webpack": "^4.1.1",
@@ -32,6 +35,7 @@
3235
},
3336
"scripts": {
3437
"start": "webpack-dev-server --open-page dev/index.html --config webpack.dev.js --mode development ",
35-
"build": "webpack --config webpack.prod.js --mode production"
38+
"build": "webpack --config webpack.prod.js --mode production",
39+
"test": "jest --coverage"
3640
}
3741
}

src/demo/index.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ <h1>Hello world!</h1>
1717
arr.push(0);
1818
// 0, 1, 0, 1, 1, 1, 0
1919

20+
arr.set(0, 1);
21+
// 1, 1, 0, 1, 1, 1, 0
22+
2023
arr.atIndex(0);
21-
// 0
24+
// 1
2225

2326
arr.atIndexRange(0, 3);
2427
// 0, 1, 0

src/demo/index.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,24 @@ import BitArray from "../lib/bit-array";
33
const arr = new BitArray([0, 1, 0]);
44

55
arr.pushAll([1, 1, 1]);
6-
console.log(arr.atIndexRange(0, arr.size));
6+
console.log(arr.atIndexRange(0));
77
// 0, 1, 0, 1, 1, 1
88

99
arr.push(0);
10-
console.log(arr.atIndexRange(0, arr.size));
10+
console.log(arr.atIndexRange(0));
1111
// 0, 1, 0, 1, 1, 1, 0
1212

13+
arr.set(0, 1);
14+
console.log(arr.atIndexRange(0));
15+
// 1, 1, 0, 1, 1, 1, 0
16+
1317
arr.atIndex(0);
1418
console.log(arr.atIndex(0));
15-
// 0
19+
// 1
1620

1721
arr.atIndexRange(0, 3);
1822
console.log(arr.atIndexRange(0, 3));
19-
// 0, 1, 0
23+
// 1, 1, 0
2024

2125
console.log(arr.size)
22-
// 7
26+
// 7

src/lib/bit-array.test.ts

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
import BitArray, { bit } from "./bit-array";
2+
3+
test('Passing less than 8 bit to the constructor', () => {
4+
const arr1 = [1];
5+
const arr2 = [1, 0];
6+
const arr3 = [1, 0, 1];
7+
const arr4 = [1, 0, 1, 0];
8+
const arr5 = [1, 0, 1, 0, 1];
9+
const arr6 = [1, 0, 1, 0, 1, 0];
10+
const arr7 = [1, 0, 1, 0, 1, 0, 1];
11+
12+
const bArr1 = new BitArray(arr1 as Array<bit>);
13+
const bArr2 = new BitArray(arr2 as Array<bit>);
14+
const bArr3 = new BitArray(arr3 as Array<bit>);
15+
const bArr4 = new BitArray(arr4 as Array<bit>);
16+
const bArr5 = new BitArray(arr5 as Array<bit>);
17+
const bArr6 = new BitArray(arr6 as Array<bit>);
18+
const bArr7 = new BitArray(arr7 as Array<bit>);
19+
20+
expect(bArr1.atIndexRange(0)).toEqual(arr1);
21+
expect(bArr2.atIndexRange(0)).toEqual(arr2);
22+
expect(bArr3.atIndexRange(0)).toEqual(arr3);
23+
expect(bArr4.atIndexRange(0)).toEqual(arr4);
24+
expect(bArr5.atIndexRange(0)).toEqual(arr5);
25+
expect(bArr6.atIndexRange(0)).toEqual(arr6);
26+
expect(bArr7.atIndexRange(0)).toEqual(arr7);
27+
});
28+
29+
test('Passing more than 8 bit to the constructor', () => {
30+
const arr8 = [1, 0, 1, 0, 1, 0, 1, 0];
31+
const arr9 = [1, 0, 1, 0, 1, 0, 1, 0, 1];
32+
33+
const bArr8 = new BitArray(arr8 as Array<bit>);
34+
const bArr9 = new BitArray(arr9 as Array<bit>);
35+
36+
expect(bArr8.atIndexRange(0)).toEqual(arr8);
37+
expect(bArr9.atIndexRange(0)).toEqual(arr9);
38+
});
39+
40+
test('Can get a specific index correctly', () => {
41+
const bArr1 = new BitArray([0, 0, 0, 0, 0, 0, 0, 0, 0]);
42+
const bArr2 = new BitArray([1, 1, 1, 1, 1, 1, 1, 1, 1]);
43+
44+
for (let i = 0; i < bArr1.size; i++) {
45+
expect(bArr1.atIndex(i)).toBe(0);
46+
expect(bArr2.atIndex(i)).toBe(1);
47+
}
48+
});
49+
50+
test('Can\'t get an invalid index', () => {
51+
const bArr1 = new BitArray([0, 0, 0, 0, 0, 0, 0, 0, 0]);
52+
53+
expect(() => bArr1.atIndex(-1)).toThrowError();
54+
expect(() => bArr1.atIndex(bArr1.size + 1)).toThrowError();
55+
});
56+
57+
test('Can\'t get an invalid index range', () => {
58+
const bArr1 = new BitArray([0, 0, 0, 0, 0, 0, 0, 0, 0]);
59+
60+
expect(() => bArr1.atIndexRange(-1)).toThrowError();
61+
expect(() => bArr1.atIndexRange(0, bArr1.size + 1)).toThrowError();
62+
});
63+
64+
test('Can get a specific index range correctly', () => {
65+
const arr1 = [0, 0, 0, 0, 0, 0, 0, 0, 0];
66+
const arr2 = [1, 1, 1, 1, 1, 1, 1, 1, 1];
67+
68+
const bArr1 = new BitArray(arr1 as Array<bit>);
69+
const bArr2 = new BitArray(arr2 as Array<bit>);
70+
71+
expect(bArr1.atIndexRange(0)).toEqual(arr1);
72+
expect(bArr2.atIndexRange(0)).toEqual(arr2);
73+
74+
expect(bArr1.atIndexRange(1)).toEqual(arr1.slice(1));
75+
expect(bArr2.atIndexRange(1)).toEqual(arr2.slice(1));
76+
77+
expect(bArr1.atIndexRange(0, 2)).toEqual(arr1.slice(0, 2));
78+
expect(bArr2.atIndexRange(0, 2)).toEqual(arr2.slice(0, 2));
79+
80+
expect(bArr1.atIndexRange(1, 5)).toEqual(arr1.slice(1, 6));
81+
expect(bArr2.atIndexRange(1, 5)).toEqual(arr2.slice(1, 6));
82+
});
83+
84+
test('Can push 0 values onto BitArray', () => {
85+
const bArr1 = new BitArray([]);
86+
87+
for (let i = 0; i < 100; i++) {
88+
bArr1.push(1);
89+
expect(bArr1.atIndex(i)).toBe(1);
90+
}
91+
});
92+
93+
test('Can push 1 values onto BitArray', () => {
94+
const bArr1 = new BitArray([]);
95+
96+
for (let i = 0; i < 100; i++) {
97+
bArr1.push(0);
98+
expect(bArr1.atIndex(i)).toBe(0);
99+
}
100+
bArr1[0] = 1;
101+
});
102+
103+
test('Can set values', () => {
104+
const bArr1 = new BitArray([1, 0]);
105+
106+
bArr1.set(0, 1);
107+
expect(bArr1.atIndexRange(0)).toEqual([1, 0]);
108+
bArr1.set(0, 0);
109+
expect(bArr1.atIndexRange(0)).toEqual([0, 0]);
110+
bArr1.set(1, 0);
111+
expect(bArr1.atIndexRange(0)).toEqual([0, 0]);
112+
bArr1.set(1, 1);
113+
expect(bArr1.atIndexRange(0)).toEqual([0, 1]);
114+
});
115+
116+
test('Can\'t set values for invalid index', () => {
117+
const bArr1 = new BitArray([1, 0]);
118+
119+
expect(() => bArr1.set(-1, 0)).toThrowError();
120+
expect(() => bArr1.set(bArr1.size + 1, 0)).toThrowError();
121+
});
122+
123+
test('Size is valid', () => {
124+
const bArr1 = new BitArray([1, 0]);
125+
expect(bArr1.size).toBe(2);
126+
127+
bArr1.pushAll([1, 1]);
128+
expect(bArr1.size).toBe(4);
129+
130+
bArr1.push(1);
131+
expect(bArr1.size).toBe(5);
132+
});

src/lib/bit-array.ts

+40-8
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export default class BitArray {
1515
*/
1616
constructor(values: Array<bit>) {
1717
this._pushedSize = 0;
18-
this._size = values.length;
19-
this._array = new Uint8Array(Math.ceil(this._size/this._bitPerIndex));
18+
this._size = Math.ceil(values.length === 0 ? 1 : values.length /this._bitPerIndex);
19+
this._array = new Uint8Array(this._size);
2020
this._pointer = 0;
2121
this.pushAll(values);
2222
}
@@ -28,12 +28,32 @@ export default class BitArray {
2828
return this._pushedSize;
2929
}
3030

31+
public set(index: number, value: bit) {
32+
if (index < 0) {
33+
throw `The specified index (${index}) has to be greater or equal to 0`;
34+
}
35+
36+
if (index > this._pushedSize - 1) {
37+
throw `The specified index (${index}) has to be between 0 and ${this._pushedSize - 1}`;
38+
}
39+
40+
const persist = {
41+
pointer: this._pointer,
42+
pushedSize: this._pushedSize
43+
}
44+
45+
this._pointer = index;
46+
this.push(value);
47+
this._pointer = persist.pointer;
48+
this._pushedSize = persist.pushedSize;
49+
}
50+
3151
/**
3252
* Pushes a single bit onto the array
3353
* @param value The bit to push onto the array
3454
*/
3555
public push(value: bit) {
36-
if (this._pointer == this._size) {
56+
if (this._pointer == this._size * this._bitPerIndex) {
3757
this._increaseArraySize();
3858
}
3959
// create a mask for current index.
@@ -71,6 +91,10 @@ export default class BitArray {
7191
* @param index The index of the bit to return
7292
*/
7393
public atIndex(index: number): bit {
94+
if (index < 0) {
95+
throw `The specified index (${index}) has to be greater or equal to 0`;
96+
}
97+
7498
if (index > this._pushedSize) {
7599
throw `Index (${index}) exceeds the size of the bit array (${this._pushedSize})`;
76100
}
@@ -84,9 +108,17 @@ export default class BitArray {
84108
* @param index The index of the first bit to return
85109
* @param count The amount of bits to fetch starting at the index
86110
*/
87-
public atIndexRange(index: number, count: number): bit[] {
88-
if (index + count - 1 > this._pushedSize) {
89-
throw `Index (${index}) exceeds the size of the bit array (${this._pushedSize})`;
111+
public atIndexRange(index: number, count?: number): bit[] {
112+
if (index < 0) {
113+
throw `The specified index (${index}) has to be greater or equal to 0`;
114+
}
115+
116+
if (count == null) {
117+
count = this._pushedSize - index;
118+
}
119+
120+
if (index + count > this._pushedSize) {
121+
throw `Index (${index + count}) exceeds the size of the bit array (${this._pushedSize})`;
90122
}
91123

92124
const values: bit[] = [];
@@ -123,7 +155,7 @@ export default class BitArray {
123155
private _increaseArraySize() {
124156
this._size = this._size * 2;
125157
const tempArr = this._array.slice();
126-
this._array = new Uint8Array(Math.ceil(this._size/this._bitPerIndex));
127-
this._array = tempArr.slice();
158+
this._array = new Uint8Array(this._size);
159+
tempArr.forEach((value, index) => this._array[index] = value);
128160
}
129161
};

0 commit comments

Comments
 (0)