sleepy_penguin.git  about / heads / tags
Linux I/O events for Ruby
blob b8f61678bd3c903ecea66886103fcea5698f72fb 1318 bytes (raw)
$ git show pu:ext/sleepy_penguin/value2timespec.h	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
 
#ifndef VALUE2TIMESPEC_H
#define VALUE2TIMESPEC_H

#include <ruby.h>
#include <math.h>
#include <time.h>

#ifndef NUM2TIMET
#  define NUM2TIMET(n) NUM2LONG(n)
#endif

#ifndef RFLOAT_VALUE
#  define RFLOAT_VALUE(v) (RFLOAT(v)->value)
#endif

static struct timespec *value2timespec(struct timespec *ts, VALUE num)
{
	switch (TYPE(num)) {
	case T_FIXNUM:
	case T_BIGNUM:
		ts->tv_sec = NUM2TIMET(num);
		ts->tv_nsec = 0;
		return ts;
	case T_FLOAT: {
		double orig = RFLOAT_VALUE(num);
		double f, d;

		d = modf(orig, &f);
		if (d >= 0) {
			ts->tv_nsec = (long)(d * 1e9 + 0.5);
		} else {
			ts->tv_nsec = (long)(-d * 1e9 + 0.5);
			if (ts->tv_nsec > 0) {
				ts->tv_nsec = (long)1e9 - ts->tv_nsec;
				f -= 1;
			}
		}
		ts->tv_sec = (time_t)f;
		if (f != ts->tv_sec)
			rb_raise(rb_eRangeError, "%f out of range", orig);
		return ts;
	}}
	{
		VALUE tmp = rb_inspect(num);
		const char *str = StringValueCStr(tmp);
		rb_raise(rb_eTypeError, "can't convert %s into timespec", str);
	}
	rb_bug("rb_raise() failed, timespec failed");
	return NULL;
}

#ifndef TIMET2NUM
#  define TIMET2NUM(n) LONG2NUM(n)
#endif

static inline VALUE timespec2num(struct timespec *ts)
{
	if (ts->tv_nsec == 0)
		return TIMET2NUM(ts->tv_sec);

	return rb_float_new(ts->tv_sec + ((double)ts->tv_nsec / 1e9));
}

#endif /* VALUE2TIMESPEC_H */

git clone https://yhbt.net/sleepy_penguin.git