summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-12-07 23:29:36 +0800
committerruki <[email protected]>2019-12-07 23:29:36 +0800
commitc369affce79c1c009fcb18f92cd4ee2757466330 (patch)
treee278094904724f5eef24be8fce482d38c0b9cc6d
parentcefbcff637ee2652f9572845e9f758e188a45923 (diff)
add timer
-rw-r--r--xmake/core/base/heap.lua6
-rw-r--r--xmake/core/base/timer.lua59
-rw-r--r--xmake/core/sandbox/modules/import/core/base/timer.lua22
3 files changed, 84 insertions, 3 deletions
diff --git a/xmake/core/base/heap.lua b/xmake/core/base/heap.lua
index b4448f62d..9b002533e 100644
--- a/xmake/core/base/heap.lua
+++ b/xmake/core/base/heap.lua
@@ -16,7 +16,7 @@ local ffi --init on demand so that the module can be used without luajit
local assert, floor = assert, math.floor
-- heap algorithm working over abstract API that counts from one.
-function heap.makeheap(add, remove, swap, length, cmp)
+function heap._make(add, remove, swap, length, cmp)
local function moveup(child)
local parent = floor(child / 2)
@@ -78,7 +78,7 @@ function heap.cdataheap(h)
local cmp = h.cmp and
function(i, j) return h.cmp(t[i], t[j]) end or
function(i, j) return t[i] < t[j] end
- local push, pop, rebalance = heap.makeheap(add, rem, swap, length, cmp)
+ local push, pop, rebalance = heap._make(add, rem, swap, length, cmp)
local function get(i, box)
assert(i >= 1 and i <= n, "invalid index")
@@ -121,7 +121,7 @@ function heap.valueheap(h)
local cmp = h.cmp and
function(i, j) return h.cmp(t[i], t[j]) end or
function(i, j) return t[i] < t[j] end
- local push, pop, rebalance = heap.makeheap(add, rem, swap, length, cmp)
+ local push, pop, rebalance = heap._make(add, rem, swap, length, cmp)
local function get(i)
assert(i >= 1 and i <= n, "invalid index")
diff --git a/xmake/core/base/timer.lua b/xmake/core/base/timer.lua
new file mode 100644
index 000000000..49dd6be5d
--- /dev/null
+++ b/xmake/core/base/timer.lua
@@ -0,0 +1,59 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015 - 2019, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file timer.lua
+--
+
+-- load modules
+local heap = require("base/heap")
+local object = require("base/object")
+
+-- define module: timer
+local timer = timer or object()
+
+-- get all timer tasks
+function timer:_tasks()
+ return self._TASKS
+end
+
+-- post timer task at the absolute time and will be auto-remove it after be expired
+function timer:post_at(when, period, repeat, task)
+ -- TODO
+end
+
+-- get timer name
+function timer:name()
+ return self._NAME
+end
+
+-- init timer
+function timer:init(name)
+ self._NAME = name
+ self._TASKS = heap.valueheap {cmp = function(a, b)
+ return a.when < b.when
+ end}
+end
+
+-- new timer
+function timer:new(name)
+ self = self()
+ self:init(name)
+ return self
+end
+
+-- return module: timer
+return timer
diff --git a/xmake/core/sandbox/modules/import/core/base/timer.lua b/xmake/core/sandbox/modules/import/core/base/timer.lua
new file mode 100644
index 000000000..ab5d202a4
--- /dev/null
+++ b/xmake/core/sandbox/modules/import/core/base/timer.lua
@@ -0,0 +1,22 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015 - 2019, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file timer.lua
+--
+
+-- return module
+return require("base/timer")