]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

{luatz,doc}/gettime: Add ljsyscall as a source. Better docs.
authordaurnimator <quae@daurnimator.com>
Tue, 15 Jul 2014 22:12:27 +0000 (18:12 -0400)
committerdaurnimator <quae@daurnimator.com>
Tue, 15 Jul 2014 22:12:27 +0000 (18:12 -0400)
doc/gettime.md
luatz/gettime.lua

index 758be60393f9f1656a79a5b194fa47a6dd2476a3..2e3ef354417693ea76523c800c4c7de25586d9ba 100644 (file)
@@ -2,10 +2,22 @@
 
 A module to get the current time.
 
+Uses the most precise method available (in order:)
 
-## `gettime ( )`
+  - Use [ljsyscall](http://www.myriabit.com/ljsyscall/) to access
+         - `clock_gettime(2)` called with `CLOCK_REALTIME`
+         - `gettimeofday(2)`
+  - [luasocket](http://w3.impa.br/~diego/software/luasocket/)'s `socket.gettime`
+  - [`os.time`](http://www.lua.org/manual/5.2/manual.html#pdf-os.time)
 
-Uses the most precise method available (in order:)
+## `source`
+
+The library/function currently in use.
+
+## `resolution`
+
+The smallest time resolution (in seconds) available from `gettime ( )` .
+
+## `gettime ( )`
 
-  - luasocket's `socket.gettime`
-  - `os.time`
+Returns the number of seconds since unix epoch (1970-01-01T00:00:00Z) as a lua number
index a86829e43f7eafee1a8d05dfef3410413c8189b9..008e95cb57991e0c6971781048afaf863a52a2f2 100644 (file)
@@ -1,10 +1,38 @@
 local _M = { }
 
-local has_socket , socket = pcall ( require , "socket" )
-if has_socket then
-       _M.gettime = socket.gettime
-else
-       _M.gettime = os.time
-end
+_M.source , _M.resolution , _M.gettime = (function()
+       local has_syscall , syscall = pcall ( require , "syscall" )
+       if has_syscall then
+               if syscall.clock_gettime then
+                       local clock_id = syscall.c.CLOCK.REALTIME
+                       local function timespec_to_number ( timespec )
+                               return tonumber ( timespec.tv_sec ) + tonumber ( timespec.tv_nsec ) * 1e-9
+                       end
+                       return "syscall.clock_gettime(CLOCK_REALTIME)" ,
+                               syscall.clock_getres and timespec_to_number ( syscall.clock_getres ( clock_id ) ) or 1e-9 ,
+                               function ( )
+                                       return timespec_to_number ( syscall.clock_gettime ( clock_id ) )
+                               end
+
+               elseif syscall.gettimeofday then
+                       local function timeval_to_number ( timeval )
+                               return tonumber ( timeval.tv_sec ) + tonumber ( timeval.tv_nsec ) * 1e-6
+                       end
+                       return "syscall.gettimeofday()" , 1e-6 ,
+                               function ( )
+                                       return timeval_to_number ( syscall.gettimeofday ( ) )
+                               end
+               end
+       end
+
+       local has_socket , socket = pcall ( require , "socket" )
+       if has_socket and socket.gettime then
+               -- on windows, this uses GetSystemTimeAsFileTime, which has resolution of 1e-7
+               -- on linux, this uses gettimeofday, which has resolution of 1e-6
+               return "socket.gettime()" , 1e-6 , socket.gettime
+       end
+
+       return "os.time()" , 1 , os.time
+end)()
 
 return _M