Skip to content

Commit ba7b1fd

Browse files
authored
Merge pull request #5 from adhocore/develop
Develop
2 parents 659683f + b2f88af commit ba7b1fd

9 files changed

+528
-116
lines changed

src/Underscore.php

+45-47
Original file line numberDiff line numberDiff line change
@@ -2,77 +2,75 @@
22

33
namespace Ahc\Underscore;
44

5-
final class Underscore extends UnderscoreArray
5+
final class Underscore extends UnderscoreFunction
66
{
77
/**
8-
* Returns a callable which when invoked caches the result for given arguments
9-
* and reuses that result in subsequent calls.
8+
* Generates a function that always returns a constant value.
109
*
11-
* @param callable $fn The main callback.
10+
* @param mixed $value
1211
*
13-
* @return mixed
12+
* @return callable
1413
*/
15-
public function memoize(callable $fn)
14+
public function constant($value)
1615
{
17-
static $memo = [];
18-
19-
return function () use (&$memo, $fn) {
20-
$hash = \md5(\json_encode($args = \func_get_args()));
21-
22-
if (isset($memo[$hash])) {
23-
return $memo[$hash];
24-
}
25-
26-
return $memo[$hash] = \call_user_func_array($fn, $args);
16+
return function () use ($value) {
17+
return $value;
2718
};
2819
}
2920

3021
/**
31-
* Cache the result of callback for given arguments and reuse that in subsequent call.
22+
* No operation!
3223
*
33-
* @param callable $fn The main callback.
34-
* @param int $wait The time to wait in millisec.
35-
*
36-
* @return mixed
24+
* @return void
3725
*/
38-
public function delay(callable $fn, $wait)
26+
public function noop()
3927
{
40-
return function () use ($fn, $wait) {
41-
\usleep(1000 * $wait);
42-
43-
return \call_user_func_array($fn, \func_get_args());
44-
};
28+
// ;)
4529
}
4630

4731
/**
48-
* Returns a callable that wraps given callable which can be only invoked
49-
* at most once per given $wait threshold.
32+
* Run callable n times and create new collection.
5033
*
51-
* @param callable $fn The main callback.
52-
* @param int $wait The callback will only be triggered at most once within this period.
34+
* @param int $n
35+
* @param callable $fn
5336
*
54-
* @return mixed The return set of callback if runnable else the previous cache.
37+
* @return self
5538
*/
56-
public function throttle(callable $fn, $wait)
39+
public function times($n, callable $fn)
5740
{
58-
static $previous = 0;
59-
static $result = null;
41+
$data = [];
6042

61-
return function () use ($fn, &$previous, &$result, &$wait) {
62-
$now = $this->now();
43+
for ($i = 0; $i < $n; $i++) {
44+
$data[$i] = $fn($i);
45+
}
6346

64-
if (!$previous) {
65-
$previous = $now;
66-
}
47+
return new static($data);
48+
}
6749

68-
$remaining = $wait - ($now - $previous);
50+
/**
51+
* Return a random integer between min and max (inclusive).
52+
*
53+
* @param int $min
54+
* @param int $max
55+
*
56+
* @return int
57+
*/
58+
public function random($min, $max)
59+
{
60+
return \mt_rand($min, $max);
61+
}
6962

70-
if ($remaining <= 0 || $remaining > $wait) {
71-
$previous = $now;
72-
$result = \call_user_func_array($fn, \func_get_args());
73-
}
63+
/**
64+
* Generate unique ID (unique for current go/session).
65+
*
66+
* @param string $prefix
67+
*
68+
* @return string
69+
*/
70+
public function uniqueId($prefix = '')
71+
{
72+
static $id = 0;
7473

75-
return $result;
76-
};
74+
return $prefix . (++$id);
7775
}
7876
}

src/UnderscoreArray.php

+61-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ public function first($n = 1)
1818

1919
/**
2020
* Alias of first().
21+
*
22+
* @param int $n
23+
*
24+
* @return array
2125
*/
2226
public function head($n = 1)
2327
{
@@ -26,6 +30,10 @@ public function head($n = 1)
2630

2731
/**
2832
* Alias of first().
33+
*
34+
* @param int $n
35+
*
36+
* @return array
2937
*/
3038
public function take($n = 1)
3139
{
@@ -46,6 +54,10 @@ public function last($n = 1)
4654

4755
/**
4856
* Alias of last().
57+
*
58+
* @param int $n
59+
*
60+
* @return array
4961
*/
5062
public function tail($n = 1)
5163
{
@@ -54,6 +66,10 @@ public function tail($n = 1)
5466

5567
/**
5668
* Alias of last().
69+
*
70+
* @param int $n
71+
*
72+
* @return array
5773
*/
5874
public function drop($n = 1)
5975
{
@@ -106,7 +122,7 @@ public function flatten()
106122
/**
107123
* Gets the unique items using the id resulted from callback.
108124
*
109-
* @param callback|string $fn The callback. String is resolved to value of that index.
125+
* @param callable|string $fn The callback. String is resolved to value of that index.
110126
*
111127
* @return self
112128
*/
@@ -126,6 +142,10 @@ public function unique($fn = null)
126142

127143
/**
128144
* Alias of unique().
145+
*
146+
* @param callable|string $fn The callback. String is resolved to value of that index.
147+
*
148+
* @return self
129149
*/
130150
public function uniq($fn = null)
131151
{
@@ -149,7 +169,11 @@ public function difference($data)
149169
}
150170

151171
/**
152-
* Alias of without().
172+
* Alias of difference().
173+
*
174+
* @param array|mixed $data Array or array like or array convertible.
175+
*
176+
* @return self
153177
*/
154178
public function without($data)
155179
{
@@ -203,7 +227,7 @@ public function zip($data)
203227
/**
204228
* Hydrate the items into given class or stdClass.
205229
*
206-
* @param string $className FQCN of the class whose constructor accepts two parameters: value and index.
230+
* @param string|null $className FQCN of the class whose constructor accepts two parameters: value and index.
207231
*
208232
* @return self
209233
*/
@@ -221,19 +245,19 @@ public function object($className = null)
221245
*
222246
* @return mixed|null
223247
*/
224-
public function firstIndex($fn = null)
248+
public function findIndex($fn = null)
225249
{
226250
return $this->find($this->valueFn($fn), false);
227251
}
228252

229253
/**
230-
* Find the larst index that passes given truth test.
254+
* Find the last index that passes given truth test.
231255
*
232256
* @param callable $fn The truth test callback.
233257
*
234258
* @return mixed|null
235259
*/
236-
public function lastIndex($fn = null)
260+
public function findLastIndex($fn = null)
237261
{
238262
return (new static(\array_reverse($this->data, true)))->find($this->valueFn($fn), false);
239263
}
@@ -262,6 +286,37 @@ public function lastIndexOf($value)
262286
return (false === $index = \array_search($value, \array_reverse($this->data, true))) ? null : $index;
263287
}
264288

289+
/**
290+
* Gets the smallest index at which an object should be inserted so as to maintain order.
291+
*
292+
* Note that the initial stack must be sorted already.
293+
*
294+
* @param $object The new object which needs to be adjusted in stack.
295+
* @param callable|string $fn The comparator callback.
296+
*
297+
* @return string|int|null
298+
*/
299+
public function sortedIndex($object, $fn)
300+
{
301+
$low = 0;
302+
$high = $this->count();
303+
$data = $this->values();
304+
$fn = $this->valueFn($fn);
305+
$value = $fn($object);
306+
$keys = $this->keys();
307+
308+
while ($low < $high) {
309+
$mid = \intval(($low + $high) / 2);
310+
if ($fn($data[$mid]) < $value) {
311+
$low = $mid + 1;
312+
} else {
313+
$high = $mid;
314+
}
315+
}
316+
317+
return isset($keys[$low]) ? $keys[$low] : null;
318+
}
319+
265320
/**
266321
* Creates a new range from start to stop with given step.
267322
*

src/UnderscoreBase.php

+73-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44

55
class UnderscoreBase implements \ArrayAccess, \Countable, \IteratorAggregate, \JsonSerializable
66
{
7-
const VERSION = '0.0.1';
7+
const VERSION = '0.0.2';
88

99
/** @var array The array manipulated by this Underscore instance */
1010
protected $data;
1111

12+
/** @var array Custom userland functionality through named callbacks */
13+
protected static $mixins = [];
14+
1215
/**
1316
* Constructor.
1417
*
@@ -205,6 +208,8 @@ public function count()
205208

206209
/**
207210
* Alias of count().
211+
*
212+
* @return int
208213
*/
209214
public function size()
210215
{
@@ -328,10 +333,76 @@ public function omit($index)
328333
return $this->pick($indices);
329334
}
330335

336+
/**
337+
* Creates a shallow copy.
338+
*
339+
* @return self
340+
*/
341+
public function clon()
342+
{
343+
return clone $this;
344+
}
345+
346+
/**
347+
* Invokes callback fn with clone and returns original self.
348+
*
349+
* @param callable $fn
350+
*
351+
* @return self
352+
*/
353+
public function tap(callable $fn)
354+
{
355+
$fn($this->clon());
356+
357+
return $this;
358+
}
359+
360+
/**
361+
* Adds a custom handler/method to instance. The handler is bound to this instance.
362+
*
363+
* @param string $name
364+
* @param \Closure $fn
365+
*
366+
* @return self
367+
*/
368+
public static function mixin($name, \Closure $fn)
369+
{
370+
static::$mixins[$name] = $fn;
371+
}
372+
373+
/**
374+
* Calls the registered mixin by its name.
375+
*
376+
* @param string $name
377+
* @param array $args
378+
*
379+
* @return self
380+
*/
381+
public function __call($method, $args)
382+
{
383+
if (isset(static::$mixins[$method])) {
384+
$method = \Closure::bind(static::$mixins[$method], $this);
385+
386+
return $method($args);
387+
}
388+
389+
throw new UnderscoreException("The mixin with name '$method' is not defined");
390+
}
391+
392+
/**
393+
* Get string value (JSON representation) of this instance.
394+
*
395+
* @return string
396+
*/
397+
public function valueOf()
398+
{
399+
return (string) $this;
400+
}
401+
331402
/**
332403
* A static shortcut to constructor.
333404
*
334-
* @param mixed $data
405+
* @param array|mixed $data Array or array like or array convertible.
335406
*
336407
* @return self
337408
*/

0 commit comments

Comments
 (0)