Skip to content

Commit e27a406

Browse files
author
d3x0r
committed
Default server accept port from command line
1 parent b1393e4 commit e27a406

File tree

2 files changed

+31
-83
lines changed

2 files changed

+31
-83
lines changed

apps/http-ws/imageLoader.js

+30-82
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,43 @@
1-
2-
export const moreWork = [];
3-
const requiredImages = [];
41
// can count required and retreived for a progresss bar indicator...
5-
const pendingLoad = [];
62
let didWork = false;
73
let useOrigin = null;
84

9-
//------------------------ Image Library ---------------------------------
10-
export function newImage(src) {
11-
var i = new Image();
12-
var timeout;
13-
if( src[0] !== '/' && src.substring(0,4)!='http' && useOrigin )
14-
src = useOrigin + src;
15-
i.crossOrigin = "Anonymous";
16-
i.onerror = (err)=>{
17-
console.log( "ERROR:", err );
18-
19-
}
20-
i.onload = ()=>{
21-
var pl = pendingLoad;
22-
const rii = requiredImages.indexOf( i );
23-
if( rii >= 0 )
24-
requiredImages.splice( rii,1);
25-
26-
if( pl.length ) {
27-
var pi = pl.shift();
28-
requiredImages.push( pi.i );
29-
//console.log( "loading:", pi.src );
30-
window.lastImage = pi.i;
31-
pi.i.src = pi.src;
32-
tick();
33-
pendingLoad = pl;
34-
//return;
35-
}
36-
37-
if( requiredImages.length == 0 )
38-
doWork();
39-
};
40-
i.onerror = ()=>{
41-
console.log( "Error result; removing item" );
42-
const rii = requiredImages.indexOf( i );
43-
if( rii >= 0 )
44-
requiredImages.splice( rii,1);
45-
if( requiredImages.length == 0 )
46-
doWork();
47-
48-
}
49-
50-
//if( pendingLoad.length ) { pendingLoad.push( {i:i,src:src} ); return i; }
51-
//if( requiredImages.length ) { pendingLoad.push({i:i,src:src}); return i; }
52-
i.src = src;
5+
let pending = [];
536

54-
if( requiredImages.length == 0 ) {
55-
if( didWork ) console.log( "Clearing that we did work already");
56-
didWork = false;
57-
}
58-
requiredImages.push( i );
59-
60-
return i;
7+
export async function wait() {
8+
await Promise.all( pending );
619
}
6210

11+
//------------------------ Image Library ---------------------------------
6312

6413
export function getImage(src) {
6514
return new Promise( (res,rej)=>{
66-
var i = new Image();
15+
const i = new Image();
16+
let resi;
17+
let pi = new Promise( (res,rej)=>{
18+
resi = i;
19+
} );
20+
if( src[0] !== '/' && src.substring(0,4)!='http' && useOrigin )
21+
src = useOrigin + src;
22+
i.crossOrigin = "Anonymous";
23+
i.onload = ()=>{
24+
const idx = pending.find( p=>p===pi );
25+
if( idx >= 0 ) pending.splice( idx, 1 );
26+
res( i );
27+
};
28+
i.onerror = ()=>{
29+
const idx = pending.find( p=>p===pi );
30+
if( idx >= 0 ) pending.splice( idx, 1 );
31+
rej( src, i );
32+
}
33+
i.src = src;
34+
pending.push(pi);
35+
} );
36+
}
37+
38+
export function getSound(src) {
39+
return new Promise( (res,rej)=>{
40+
var i = document.createElement( "AUDIO" );
6741
if( src[0] !== '/' && src.substring(0,4)!='http' && useOrigin )
6842
src = useOrigin + src;
6943
i.crossOrigin = "Anonymous";
@@ -121,32 +95,6 @@ export function newVideo(src) {
12195
return i;
12296
}
12397

124-
export function addWork( cb ) {
125-
if( !didWork && requiredImages.length )
126-
moreWork.push(cb);
127-
else
128-
cb();
129-
}
130-
131-
132-
async function doWork() {
133-
doOne(0);
134-
function doOne( n ){
135-
if( n < moreWork.length ){
136-
const w = moreWork[n];
137-
const result = w();
138-
if( result instanceof Promise )
139-
result.then( ()=>{
140-
doOne( n+1 );
141-
})
142-
else
143-
doOne( n+1 );
144-
}else {
145-
moreWork.length = 0;
146-
didWork = true;
147-
}
148-
}
149-
}
15098

15199
export function setOrigin( origin ) {
152100
useOrigin = origin;

apps/http-ws/serve.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import {openServer} from "./server.mjs"
22

33
openServer();
4-
console.log( "serving on?", process.env.PORT || 8080 );
4+
console.log( "serving on?", process.env.PORT || (process.argv.length > 2?Number(process.argv[2]) : 8080) );

0 commit comments

Comments
 (0)