ruby-monotonic 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1bd6d1ef5ec2b7bd902ba4fb93414ac2ffc23a502e647254bcdac6d5404d00ff
4
+ data.tar.gz: d39a17873611114952bf1e30c8f4c3ebe4abfa157c35a3a8a51b122f64514501
5
+ SHA512:
6
+ metadata.gz: a5521c12d14d03a8c37d1290afcb433ef756de407c567a115cf85de4caac8c615ffb725e461ddcdef9d2cffa690b8a676bed647ae2034487df8f6ce331e44afd
7
+ data.tar.gz: 3b631a8bb8221a4bec7d5ee9ec99ec7510340e51f2ab84991da77b6e1efd03c5604a4dba1e406d79748b2d490d4994153f9277a915b42949c103d818bccb0b3f
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,10 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ SuggestExtensions: false
4
+ TargetRubyVersion: 3.0
5
+
6
+ Style/StringLiterals:
7
+ EnforcedStyle: double_quotes
8
+
9
+ Style/StringLiteralsInInterpolation:
10
+ EnforcedStyle: double_quotes
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Richard Marbach
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,66 @@
1
+ # Monotonic
2
+
3
+ Provide a cross-platform monotonic time for ruby even across system suspense.
4
+ The timer starts from 0 on system boot and will reset on system reboot.
5
+
6
+ The monotonic timer is useful as a measure of passing time and shouldn't compared with time from other sources.
7
+ The timestamps are also only safely compared when sourced from the same thread.
8
+
9
+ ## Usage
10
+
11
+ ```ruby
12
+ Monotonic.monotonic_time
13
+ # => 91226002327716
14
+ ```
15
+
16
+ ## Why?
17
+
18
+ The state of cross-platform time keeping is a mess.
19
+ In Linux alone, there are 11 different clocks.
20
+ The usual recommendation is to use `Process::CLOCK_MONOTONIC` for a monotonic time.
21
+
22
+ In a lot of cases `CLOCK_MONOTONIC` works fine, but the clock stops on system suspense.
23
+ If you're attempting to bound the running time with for example `Timeout`, then it's important to be aware that `CLOCK_MONOTONIC` may not timeout in the desired time when compared to "real" time:
24
+
25
+ ```ruby
26
+ Timeout.timeout(5) do
27
+ # Do Work
28
+ # System is supsended for 15 minutes
29
+ # Continue working as if nothing happened
30
+ end
31
+ # Total running time 15 minutes
32
+ ```
33
+
34
+ Currently, there's no good option for getting a suspense-aware cross-platform monotonic timestamp.
35
+ On Linux/FreeBSD it's possible to use `CLOCK_BOOTTIME`.
36
+
37
+ However, Ruby hasn't implemented the MacOS equivalent of `mach_continous_time`.
38
+ Windows also has a poor story regarding high precision timers, with the only option being `QueryPerformanceCounter` for a high resolution time stamp.
39
+
40
+ ## Installation
41
+
42
+ Install the gem and add to the application's Gemfile by executing:
43
+
44
+ ```bash
45
+ bundle add ruby-monotonic
46
+ ```
47
+
48
+ If bundler is not being used to manage dependencies, install the gem by executing:
49
+
50
+ ```bash
51
+ gem install ruby-monotonic
52
+ ```
53
+
54
+ ## Development
55
+
56
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
57
+
58
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
59
+
60
+ ## Contributing
61
+
62
+ Bug reports and pull requests are welcome on GitHub at https://github.com/richardmarbach/monotonic.
63
+
64
+ ## License
65
+
66
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+
5
+ require "rubocop/rake_task"
6
+
7
+ RuboCop::RakeTask.new
8
+
9
+ task :build do
10
+ cd "ext/" do
11
+ ruby "extconf.rb"
12
+ sh "make"
13
+ end
14
+ end
15
+
16
+ task default: %i[rubocop build]
data/ext/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ *.bundle
2
+ *.o
3
+ Makefile
data/ext/extconf.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mkmf"
4
+
5
+ create_makefile "monotonic"
data/ext/monotonic.c ADDED
@@ -0,0 +1,49 @@
1
+ #include "ruby.h"
2
+
3
+ #if defined(__APPLE__)
4
+ #include <mach/mach_time.h>
5
+ #elif defined(_WIN32)
6
+ #include <profileapi.h>
7
+ #include <winnt.h>
8
+ #define COMMON_QPF 10000000LL
9
+ #else
10
+ #include <time.h>
11
+ #endif
12
+
13
+ #define S_IN_NS 1000000000LL
14
+
15
+ long long monotonic_get_monotonic_time() {
16
+ #if defined(__APPLE__)
17
+ return mach_continuous_time();
18
+ #elif defined(_WIN32)
19
+
20
+ LARGE_INTEGER qpf;
21
+ QueryPerformanceFrequency(&qpf);
22
+
23
+ LARGE_INTEGER qpc;
24
+ QueryPerformanceCounter(&qpc);
25
+
26
+ // https://github.com/microsoft/STL/blob/785143a0c73f030238ef618890fd4d6ae2b3a3a0/stl/inc/chrono#L694-L701
27
+ if (qpf.QuadPart == COMMON_QPF) {
28
+ return qpc.QuadPart * (S_IN_NS / COMMON_QPF);
29
+ }
30
+
31
+ long long nanoseconds = qpc.QuadPart * S_IN_NS;
32
+ nanoseconds /= qpf.QuadPart;
33
+ return nanoseconds;
34
+ #else
35
+ struct timespec ts;
36
+ clock_gettime(CLOCK_BOOTTIME, &ts);
37
+ return ts.tv_sec * S_IN_NS + ts.tv_nsec;
38
+ #endif
39
+ }
40
+
41
+ VALUE monotonic_get_monotonic_time_ext() {
42
+ return LL2NUM(monotonic_get_monotonic_time());
43
+ }
44
+
45
+ void Init_monotonic() {
46
+ VALUE mod = rb_define_module("Monotonic");
47
+ rb_define_singleton_method(mod, "monotonic_time",
48
+ monotonic_get_monotonic_time_ext, 0);
49
+ }
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Monotonic
4
+ VERSION = "0.1.0"
5
+ end
data/lib/monotonic.rb ADDED
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Monotonic
4
+ module Monotonic
5
+ require_relative "monotonic/version"
6
+
7
+ ext = case RUBY_PLATFORM
8
+ when /linux/
9
+ "so"
10
+ when /darwin/
11
+ "bundle"
12
+ when /mingw|mswin/
13
+ "dll"
14
+ else
15
+ raise "Unsupported platform: #{RUBY_PLATFORM}"
16
+ end
17
+
18
+ require_relative File.expand_path("../ext/monotonic.#{ext}", __dir__)
19
+ end
data/sig/monotonic.rbs ADDED
@@ -0,0 +1,3 @@
1
+ module Monotonic
2
+ VERSION: String
3
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-monotonic
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Richard Marbach
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-10-17 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Get nanosecond precision monotonic time that is not affected by system
14
+ suspense.
15
+ email:
16
+ - richard@viaeurope.com
17
+ executables: []
18
+ extensions:
19
+ - ext/extconf.rb
20
+ extra_rdoc_files: []
21
+ files:
22
+ - ".rspec"
23
+ - ".rubocop.yml"
24
+ - LICENSE.txt
25
+ - README.md
26
+ - Rakefile
27
+ - ext/.gitignore
28
+ - ext/extconf.rb
29
+ - ext/monotonic.c
30
+ - lib/monotonic.rb
31
+ - lib/monotonic/version.rb
32
+ - sig/monotonic.rbs
33
+ homepage: https://github.com/richardmarbach/ruby-monotonic
34
+ licenses:
35
+ - MIT
36
+ metadata:
37
+ homepage_uri: https://github.com/richardmarbach/ruby-monotonic
38
+ source_code_uri: https://github.com/richardmarbach/ruby-monotonic
39
+ changelog_uri: https://github.com/richardmarbach/ruby-monotonic
40
+ rubygems_mfa_required: 'true'
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 3.0.0
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.5.16
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: True monotonic time for Ruby
60
+ test_files: []