speaker-calibration 2.2.256 → 2.2.258
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +71 -71
- package/.eslintrc.json +40 -40
- package/.gitignore +81 -0
- package/.prettierignore +69 -69
- package/.prettierrc +14 -14
- package/LICENSE +20 -20
- package/README.md +133 -133
- package/__mocks__/fileMock.js +1 -1
- package/__mocks__/styleMock.js +1 -1
- package/babel.config.js +3 -3
- package/coverage/clover.xml +71 -71
- package/coverage/coverage-final.json +224 -224
- package/coverage/lcov-report/PythonServerInterface.js.html +265 -265
- package/coverage/lcov-report/base.css +354 -354
- package/coverage/lcov-report/block-navigation.js +82 -82
- package/coverage/lcov-report/index.html +123 -123
- package/coverage/lcov-report/prettify.css +101 -101
- package/coverage/lcov-report/prettify.js +937 -937
- package/coverage/lcov-report/sorter.js +189 -189
- package/coverage/lcov-report/src/index.html +121 -121
- package/coverage/lcov-report/src/server/PythonServerInterface.js.html +268 -268
- package/coverage/lcov-report/src/server/index.html +123 -123
- package/coverage/lcov-report/src/tasks/audioCalibrator.js.html +499 -499
- package/coverage/lcov-report/src/tasks/audioRecorder.js.html +412 -412
- package/coverage/lcov-report/src/tasks/index.html +143 -143
- package/coverage/lcov-report/src/tasks/volume/index.html +123 -123
- package/coverage/lcov-report/src/tasks/volume/volume.js.html +409 -409
- package/coverage/lcov-report/src/utils.js.html +172 -172
- package/coverage/lcov.info +91 -91
- package/dist/example/NoSleep.min.js +1 -1
- package/dist/example/fetch-languages-sheets.js +77 -77
- package/dist/example/i18n.js +29038 -29654
- package/dist/example/index.html +47 -47
- package/dist/example/listener.html +81 -81
- package/dist/example/server.js +51 -51
- package/dist/example/speaker.html +145 -145
- package/dist/example/speakerUI.js +273 -273
- package/dist/example/styles.css +152 -152
- package/dist/listener.js +3 -3
- package/dist/main.js +9 -9
- package/dist/mlsGen.js +6814 -6814
- package/dist/mlsGen.wasm +0 -0
- package/dist/package-lock.json +1018 -1018
- package/dist/package.json +18 -18
- package/dist/phonePeer.js +3 -3
- package/doc/AudioCalibrator.html +417 -417
- package/doc/AudioPeer.html +251 -251
- package/doc/AudioRecorder.html +195 -195
- package/doc/ImpulseResponse.html +215 -215
- package/doc/Listener.html +308 -308
- package/doc/MlsGenInterface.html +226 -226
- package/doc/MyEventEmitter.html +274 -274
- package/doc/PythonServerAPI.html +109 -109
- package/doc/Speaker.html +276 -276
- package/doc/Takes%20a%20target%20element%20where%20html%20elements%20will%20be%20appended..html +128 -128
- package/doc/Takes%20the%20url%20of%20the%20current%20site%0Aand%20a%20target%20element%20where%20html%20elements%20will%20be%20appended..html +138 -138
- package/doc/Takes%20the%20url%20of%20the%20current%20site%20and%20a%20target%20element%20where%20html%20elements%20will%20be%20appended..html +137 -137
- package/doc/Volume.html +88 -88
- package/doc/audioCalibrator.js.html +179 -179
- package/doc/audioPeer.js.html +175 -175
- package/doc/audioRecorder.js.html +163 -163
- package/doc/creates%20a%20new%20AudioRecorder%20instance.%20%0ASets%20up%20the%20audio%20context%20and%20file%20reader..html +114 -114
- package/doc/fonts/OpenSans-Bold-webfont.svg +1829 -1829
- package/doc/fonts/OpenSans-BoldItalic-webfont.svg +1829 -1829
- package/doc/fonts/OpenSans-Italic-webfont.svg +1829 -1829
- package/doc/fonts/OpenSans-Light-webfont.svg +1830 -1830
- package/doc/fonts/OpenSans-LightItalic-webfont.svg +1834 -1834
- package/doc/fonts/OpenSans-Regular-webfont.svg +1830 -1830
- package/doc/global.html +308 -308
- package/doc/index.html +58 -58
- package/doc/listener.js.html +170 -170
- package/doc/mlsGen_mlsGenInterface.js.html +117 -117
- package/doc/myEventEmitter.js.html +124 -124
- package/doc/peer-connection_audioPeer.js.html +188 -188
- package/doc/peer-connection_listener.js.html +311 -311
- package/doc/peer-connection_speaker.js.html +381 -381
- package/doc/scripts/linenumber.js +25 -25
- package/doc/scripts/prettify/Apache-License-2.0.txt +202 -202
- package/doc/scripts/prettify/lang-css.js +24 -24
- package/doc/scripts/prettify/prettify.js +640 -640
- package/doc/server_PythonServerAPI.js.html +160 -160
- package/doc/speaker.js.html +248 -248
- package/doc/styles/jsdoc-default.css +371 -371
- package/doc/styles/prettify-jsdoc.css +111 -111
- package/doc/styles/prettify-tomorrow.css +163 -163
- package/doc/tasks_audioCalibrator.js.html +207 -207
- package/doc/tasks_audioRecorder.js.html +190 -190
- package/doc/tasks_impulse-response_impulseResponse.js.html +442 -442
- package/doc/tasks_impulse-response_mlsGen_mlsGenInterface.js.html +175 -175
- package/doc/tasks_volume_volume.js.html +185 -185
- package/doc/utils.js.html +105 -105
- package/jest.config.js +173 -173
- package/netlify.toml +26 -26
- package/package.json +78 -78
- package/src/config/firebase.js +26 -26
- package/src/index.html +21 -21
- package/src/listener-app/PhonePeer.js +499 -499
- package/src/listener-app/listener.js +380 -380
- package/src/main.js +22 -22
- package/src/myEventEmitter.js +83 -83
- package/src/peer-connection/audioPeer.js +100 -100
- package/src/peer-connection/listener.js +298 -298
- package/src/peer-connection/peerErrors.js +25 -25
- package/src/peer-connection/speaker.js +983 -983
- package/src/powerCheck.js +110 -110
- package/src/server/PythonServerAPI.js +1001 -1001
- package/src/tasks/combination/combination.js +3935 -3918
- package/src/tasks/combination/mlsGen/mlsGen.cpp +98 -98
- package/src/tasks/combination/mlsGen/mlsGen.hpp +303 -303
- package/src/tasks/combination/mlsGen/mlsGenInterface.js +131 -131
- package/src/tasks/combination/mlsGen/mlsGenTest.cpp +180 -180
- package/src/tasks/impulse-response/impulseResponse.js +610 -610
- package/src/tasks/impulse-response/mlsGen/mlsGen.cpp +98 -98
- package/src/tasks/impulse-response/mlsGen/mlsGen.hpp +303 -303
- package/src/tasks/impulse-response/mlsGen/mlsGenInterface.js +131 -131
- package/src/tasks/impulse-response/mlsGen/mlsGenTest.cpp +180 -180
- package/src/tasks/volume/volume.cpp +2 -2
- package/src/tasks/volume/volume.hpp +22 -22
- package/src/tasks/volume/volume.js +279 -279
- package/src/utils.js +215 -205
- package/webpack.config.js +65 -65
- package/.github/workflows/update-phrases.yml +0 -37
- package/makefile +0 -74
package/README.md
CHANGED
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
# Speaker-Calibration
|
|
2
|
-
|
|
3
|
-
Speaker-Calibration provides a simple API for performing speaker calibration in Javascript. The
|
|
4
|
-
Library has minimal dependencies and is designed to be used in the browser.
|
|
5
|
-
|
|
6
|
-
[](https://app.netlify.com/sites/focused-hodgkin-0a6531/deploys)
|
|
7
|
-
|
|
8
|
-
## Usage
|
|
9
|
-
|
|
10
|
-
```html
|
|
11
|
-
<!-- index.html --->
|
|
12
|
-
...
|
|
13
|
-
<body>
|
|
14
|
-
...
|
|
15
|
-
<script src="https://unpkg.com/speaker-calibration@1.4.1/dist/main.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
```javascript
|
|
20
|
-
// speaker.js
|
|
21
|
-
|
|
22
|
-
// initialize the chosen calibrator with the paramters, or pass no paramters to use default settings
|
|
23
|
-
const calibrator = new ImpulseResponseCalibration({
|
|
24
|
-
numCaptures: 3,
|
|
25
|
-
numMLSPerCapture: 3,
|
|
26
|
-
download: false,
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
// pass the calibrator and speaker paramters to the startCalibration method (async)
|
|
30
|
-
const invertedIR = await Speaker.startCalibration(
|
|
31
|
-
{
|
|
32
|
-
siteUrl: window.location.href.substring(0, location.href.lastIndexOf('/')),
|
|
33
|
-
targetElementId: 'display',
|
|
34
|
-
},
|
|
35
|
-
calibrator
|
|
36
|
-
);
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
```javascript
|
|
40
|
-
// listener.js
|
|
41
|
-
|
|
42
|
-
window.listener = new speakerCalibrator.Listener({
|
|
43
|
-
targetElementId: 'display',
|
|
44
|
-
});
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## UML Design
|
|
48
|
-
|
|
49
|
-

|
|
50
|
-
|
|
51
|
-
## Impulse Response Calibration Logic
|
|
52
|
-
|
|
53
|
-

|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
|
-
## Contribution Guidelines
|
|
58
|
-
|
|
59
|
-
_As of 07/29/2022_
|
|
60
|
-
|
|
61
|
-
### Initial Setup
|
|
62
|
-
|
|
63
|
-
1. `git clone https://github.com/EasyEyes/speaker-calibration.git`
|
|
64
|
-
2. `cd speaker-calibration`
|
|
65
|
-
3. `npm i`
|
|
66
|
-
|
|
67
|
-
All outputs from the scripts/recipies below should be automatically placed in the `/dist` directory.
|
|
68
|
-
This is what will be served once the library is published.
|
|
69
|
-
|
|
70
|
-
#### Example
|
|
71
|
-
|
|
72
|
-
In `/dist/example` you will find a small example app that uses the `speaker-calibration` library.
|
|
73
|
-
|
|
74
|
-
#### Javascript
|
|
75
|
-
|
|
76
|
-
In `package.json` you will see some key scripts:
|
|
77
|
-
|
|
78
|
-
1. `build:prod` tells webpack to build the library in production mode, outputing to `/dist`
|
|
79
|
-
2. `build:dev` tells webpack to build the library in development watch mode, outputing to `/dist`
|
|
80
|
-
3. `build:dev:analyze` tells webpack to build the library in development mode and open up a bundle
|
|
81
|
-
analysis page. Helpful for viewing the size of the library, broken down by individual modules
|
|
82
|
-
and/or dependencies.
|
|
83
|
-
4. `serve:dev` spins up an `express.js` server on port `3000` using `nodemon`. It serves the
|
|
84
|
-
`/dist` & `/dist/example` folders.
|
|
85
|
-
5. `build:wasm` calls the makefile recipe to clean, and rebuild the web assembly code (requires
|
|
86
|
-
emscripten installed, more details below)
|
|
87
|
-
6. `lint` runs `eslint` on all js files in the project
|
|
88
|
-
7. `lint:fix` lints and automatically fixes all js files in the project.
|
|
89
|
-
8. `build:doc` builds the documentation using `jsdoc`. Outputs to `/doc`
|
|
90
|
-
|
|
91
|
-
Run `(2)` & `(3)` in seperate shell windows, with this setup you will be able to modify both the
|
|
92
|
-
library and front end examples with hot reload built in. Run `(7)` precommit to keep you code
|
|
93
|
-
standardized.
|
|
94
|
-
|
|
95
|
-
#### CPP/WASM
|
|
96
|
-
|
|
97
|
-
We are using [Emscripten](https://emscripten.org/) to compile the C++ code into a wasm file. Usage
|
|
98
|
-
requires the installation of the Emscriten compiler. Instructions can be found on their website. In
|
|
99
|
-
`makefile` you will see a few recipies:
|
|
100
|
-
|
|
101
|
-
- `mlsGen_bind` compiles the cpp files to wasm, generating a modularized javascript "glue" file,
|
|
102
|
-
using embind. This is the current build target
|
|
103
|
-
- `mlsGen_module` compiles the cpp files to wasm, generating a modularized javascript "glue" file.
|
|
104
|
-
- `mlsGen_wasm` compiles the cpp file to a stand-alone wasm without a javascript "clue" file.
|
|
105
|
-
- `clean` cleans up and generated code
|
|
106
|
-
- `rebuild` cleans and rebuilds the output. Run this after making changes to the cpp files.
|
|
107
|
-
|
|
108
|
-
#### Documentation
|
|
109
|
-
|
|
110
|
-
We use [jsdoc](https://jsdoc.app/) standards to document our library.
|
|
111
|
-
|
|
112
|
-
#### Linting
|
|
113
|
-
|
|
114
|
-
We use [ESLint](https://eslint.org/) to lint our code and enforce best practices. We are currently
|
|
115
|
-
using [AirBnB's JavaScript Style Guide](https://airbnb.io/javascript/)
|
|
116
|
-
|
|
117
|
-
#### Styling
|
|
118
|
-
|
|
119
|
-
We use [Prettier](https://prettier.io/) to format our code.
|
|
120
|
-
|
|
121
|
-
---
|
|
122
|
-
|
|
123
|
-
### Deployment
|
|
124
|
-
|
|
125
|
-
- Changes publshed to `main` will automatically trigger a deploy on the `netlify` project. This
|
|
126
|
-
deployment is only relevant to the `example` app, it will not make any changes to any others using
|
|
127
|
-
the library.
|
|
128
|
-
- `speaker-calibration` is library that is published to [npm](https://www.npmjs.com/). This means
|
|
129
|
-
that in order to make your changes 'live' a new version of the library needs to be published.
|
|
130
|
-
Conveniently, there exists an npm package [np](https://www.npmjs.com/package/np) which provides a
|
|
131
|
-
lot of helpful abstractions and UI elements when dealing with npm.
|
|
132
|
-
- Once a new version of the library is published, it is then live for anyone to use by bumping the
|
|
133
|
-
version they're using up to the newest release.
|
|
1
|
+
# Speaker-Calibration
|
|
2
|
+
|
|
3
|
+
Speaker-Calibration provides a simple API for performing speaker calibration in Javascript. The
|
|
4
|
+
Library has minimal dependencies and is designed to be used in the browser.
|
|
5
|
+
|
|
6
|
+
[](https://app.netlify.com/sites/focused-hodgkin-0a6531/deploys)
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
```html
|
|
11
|
+
<!-- index.html --->
|
|
12
|
+
...
|
|
13
|
+
<body>
|
|
14
|
+
...
|
|
15
|
+
<script src="https://unpkg.com/speaker-calibration@1.4.1/dist/main.js"></script>
|
|
16
|
+
</body>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
```javascript
|
|
20
|
+
// speaker.js
|
|
21
|
+
|
|
22
|
+
// initialize the chosen calibrator with the paramters, or pass no paramters to use default settings
|
|
23
|
+
const calibrator = new ImpulseResponseCalibration({
|
|
24
|
+
numCaptures: 3,
|
|
25
|
+
numMLSPerCapture: 3,
|
|
26
|
+
download: false,
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
// pass the calibrator and speaker paramters to the startCalibration method (async)
|
|
30
|
+
const invertedIR = await Speaker.startCalibration(
|
|
31
|
+
{
|
|
32
|
+
siteUrl: window.location.href.substring(0, location.href.lastIndexOf('/')),
|
|
33
|
+
targetElementId: 'display',
|
|
34
|
+
},
|
|
35
|
+
calibrator
|
|
36
|
+
);
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
```javascript
|
|
40
|
+
// listener.js
|
|
41
|
+
|
|
42
|
+
window.listener = new speakerCalibrator.Listener({
|
|
43
|
+
targetElementId: 'display',
|
|
44
|
+
});
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## UML Design
|
|
48
|
+
|
|
49
|
+

|
|
50
|
+
|
|
51
|
+
## Impulse Response Calibration Logic
|
|
52
|
+
|
|
53
|
+

|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Contribution Guidelines
|
|
58
|
+
|
|
59
|
+
_As of 07/29/2022_
|
|
60
|
+
|
|
61
|
+
### Initial Setup
|
|
62
|
+
|
|
63
|
+
1. `git clone https://github.com/EasyEyes/speaker-calibration.git`
|
|
64
|
+
2. `cd speaker-calibration`
|
|
65
|
+
3. `npm i`
|
|
66
|
+
|
|
67
|
+
All outputs from the scripts/recipies below should be automatically placed in the `/dist` directory.
|
|
68
|
+
This is what will be served once the library is published.
|
|
69
|
+
|
|
70
|
+
#### Example
|
|
71
|
+
|
|
72
|
+
In `/dist/example` you will find a small example app that uses the `speaker-calibration` library.
|
|
73
|
+
|
|
74
|
+
#### Javascript
|
|
75
|
+
|
|
76
|
+
In `package.json` you will see some key scripts:
|
|
77
|
+
|
|
78
|
+
1. `build:prod` tells webpack to build the library in production mode, outputing to `/dist`
|
|
79
|
+
2. `build:dev` tells webpack to build the library in development watch mode, outputing to `/dist`
|
|
80
|
+
3. `build:dev:analyze` tells webpack to build the library in development mode and open up a bundle
|
|
81
|
+
analysis page. Helpful for viewing the size of the library, broken down by individual modules
|
|
82
|
+
and/or dependencies.
|
|
83
|
+
4. `serve:dev` spins up an `express.js` server on port `3000` using `nodemon`. It serves the
|
|
84
|
+
`/dist` & `/dist/example` folders.
|
|
85
|
+
5. `build:wasm` calls the makefile recipe to clean, and rebuild the web assembly code (requires
|
|
86
|
+
emscripten installed, more details below)
|
|
87
|
+
6. `lint` runs `eslint` on all js files in the project
|
|
88
|
+
7. `lint:fix` lints and automatically fixes all js files in the project.
|
|
89
|
+
8. `build:doc` builds the documentation using `jsdoc`. Outputs to `/doc`
|
|
90
|
+
|
|
91
|
+
Run `(2)` & `(3)` in seperate shell windows, with this setup you will be able to modify both the
|
|
92
|
+
library and front end examples with hot reload built in. Run `(7)` precommit to keep you code
|
|
93
|
+
standardized.
|
|
94
|
+
|
|
95
|
+
#### CPP/WASM
|
|
96
|
+
|
|
97
|
+
We are using [Emscripten](https://emscripten.org/) to compile the C++ code into a wasm file. Usage
|
|
98
|
+
requires the installation of the Emscriten compiler. Instructions can be found on their website. In
|
|
99
|
+
`makefile` you will see a few recipies:
|
|
100
|
+
|
|
101
|
+
- `mlsGen_bind` compiles the cpp files to wasm, generating a modularized javascript "glue" file,
|
|
102
|
+
using embind. This is the current build target
|
|
103
|
+
- `mlsGen_module` compiles the cpp files to wasm, generating a modularized javascript "glue" file.
|
|
104
|
+
- `mlsGen_wasm` compiles the cpp file to a stand-alone wasm without a javascript "clue" file.
|
|
105
|
+
- `clean` cleans up and generated code
|
|
106
|
+
- `rebuild` cleans and rebuilds the output. Run this after making changes to the cpp files.
|
|
107
|
+
|
|
108
|
+
#### Documentation
|
|
109
|
+
|
|
110
|
+
We use [jsdoc](https://jsdoc.app/) standards to document our library.
|
|
111
|
+
|
|
112
|
+
#### Linting
|
|
113
|
+
|
|
114
|
+
We use [ESLint](https://eslint.org/) to lint our code and enforce best practices. We are currently
|
|
115
|
+
using [AirBnB's JavaScript Style Guide](https://airbnb.io/javascript/)
|
|
116
|
+
|
|
117
|
+
#### Styling
|
|
118
|
+
|
|
119
|
+
We use [Prettier](https://prettier.io/) to format our code.
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
### Deployment
|
|
124
|
+
|
|
125
|
+
- Changes publshed to `main` will automatically trigger a deploy on the `netlify` project. This
|
|
126
|
+
deployment is only relevant to the `example` app, it will not make any changes to any others using
|
|
127
|
+
the library.
|
|
128
|
+
- `speaker-calibration` is library that is published to [npm](https://www.npmjs.com/). This means
|
|
129
|
+
that in order to make your changes 'live' a new version of the library needs to be published.
|
|
130
|
+
Conveniently, there exists an npm package [np](https://www.npmjs.com/package/np) which provides a
|
|
131
|
+
lot of helpful abstractions and UI elements when dealing with npm.
|
|
132
|
+
- Once a new version of the library is published, it is then live for anyone to use by bumping the
|
|
133
|
+
version they're using up to the newest release.
|
package/__mocks__/fileMock.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = 'test-file-stub';
|
|
1
|
+
module.exports = 'test-file-stub';
|
package/__mocks__/styleMock.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = {};
|
|
1
|
+
module.exports = {};
|
package/babel.config.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
presets: [['@babel/preset-env', {targets: {node: 'current'}}]],
|
|
3
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
presets: [['@babel/preset-env', {targets: {node: 'current'}}]],
|
|
3
|
+
};
|
package/coverage/clover.xml
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="1650991329939" clover="3.2.0">
|
|
3
|
-
<project timestamp="1650991329939" name="All files">
|
|
4
|
-
<metrics statements="62" coveredstatements="45" conditionals="8" coveredconditionals="7" methods="6" coveredmethods="6" elements="76" coveredelements="58" complexity="0" loc="62" ncloc="62" packages="1" files="1" classes="1"/>
|
|
5
|
-
<file name="PythonServerInterface.js" path="/Users/hugo/Desktop/dev/easyeyes/speaker-calibration/src/server/PythonServerInterface.js">
|
|
6
|
-
<metrics statements="62" coveredstatements="45" conditionals="8" coveredconditionals="7" methods="6" coveredmethods="6"/>
|
|
7
|
-
<line num="1" count="1" type="stmt"/>
|
|
8
|
-
<line num="2" count="1" type="stmt"/>
|
|
9
|
-
<line num="3" count="1" type="stmt"/>
|
|
10
|
-
<line num="4" count="1" type="stmt"/>
|
|
11
|
-
<line num="5" count="1" type="stmt"/>
|
|
12
|
-
<line num="6" count="1" type="stmt"/>
|
|
13
|
-
<line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
14
|
-
<line num="8" count="1" type="stmt"/>
|
|
15
|
-
<line num="9" count="1" type="stmt"/>
|
|
16
|
-
<line num="10" count="1" type="stmt"/>
|
|
17
|
-
<line num="11" count="1" type="stmt"/>
|
|
18
|
-
<line num="12" count="1" type="stmt"/>
|
|
19
|
-
<line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
20
|
-
<line num="14" count="2" type="stmt"/>
|
|
21
|
-
<line num="15" count="2" type="stmt"/>
|
|
22
|
-
<line num="16" count="2" type="stmt"/>
|
|
23
|
-
<line num="17" count="2" type="stmt"/>
|
|
24
|
-
<line num="18" count="2" type="stmt"/>
|
|
25
|
-
<line num="19" count="2" type="stmt"/>
|
|
26
|
-
<line num="20" count="2" type="stmt"/>
|
|
27
|
-
<line num="21" count="2" type="stmt"/>
|
|
28
|
-
<line num="22" count="1" type="stmt"/>
|
|
29
|
-
<line num="23" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
30
|
-
<line num="24" count="1" type="stmt"/>
|
|
31
|
-
<line num="25" count="1" type="stmt"/>
|
|
32
|
-
<line num="26" count="1" type="stmt"/>
|
|
33
|
-
<line num="27" count="1" type="stmt"/>
|
|
34
|
-
<line num="28" count="1" type="stmt"/>
|
|
35
|
-
<line num="29" count="2" type="stmt"/>
|
|
36
|
-
<line num="30" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
37
|
-
<line num="31" count="1" type="stmt"/>
|
|
38
|
-
<line num="32" count="1" type="stmt"/>
|
|
39
|
-
<line num="33" count="1" type="stmt"/>
|
|
40
|
-
<line num="34" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
41
|
-
<line num="35" count="0" type="stmt"/>
|
|
42
|
-
<line num="36" count="0" type="stmt"/>
|
|
43
|
-
<line num="37" count="0" type="stmt"/>
|
|
44
|
-
<line num="38" count="0" type="stmt"/>
|
|
45
|
-
<line num="39" count="0" type="stmt"/>
|
|
46
|
-
<line num="40" count="0" type="stmt"/>
|
|
47
|
-
<line num="41" count="0" type="stmt"/>
|
|
48
|
-
<line num="42" count="0" type="stmt"/>
|
|
49
|
-
<line num="43" count="0" type="stmt"/>
|
|
50
|
-
<line num="44" count="0" type="stmt"/>
|
|
51
|
-
<line num="45" count="0" type="stmt"/>
|
|
52
|
-
<line num="46" count="0" type="stmt"/>
|
|
53
|
-
<line num="47" count="0" type="stmt"/>
|
|
54
|
-
<line num="48" count="2" type="stmt"/>
|
|
55
|
-
<line num="49" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
56
|
-
<line num="50" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
57
|
-
<line num="51" count="2" type="stmt"/>
|
|
58
|
-
<line num="52" count="2" type="stmt"/>
|
|
59
|
-
<line num="53" count="0" type="stmt"/>
|
|
60
|
-
<line num="54" count="0" type="stmt"/>
|
|
61
|
-
<line num="55" count="2" type="stmt"/>
|
|
62
|
-
<line num="56" count="0" type="stmt"/>
|
|
63
|
-
<line num="57" count="0" type="stmt"/>
|
|
64
|
-
<line num="58" count="2" type="stmt"/>
|
|
65
|
-
<line num="59" count="2" type="stmt"/>
|
|
66
|
-
<line num="60" count="1" type="stmt"/>
|
|
67
|
-
<line num="61" count="1" type="stmt"/>
|
|
68
|
-
<line num="62" count="1" type="stmt"/>
|
|
69
|
-
</file>
|
|
70
|
-
</project>
|
|
71
|
-
</coverage>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1650991329939" clover="3.2.0">
|
|
3
|
+
<project timestamp="1650991329939" name="All files">
|
|
4
|
+
<metrics statements="62" coveredstatements="45" conditionals="8" coveredconditionals="7" methods="6" coveredmethods="6" elements="76" coveredelements="58" complexity="0" loc="62" ncloc="62" packages="1" files="1" classes="1"/>
|
|
5
|
+
<file name="PythonServerInterface.js" path="/Users/hugo/Desktop/dev/easyeyes/speaker-calibration/src/server/PythonServerInterface.js">
|
|
6
|
+
<metrics statements="62" coveredstatements="45" conditionals="8" coveredconditionals="7" methods="6" coveredmethods="6"/>
|
|
7
|
+
<line num="1" count="1" type="stmt"/>
|
|
8
|
+
<line num="2" count="1" type="stmt"/>
|
|
9
|
+
<line num="3" count="1" type="stmt"/>
|
|
10
|
+
<line num="4" count="1" type="stmt"/>
|
|
11
|
+
<line num="5" count="1" type="stmt"/>
|
|
12
|
+
<line num="6" count="1" type="stmt"/>
|
|
13
|
+
<line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
14
|
+
<line num="8" count="1" type="stmt"/>
|
|
15
|
+
<line num="9" count="1" type="stmt"/>
|
|
16
|
+
<line num="10" count="1" type="stmt"/>
|
|
17
|
+
<line num="11" count="1" type="stmt"/>
|
|
18
|
+
<line num="12" count="1" type="stmt"/>
|
|
19
|
+
<line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
20
|
+
<line num="14" count="2" type="stmt"/>
|
|
21
|
+
<line num="15" count="2" type="stmt"/>
|
|
22
|
+
<line num="16" count="2" type="stmt"/>
|
|
23
|
+
<line num="17" count="2" type="stmt"/>
|
|
24
|
+
<line num="18" count="2" type="stmt"/>
|
|
25
|
+
<line num="19" count="2" type="stmt"/>
|
|
26
|
+
<line num="20" count="2" type="stmt"/>
|
|
27
|
+
<line num="21" count="2" type="stmt"/>
|
|
28
|
+
<line num="22" count="1" type="stmt"/>
|
|
29
|
+
<line num="23" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
30
|
+
<line num="24" count="1" type="stmt"/>
|
|
31
|
+
<line num="25" count="1" type="stmt"/>
|
|
32
|
+
<line num="26" count="1" type="stmt"/>
|
|
33
|
+
<line num="27" count="1" type="stmt"/>
|
|
34
|
+
<line num="28" count="1" type="stmt"/>
|
|
35
|
+
<line num="29" count="2" type="stmt"/>
|
|
36
|
+
<line num="30" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
37
|
+
<line num="31" count="1" type="stmt"/>
|
|
38
|
+
<line num="32" count="1" type="stmt"/>
|
|
39
|
+
<line num="33" count="1" type="stmt"/>
|
|
40
|
+
<line num="34" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
41
|
+
<line num="35" count="0" type="stmt"/>
|
|
42
|
+
<line num="36" count="0" type="stmt"/>
|
|
43
|
+
<line num="37" count="0" type="stmt"/>
|
|
44
|
+
<line num="38" count="0" type="stmt"/>
|
|
45
|
+
<line num="39" count="0" type="stmt"/>
|
|
46
|
+
<line num="40" count="0" type="stmt"/>
|
|
47
|
+
<line num="41" count="0" type="stmt"/>
|
|
48
|
+
<line num="42" count="0" type="stmt"/>
|
|
49
|
+
<line num="43" count="0" type="stmt"/>
|
|
50
|
+
<line num="44" count="0" type="stmt"/>
|
|
51
|
+
<line num="45" count="0" type="stmt"/>
|
|
52
|
+
<line num="46" count="0" type="stmt"/>
|
|
53
|
+
<line num="47" count="0" type="stmt"/>
|
|
54
|
+
<line num="48" count="2" type="stmt"/>
|
|
55
|
+
<line num="49" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
56
|
+
<line num="50" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
57
|
+
<line num="51" count="2" type="stmt"/>
|
|
58
|
+
<line num="52" count="2" type="stmt"/>
|
|
59
|
+
<line num="53" count="0" type="stmt"/>
|
|
60
|
+
<line num="54" count="0" type="stmt"/>
|
|
61
|
+
<line num="55" count="2" type="stmt"/>
|
|
62
|
+
<line num="56" count="0" type="stmt"/>
|
|
63
|
+
<line num="57" count="0" type="stmt"/>
|
|
64
|
+
<line num="58" count="2" type="stmt"/>
|
|
65
|
+
<line num="59" count="2" type="stmt"/>
|
|
66
|
+
<line num="60" count="1" type="stmt"/>
|
|
67
|
+
<line num="61" count="1" type="stmt"/>
|
|
68
|
+
<line num="62" count="1" type="stmt"/>
|
|
69
|
+
</file>
|
|
70
|
+
</project>
|
|
71
|
+
</coverage>
|