Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F7187740
some.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
some.js
View Options
/**
* The MIT License (MIT)
*
* Copyright (c) 2014 Petka Antonov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:</p>
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
"use strict"
;
module
.
exports
=
function
(
Promise
,
PromiseArray
,
apiRejection
)
{
var
util
=
require
(
"./util.js"
);
var
RangeError
=
require
(
"./errors.js"
).
RangeError
;
var
AggregateError
=
require
(
"./errors.js"
).
AggregateError
;
var
isArray
=
util
.
isArray
;
function
SomePromiseArray
(
values
)
{
this
.
constructor
$
(
values
);
this
.
_howMany
=
0
;
this
.
_unwrap
=
false
;
this
.
_initialized
=
false
;
}
util
.
inherits
(
SomePromiseArray
,
PromiseArray
);
SomePromiseArray
.
prototype
.
_init
=
function
SomePromiseArray$_init
()
{
if
(
!
this
.
_initialized
)
{
return
;
}
if
(
this
.
_howMany
===
0
)
{
this
.
_resolve
([]);
return
;
}
this
.
_init$
(
void
0
,
-
5
);
var
isArrayResolved
=
isArray
(
this
.
_values
);
if
(
!
this
.
_isResolved
()
&&
isArrayResolved
&&
this
.
_howMany
>
this
.
_canPossiblyFulfill
())
{
this
.
_reject
(
this
.
_getRangeError
(
this
.
length
()));
}
};
SomePromiseArray
.
prototype
.
init
=
function
SomePromiseArray$init
()
{
this
.
_initialized
=
true
;
this
.
_init
();
};
SomePromiseArray
.
prototype
.
setUnwrap
=
function
SomePromiseArray$setUnwrap
()
{
this
.
_unwrap
=
true
;
};
SomePromiseArray
.
prototype
.
howMany
=
function
SomePromiseArray$howMany
()
{
return
this
.
_howMany
;
};
SomePromiseArray
.
prototype
.
setHowMany
=
function
SomePromiseArray$setHowMany
(
count
)
{
if
(
this
.
_isResolved
())
return
;
this
.
_howMany
=
count
;
};
SomePromiseArray
.
prototype
.
_promiseFulfilled
=
function
SomePromiseArray$_promiseFulfilled
(
value
)
{
if
(
this
.
_isResolved
())
return
;
this
.
_addFulfilled
(
value
);
if
(
this
.
_fulfilled
()
===
this
.
howMany
())
{
this
.
_values
.
length
=
this
.
howMany
();
if
(
this
.
howMany
()
===
1
&&
this
.
_unwrap
)
{
this
.
_resolve
(
this
.
_values
[
0
]);
}
else
{
this
.
_resolve
(
this
.
_values
);
}
}
};
SomePromiseArray
.
prototype
.
_promiseRejected
=
function
SomePromiseArray$_promiseRejected
(
reason
)
{
if
(
this
.
_isResolved
())
return
;
this
.
_addRejected
(
reason
);
if
(
this
.
howMany
()
>
this
.
_canPossiblyFulfill
())
{
var
e
=
new
AggregateError
();
for
(
var
i
=
this
.
length
();
i
<
this
.
_values
.
length
;
++
i
)
{
e
.
push
(
this
.
_values
[
i
]);
}
this
.
_reject
(
e
);
}
};
SomePromiseArray
.
prototype
.
_fulfilled
=
function
SomePromiseArray$_fulfilled
()
{
return
this
.
_totalResolved
;
};
SomePromiseArray
.
prototype
.
_rejected
=
function
SomePromiseArray$_rejected
()
{
return
this
.
_values
.
length
-
this
.
length
();
};
SomePromiseArray
.
prototype
.
_addRejected
=
function
SomePromiseArray$_addRejected
(
reason
)
{
this
.
_values
.
push
(
reason
);
};
SomePromiseArray
.
prototype
.
_addFulfilled
=
function
SomePromiseArray$_addFulfilled
(
value
)
{
this
.
_values
[
this
.
_totalResolved
++
]
=
value
;
};
SomePromiseArray
.
prototype
.
_canPossiblyFulfill
=
function
SomePromiseArray$_canPossiblyFulfill
()
{
return
this
.
length
()
-
this
.
_rejected
();
};
SomePromiseArray
.
prototype
.
_getRangeError
=
function
SomePromiseArray$_getRangeError
(
count
)
{
var
message
=
"Input array must contain at least "
+
this
.
_howMany
+
" items but contains only "
+
count
+
" items"
;
return
new
RangeError
(
message
);
};
SomePromiseArray
.
prototype
.
_resolveEmptyArray
=
function
SomePromiseArray$_resolveEmptyArray
()
{
this
.
_reject
(
this
.
_getRangeError
(
0
));
};
function
Promise
$_Some
(
promises
,
howMany
)
{
if
((
howMany
|
0
)
!==
howMany
||
howMany
<
0
)
{
return
apiRejection
(
"expecting a positive integer"
);
}
var
ret
=
new
SomePromiseArray
(
promises
);
var
promise
=
ret
.
promise
();
if
(
promise
.
isRejected
())
{
return
promise
;
}
ret
.
setHowMany
(
howMany
);
ret
.
init
();
return
promise
;
}
Promise
.
some
=
function
Promise
$Some
(
promises
,
howMany
)
{
return
Promise
$_Some
(
promises
,
howMany
);
};
Promise
.
prototype
.
some
=
function
Promise
$some
(
howMany
)
{
return
Promise
$_Some
(
this
,
howMany
);
};
Promise
.
_SomePromiseArray
=
SomePromiseArray
;
};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jul 8, 07:03 (3 h, 13 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
806025
Default Alt Text
some.js (4 KB)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment