c1e3eb4ddbff0243941ad329ffbdbe7c0e9ac25a
[clogger.git] / ext / clogger_ext / clogger.c
blobc1e3eb4ddbff0243941ad329ffbdbe7c0e9ac25a
1 #include <ruby.h>
2 #ifdef HAVE_RUBY_IO_H
3 # include <ruby/io.h>
4 #else
5 # include <rubyio.h>
6 #endif
7 #include <assert.h>
8 #include <unistd.h>
9 #include <sys/types.h>
10 #include <sys/stat.h>
11 #include <sys/time.h>
12 #include <errno.h>
13 #ifdef HAVE_FCNTL_H
14 # include <fcntl.h>
15 #endif
16 #ifndef _POSIX_C_SOURCE
17 # define _POSIX_C_SOURCE 200112L
18 #endif
19 #include <time.h>
20 #include <stdlib.h>
21 #include <stdio.h> /* snprintf */
22 #include "ruby_1_9_compat.h"
23 #include "broken_system_compat.h"
24 #include "blocking_helpers.h"
27 * Availability of a monotonic clock needs to be detected at runtime
28 * since we could've been built on a different system than we're run
29 * under.
31 static clockid_t hopefully_CLOCK_MONOTONIC;
33 static void check_clock(void)
35 struct timespec now;
37 hopefully_CLOCK_MONOTONIC = CLOCK_MONOTONIC;
39 /* we can't check this reliably at compile time */
40 if (clock_gettime(CLOCK_MONOTONIC, &now) == 0)
41 return;
43 if (clock_gettime(CLOCK_REALTIME, &now) == 0) {
44 hopefully_CLOCK_MONOTONIC = CLOCK_REALTIME;
45 rb_warn("CLOCK_MONOTONIC not available, "
46 "falling back to CLOCK_REALTIME");
48 rb_warn("clock_gettime() totally broken, " \
49 "falling back to pure Ruby Clogger");
50 rb_raise(rb_eLoadError, "clock_gettime() broken");
53 static void clock_diff(struct timespec *a, const struct timespec *b)
55 a->tv_sec -= b->tv_sec;
56 a->tv_nsec -= b->tv_nsec;
57 if (a->tv_nsec < 0) {
58 --a->tv_sec;
59 a->tv_nsec += 1000000000;
63 /* give GCC hints for better branch prediction
64 * (we layout branches so that ASCII characters are handled faster) */
65 #if defined(__GNUC__) && (__GNUC__ >= 3)
66 # define likely(x) __builtin_expect (!!(x), 1)
67 # define unlikely(x) __builtin_expect (!!(x), 0)
68 #else
69 # define unlikely(x) (x)
70 # define likely(x) (x)
71 #endif
73 enum clogger_opcode {
74 CL_OP_LITERAL = 0,
75 CL_OP_REQUEST,
76 CL_OP_RESPONSE,
77 CL_OP_SPECIAL,
78 CL_OP_EVAL,
79 CL_OP_TIME_LOCAL,
80 CL_OP_TIME_UTC,
81 CL_OP_REQUEST_TIME,
82 CL_OP_TIME,
83 CL_OP_COOKIE
86 enum clogger_special {
87 CL_SP_body_bytes_sent = 0,
88 CL_SP_status,
89 CL_SP_request,
90 CL_SP_request_length,
91 CL_SP_response_length,
92 CL_SP_ip,
93 CL_SP_pid,
94 CL_SP_request_uri,
95 CL_SP_time_iso8601,
96 CL_SP_time_local,
97 CL_SP_time_utc
100 struct clogger {
101 VALUE app;
103 VALUE fmt_ops;
104 VALUE logger;
105 VALUE log_buf;
107 VALUE env;
108 VALUE cookies;
109 VALUE status;
110 VALUE headers;
111 VALUE body;
113 off_t body_bytes_sent;
114 struct timespec ts_start;
116 int fd;
117 int wrap_body;
118 int need_resp;
119 int reentrant; /* tri-state, -1:auto, 1/0 true/false */
122 static ID ltlt_id;
123 static ID call_id;
124 static ID each_id;
125 static ID close_id;
126 static ID to_i_id;
127 static ID to_s_id;
128 static ID size_id;
129 static ID sq_brace_id;
130 static ID new_id;
131 static ID to_path_id;
132 static ID to_io_id;
133 static ID respond_to_id;
134 static VALUE cClogger;
135 static VALUE mFormat;
136 static VALUE cHeaderHash;
138 /* common hash lookup keys */
139 static VALUE g_HTTP_X_FORWARDED_FOR;
140 static VALUE g_REMOTE_ADDR;
141 static VALUE g_REQUEST_METHOD;
142 static VALUE g_PATH_INFO;
143 static VALUE g_REQUEST_URI;
144 static VALUE g_QUERY_STRING;
145 static VALUE g_HTTP_VERSION;
146 static VALUE g_rack_errors;
147 static VALUE g_rack_input;
148 static VALUE g_rack_multithread;
149 static VALUE g_dash;
150 static VALUE g_space;
151 static VALUE g_question_mark;
152 static VALUE g_rack_request_cookie_hash;
154 #define LOG_BUF_INIT_SIZE 128
156 static void init_buffers(struct clogger *c)
158 c->log_buf = rb_str_buf_new(LOG_BUF_INIT_SIZE);
161 static inline int need_escape(unsigned c)
163 assert(c <= 0xff);
164 return !!(c == '\'' || c == '"' || c <= 0x1f || c >= 0x7f);
167 /* we are encoding-agnostic, clients can send us all sorts of junk */
168 static VALUE byte_xs_str(VALUE from)
170 static const char esc[] = "0123456789ABCDEF";
171 unsigned char *new_ptr;
172 unsigned char *ptr = (unsigned char *)RSTRING_PTR(from);
173 long len = RSTRING_LEN(from);
174 long new_len = len;
175 VALUE rv;
177 for (; --len >= 0; ptr++) {
178 unsigned c = *ptr;
180 if (unlikely(need_escape(c)))
181 new_len += 3; /* { '\', 'x', 'X', 'X' } */
184 len = RSTRING_LEN(from);
185 if (new_len == len)
186 return from;
188 rv = rb_str_new(NULL, new_len);
189 new_ptr = (unsigned char *)RSTRING_PTR(rv);
190 ptr = (unsigned char *)RSTRING_PTR(from);
191 for (; --len >= 0; ptr++) {
192 unsigned c = *ptr;
194 if (unlikely(need_escape(c))) {
195 *new_ptr++ = '\\';
196 *new_ptr++ = 'x';
197 *new_ptr++ = esc[c >> 4];
198 *new_ptr++ = esc[c & 0xf];
199 } else {
200 *new_ptr++ = c;
203 assert(RSTRING_PTR(rv)[RSTRING_LEN(rv)] == '\0');
205 return rv;
208 static VALUE byte_xs(VALUE from)
210 return byte_xs_str(rb_obj_as_string(from));
213 static void clogger_mark(void *ptr)
215 struct clogger *c = ptr;
217 rb_gc_mark(c->app);
218 rb_gc_mark(c->fmt_ops);
219 rb_gc_mark(c->logger);
220 rb_gc_mark(c->log_buf);
221 rb_gc_mark(c->env);
222 rb_gc_mark(c->cookies);
223 rb_gc_mark(c->status);
224 rb_gc_mark(c->headers);
225 rb_gc_mark(c->body);
228 static VALUE clogger_alloc(VALUE klass)
230 struct clogger *c;
232 return Data_Make_Struct(klass, struct clogger, clogger_mark, -1, c);
235 static struct clogger *clogger_get(VALUE self)
237 struct clogger *c;
239 Data_Get_Struct(self, struct clogger, c);
240 assert(c);
241 return c;
244 /* only for writing to regular files, not stupid crap like NFS */
245 static void write_full(int fd, const void *buf, size_t count)
247 ssize_t r;
248 unsigned long ubuf = (unsigned long)buf;
250 while (count > 0) {
251 r = write(fd, (void *)ubuf, count);
253 if ((size_t)r == count) { /* overwhelmingly likely */
254 return;
255 } else if (r > 0) {
256 count -= r;
257 ubuf += r;
258 } else {
259 if (errno == EINTR || errno == EAGAIN)
260 continue; /* poor souls on NFS and like: */
261 if (!errno)
262 errno = ENOSPC;
263 rb_sys_fail("write");
269 * allow us to use write_full() iff we detect a blocking file
270 * descriptor that wouldn't play nicely with Ruby threading/fibers
272 static int raw_fd(VALUE my_fd)
274 #if defined(HAVE_FCNTL) && defined(F_GETFL) && defined(O_NONBLOCK)
275 int fd;
276 int flags;
278 if (NIL_P(my_fd))
279 return -1;
280 fd = NUM2INT(my_fd);
282 flags = fcntl(fd, F_GETFL);
283 if (flags < 0)
284 rb_sys_fail("fcntl");
286 if (flags & O_NONBLOCK) {
287 struct stat sb;
289 if (fstat(fd, &sb) < 0)
290 return -1;
292 /* O_NONBLOCK is no-op for regular files: */
293 if (! S_ISREG(sb.st_mode))
294 return -1;
296 return fd;
297 #else /* platforms w/o fcntl/F_GETFL/O_NONBLOCK */
298 return -1;
299 #endif /* platforms w/o fcntl/F_GETFL/O_NONBLOCK */
302 /* :nodoc: */
303 static VALUE clogger_reentrant(VALUE self)
305 return clogger_get(self)->reentrant == 0 ? Qfalse : Qtrue;
308 /* :nodoc: */
309 static VALUE clogger_wrap_body(VALUE self)
311 return clogger_get(self)->wrap_body == 0 ? Qfalse : Qtrue;
314 static void append_status(struct clogger *c)
316 char buf[sizeof("999")];
317 int nr;
318 VALUE status = c->status;
320 if (TYPE(status) != T_FIXNUM) {
321 status = rb_funcall(status, to_i_id, 0);
322 /* no way it's a valid status code (at least not HTTP/1.1) */
323 if (TYPE(status) != T_FIXNUM) {
324 rb_str_buf_append(c->log_buf, g_dash);
325 return;
329 nr = FIX2INT(status);
330 if (nr >= 100 && nr <= 999) {
331 nr = snprintf(buf, sizeof(buf), "%03d", nr);
332 assert(nr == 3);
333 rb_str_buf_cat(c->log_buf, buf, nr);
334 } else {
335 /* raise?, swap for 500? */
336 rb_str_buf_append(c->log_buf, g_dash);
340 /* this is Rack 1.0.0-compatible, won't try to parse commas in XFF */
341 static void append_ip(struct clogger *c)
343 VALUE env = c->env;
344 VALUE tmp = rb_hash_aref(env, g_HTTP_X_FORWARDED_FOR);
346 if (NIL_P(tmp)) {
347 /* can't be faked on any real server, so no escape */
348 tmp = rb_hash_aref(env, g_REMOTE_ADDR);
349 if (NIL_P(tmp))
350 tmp = g_dash;
351 } else {
352 tmp = byte_xs(tmp);
354 rb_str_buf_append(c->log_buf, tmp);
357 static void append_body_bytes_sent(struct clogger *c)
359 char buf[(sizeof(off_t) * 8) / 3 + 1];
360 const char *fmt = sizeof(off_t) == sizeof(long) ? "%ld" : "%lld";
361 int nr = snprintf(buf, sizeof(buf), fmt, c->body_bytes_sent);
363 assert(nr > 0 && nr < (int)sizeof(buf));
364 rb_str_buf_cat(c->log_buf, buf, nr);
367 static void append_ts(struct clogger *c, const VALUE *op, struct timespec *ts)
369 char buf[sizeof(".000000") + ((sizeof(ts->tv_sec) * 8) / 3)];
370 int nr;
371 char *fmt = RSTRING_PTR(op[1]);
372 int ndiv = NUM2INT(op[2]);
373 int usec = ts->tv_nsec / 1000;
375 nr = snprintf(buf, sizeof(buf), fmt,
376 (int)ts->tv_sec, (int)(usec / ndiv));
377 assert(nr > 0 && nr < (int)sizeof(buf));
378 rb_str_buf_cat(c->log_buf, buf, nr);
381 static void append_request_time_fmt(struct clogger *c, const VALUE *op)
383 struct timespec now;
385 clock_gettime(hopefully_CLOCK_MONOTONIC, &now);
386 clock_diff(&now, &c->ts_start);
387 append_ts(c, op, &now);
390 static void append_time_fmt(struct clogger *c, const VALUE *op)
392 struct timespec now;
393 int r = clock_gettime(CLOCK_REALTIME, &now);
395 if (unlikely(r != 0))
396 rb_sys_fail("clock_gettime(CLOCK_REALTIME)");
397 append_ts(c, op, &now);
400 static void append_request_uri(struct clogger *c)
402 VALUE tmp;
404 tmp = rb_hash_aref(c->env, g_REQUEST_URI);
405 if (NIL_P(tmp)) {
406 tmp = rb_hash_aref(c->env, g_PATH_INFO);
407 if (!NIL_P(tmp))
408 rb_str_buf_append(c->log_buf, byte_xs(tmp));
409 tmp = rb_hash_aref(c->env, g_QUERY_STRING);
410 if (!NIL_P(tmp) && RSTRING_LEN(tmp) != 0) {
411 rb_str_buf_append(c->log_buf, g_question_mark);
412 rb_str_buf_append(c->log_buf, byte_xs(tmp));
414 } else {
415 rb_str_buf_append(c->log_buf, byte_xs(tmp));
419 static void append_request(struct clogger *c)
421 VALUE tmp;
423 /* REQUEST_METHOD doesn't need escaping, Rack::Lint governs it */
424 tmp = rb_hash_aref(c->env, g_REQUEST_METHOD);
425 if (!NIL_P(tmp))
426 rb_str_buf_append(c->log_buf, tmp);
428 rb_str_buf_append(c->log_buf, g_space);
430 append_request_uri(c);
432 /* HTTP_VERSION can be injected by malicious clients */
433 tmp = rb_hash_aref(c->env, g_HTTP_VERSION);
434 if (!NIL_P(tmp)) {
435 rb_str_buf_append(c->log_buf, g_space);
436 rb_str_buf_append(c->log_buf, byte_xs(tmp));
440 static void append_request_length(struct clogger *c)
442 VALUE tmp = rb_hash_aref(c->env, g_rack_input);
443 if (NIL_P(tmp)) {
444 rb_str_buf_append(c->log_buf, g_dash);
445 } else {
446 tmp = rb_funcall(tmp, size_id, 0);
447 rb_str_buf_append(c->log_buf, rb_funcall(tmp, to_s_id, 0));
451 static long local_gmtoffset(struct tm *tm)
453 time_t t = time(NULL);
455 tzset();
456 localtime_r(&t, tm);
459 * HAVE_STRUCT_TM_TM_GMTOFF may be defined in Ruby headers
460 * HAVE_ST_TM_GMTOFF is defined ourselves.
462 #if defined(HAVE_STRUCT_TM_TM_GMTOFF) || defined(HAVE_ST_TM_GMTOFF)
463 return tm->tm_gmtoff / 60;
464 #else
465 return -(tm->tm_isdst ? timezone - 3600 : timezone) / 60;
466 #endif
469 static void append_time_iso8601(struct clogger *c)
471 char buf[sizeof("1970-01-01T00:00:00+00:00")];
472 struct tm tm;
473 int nr;
474 long gmtoff = local_gmtoffset(&tm);
476 nr = snprintf(buf, sizeof(buf),
477 "%4d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
478 tm.tm_year + 1900, tm.tm_mon + 1,
479 tm.tm_mday, tm.tm_hour,
480 tm.tm_min, tm.tm_sec,
481 gmtoff < 0 ? '-' : '+',
482 abs(gmtoff / 60), abs(gmtoff % 60));
483 assert(nr == (sizeof(buf) - 1) && "snprintf fail");
484 rb_str_buf_cat(c->log_buf, buf, sizeof(buf) - 1);
487 static const char months[] = "Jan\0Feb\0Mar\0Apr\0May\0Jun\0"
488 "Jul\0Aug\0Sep\0Oct\0Nov\0Dec";
490 static void append_time_local(struct clogger *c)
492 char buf[sizeof("01/Jan/1970:00:00:00 +0000")];
493 struct tm tm;
494 int nr;
495 long gmtoff = local_gmtoffset(&tm);
497 nr = snprintf(buf, sizeof(buf),
498 "%02d/%s/%d:%02d:%02d:%02d %c%02d%02d",
499 tm.tm_mday, months + (tm.tm_mon * sizeof("Jan")),
500 tm.tm_year + 1900, tm.tm_hour,
501 tm.tm_min, tm.tm_sec,
502 gmtoff < 0 ? '-' : '+',
503 abs(gmtoff / 60), abs(gmtoff % 60));
504 assert(nr == (sizeof(buf) - 1) && "snprintf fail");
505 rb_str_buf_cat(c->log_buf, buf, sizeof(buf) - 1);
508 static void append_time_utc(struct clogger *c)
510 char buf[sizeof("01/Jan/1970:00:00:00 +0000")];
511 struct tm tm;
512 int nr;
513 time_t t = time(NULL);
515 gmtime_r(&t, &tm);
516 nr = snprintf(buf, sizeof(buf),
517 "%02d/%s/%d:%02d:%02d:%02d +0000",
518 tm.tm_mday, months + (tm.tm_mon * sizeof("Jan")),
519 tm.tm_year + 1900, tm.tm_hour,
520 tm.tm_min, tm.tm_sec);
521 assert(nr == (sizeof(buf) - 1) && "snprintf fail");
522 rb_str_buf_cat(c->log_buf, buf, sizeof(buf) - 1);
525 static void
526 append_time(struct clogger *c, enum clogger_opcode op, VALUE fmt, VALUE buf)
528 char *buf_ptr = RSTRING_PTR(buf);
529 size_t buf_size = RSTRING_LEN(buf) + 1; /* "\0" */
530 size_t nr;
531 struct tm tmp;
532 time_t t = time(NULL);
534 if (op == CL_OP_TIME_LOCAL)
535 localtime_r(&t, &tmp);
536 else if (op == CL_OP_TIME_UTC)
537 gmtime_r(&t, &tmp);
538 else
539 assert(0 && "unknown op");
541 nr = strftime(buf_ptr, buf_size, RSTRING_PTR(fmt), &tmp);
542 assert(nr < buf_size && "time format too small!");
543 rb_str_buf_cat(c->log_buf, buf_ptr, nr);
546 static void append_pid(struct clogger *c)
548 char buf[(sizeof(pid_t) * 8) / 3 + 1];
549 int nr = snprintf(buf, sizeof(buf), "%d", (int)getpid());
551 assert(nr > 0 && nr < (int)sizeof(buf));
552 rb_str_buf_cat(c->log_buf, buf, nr);
555 static void append_eval(struct clogger *c, VALUE str)
557 int state = -1;
558 VALUE rv = rb_eval_string_protect(RSTRING_PTR(str), &state);
560 rv = state == 0 ? rb_obj_as_string(rv) : g_dash;
561 rb_str_buf_append(c->log_buf, rv);
564 static void append_cookie(struct clogger *c, VALUE key)
566 VALUE cookie;
568 if (c->cookies == Qfalse)
569 c->cookies = rb_hash_aref(c->env, g_rack_request_cookie_hash);
571 if (NIL_P(c->cookies)) {
572 cookie = g_dash;
573 } else {
574 cookie = rb_hash_aref(c->cookies, key);
575 if (NIL_P(cookie))
576 cookie = g_dash;
578 rb_str_buf_append(c->log_buf, cookie);
581 static void append_request_env(struct clogger *c, VALUE key)
583 VALUE tmp = rb_hash_aref(c->env, key);
585 tmp = NIL_P(tmp) ? g_dash : byte_xs(tmp);
586 rb_str_buf_append(c->log_buf, tmp);
589 static void append_response(struct clogger *c, VALUE key)
591 VALUE v;
593 assert(rb_obj_is_kind_of(c->headers, cHeaderHash) && "not HeaderHash");
595 v = rb_funcall(c->headers, sq_brace_id, 1, key);
596 v = NIL_P(v) ? g_dash : byte_xs(v);
597 rb_str_buf_append(c->log_buf, v);
600 static void special_var(struct clogger *c, enum clogger_special var)
602 switch (var) {
603 case CL_SP_body_bytes_sent:
604 append_body_bytes_sent(c);
605 break;
606 case CL_SP_status:
607 append_status(c);
608 break;
609 case CL_SP_request:
610 append_request(c);
611 break;
612 case CL_SP_request_length:
613 append_request_length(c);
614 break;
615 case CL_SP_response_length:
616 if (c->body_bytes_sent == 0)
617 rb_str_buf_append(c->log_buf, g_dash);
618 else
619 append_body_bytes_sent(c);
620 break;
621 case CL_SP_ip:
622 append_ip(c);
623 break;
624 case CL_SP_pid:
625 append_pid(c);
626 break;
627 case CL_SP_request_uri:
628 append_request_uri(c);
629 break;
630 case CL_SP_time_iso8601:
631 append_time_iso8601(c);
632 break;
633 case CL_SP_time_local:
634 append_time_local(c);
635 break;
636 case CL_SP_time_utc:
637 append_time_utc(c);
641 static VALUE cwrite(struct clogger *c)
643 const VALUE ops = c->fmt_ops;
644 const VALUE *ary = RARRAY_PTR(ops);
645 long i = RARRAY_LEN(ops);
646 VALUE dst = c->log_buf;
648 rb_str_set_len(dst, 0);
650 for (; --i >= 0; ary++) {
651 const VALUE *op = RARRAY_PTR(*ary);
652 enum clogger_opcode opcode = FIX2INT(op[0]);
654 switch (opcode) {
655 case CL_OP_LITERAL:
656 rb_str_buf_append(dst, op[1]);
657 break;
658 case CL_OP_REQUEST:
659 append_request_env(c, op[1]);
660 break;
661 case CL_OP_RESPONSE:
662 append_response(c, op[1]);
663 break;
664 case CL_OP_SPECIAL:
665 special_var(c, FIX2INT(op[1]));
666 break;
667 case CL_OP_EVAL:
668 append_eval(c, op[1]);
669 break;
670 case CL_OP_TIME_LOCAL:
671 case CL_OP_TIME_UTC:
672 append_time(c, opcode, op[1], op[2]);
673 break;
674 case CL_OP_REQUEST_TIME:
675 append_request_time_fmt(c, op);
676 break;
677 case CL_OP_TIME:
678 append_time_fmt(c, op);
679 break;
680 case CL_OP_COOKIE:
681 append_cookie(c, op[1]);
682 break;
686 if (c->fd >= 0) {
687 write_full(c->fd, RSTRING_PTR(dst), RSTRING_LEN(dst));
688 } else {
689 VALUE logger = c->logger;
691 if (NIL_P(logger))
692 logger = rb_hash_aref(c->env, g_rack_errors);
693 rb_funcall(logger, ltlt_id, 1, dst);
696 return Qnil;
699 static VALUE clogger_write(VALUE self)
701 return cwrite(clogger_get(self));
704 static void init_logger(struct clogger *c, VALUE path)
706 ID id;
708 if (!NIL_P(path) && !NIL_P(c->logger))
709 rb_raise(rb_eArgError, ":logger and :path are independent");
710 if (!NIL_P(path)) {
711 VALUE ab = rb_str_new2("ab");
712 id = rb_intern("open");
713 c->logger = rb_funcall(rb_cFile, id, 2, path, ab);
716 id = rb_intern("sync=");
717 if (rb_respond_to(c->logger, id))
718 rb_funcall(c->logger, id, 1, Qtrue);
720 id = rb_intern("fileno");
721 if (rb_respond_to(c->logger, id))
722 c->fd = raw_fd(rb_funcall(c->logger, id, 0));
726 * call-seq:
727 * Clogger.new(app, :logger => $stderr, :format => string) => obj
729 * Creates a new Clogger object that wraps +app+. +:logger+ may
730 * be any object that responds to the "<<" method with a string argument.
731 * Instead of +:logger+, +:path+ may be specified to be a :path of a File
732 * that will be opened in append mode.
734 static VALUE clogger_init(int argc, VALUE *argv, VALUE self)
736 struct clogger *c = clogger_get(self);
737 VALUE o = Qnil;
738 VALUE fmt = rb_const_get(mFormat, rb_intern("Common"));
740 rb_scan_args(argc, argv, "11", &c->app, &o);
741 c->fd = -1;
742 c->logger = Qnil;
743 c->reentrant = -1; /* auto-detect */
745 if (TYPE(o) == T_HASH) {
746 VALUE tmp;
748 tmp = rb_hash_aref(o, ID2SYM(rb_intern("path")));
749 c->logger = rb_hash_aref(o, ID2SYM(rb_intern("logger")));
750 init_logger(c, tmp);
752 tmp = rb_hash_aref(o, ID2SYM(rb_intern("format")));
753 if (!NIL_P(tmp))
754 fmt = tmp;
756 tmp = rb_hash_aref(o, ID2SYM(rb_intern("reentrant")));
757 switch (TYPE(tmp)) {
758 case T_TRUE:
759 c->reentrant = 1;
760 break;
761 case T_FALSE:
762 c->reentrant = 0;
763 case T_NIL:
764 break;
765 default:
766 rb_raise(rb_eArgError, ":reentrant must be boolean");
770 init_buffers(c);
771 c->fmt_ops = rb_funcall(self, rb_intern("compile_format"), 2, fmt, o);
773 if (Qtrue == rb_funcall(self, rb_intern("need_response_headers?"),
774 1, c->fmt_ops))
775 c->need_resp = 1;
776 if (Qtrue == rb_funcall(self, rb_intern("need_wrap_body?"),
777 1, c->fmt_ops))
778 c->wrap_body = 1;
780 return self;
783 static VALUE body_iter_i(VALUE str, VALUE self)
785 struct clogger *c = clogger_get(self);
787 str = rb_obj_as_string(str);
788 c->body_bytes_sent += RSTRING_LEN(str);
790 return rb_yield(str);
793 static VALUE body_close(VALUE self)
795 struct clogger *c = clogger_get(self);
797 if (rb_respond_to(c->body, close_id))
798 return rb_funcall(c->body, close_id, 0);
799 return Qnil;
803 * call-seq:
804 * clogger.each { |part| socket.write(part) }
806 * Delegates the body#each call to the underlying +body+ object
807 * while tracking the number of bytes yielded. This will log
808 * the request.
810 static VALUE clogger_each(VALUE self)
812 struct clogger *c = clogger_get(self);
814 rb_need_block();
815 c->body_bytes_sent = 0;
816 rb_iterate(rb_each, c->body, body_iter_i, self);
818 return self;
822 * call-seq:
823 * clogger.close
825 * Delegates the body#close call to the underlying +body+ object.
826 * This is only used when Clogger is wrapping the +body+ of a Rack
827 * response and should be automatically called by the web server.
829 static VALUE clogger_close(VALUE self)
832 return rb_ensure(body_close, self, clogger_write, self);
835 /* :nodoc: */
836 static VALUE clogger_fileno(VALUE self)
838 struct clogger *c = clogger_get(self);
840 return c->fd < 0 ? Qnil : INT2NUM(c->fd);
843 static VALUE ccall(struct clogger *c, VALUE env)
845 VALUE rv;
847 clock_gettime(hopefully_CLOCK_MONOTONIC, &c->ts_start);
848 c->env = env;
849 c->cookies = Qfalse;
850 rv = rb_funcall(c->app, call_id, 1, env);
851 if (TYPE(rv) == T_ARRAY && RARRAY_LEN(rv) == 3) {
852 VALUE *tmp = RARRAY_PTR(rv);
854 c->status = tmp[0];
855 c->headers = tmp[1];
856 c->body = tmp[2];
858 rv = rb_ary_new4(3, tmp);
859 if (c->need_resp &&
860 ! rb_obj_is_kind_of(tmp[1], cHeaderHash)) {
861 c->headers = rb_funcall(cHeaderHash, new_id, 1, tmp[1]);
862 rb_ary_store(rv, 1, c->headers);
864 } else {
865 volatile VALUE tmp = rb_inspect(rv);
867 c->status = INT2FIX(500);
868 c->headers = c->body = rb_ary_new();
869 cwrite(c);
870 rb_raise(rb_eTypeError,
871 "app response not a 3 element Array: %s",
872 RSTRING_PTR(tmp));
875 return rv;
879 * call-seq:
880 * clogger.call(env) => [ status, headers, body ]
882 * calls the wrapped Rack application with +env+, returns the
883 * [status, headers, body ] tuplet required by Rack.
885 static VALUE clogger_call(VALUE self, VALUE env)
887 struct clogger *c = clogger_get(self);
888 VALUE rv;
890 env = rb_check_convert_type(env, T_HASH, "Hash", "to_hash");
892 if (c->wrap_body) {
893 /* XXX: we assume the existence of the GVL here: */
894 if (c->reentrant < 0) {
895 VALUE tmp = rb_hash_aref(env, g_rack_multithread);
896 c->reentrant = Qfalse == tmp ? 0 : 1;
899 if (c->reentrant) {
900 self = rb_obj_dup(self);
901 c = clogger_get(self);
904 rv = ccall(c, env);
905 assert(!OBJ_FROZEN(rv) && "frozen response array");
906 rb_ary_store(rv, 2, self);
908 return rv;
911 rv = ccall(c, env);
912 cwrite(c);
914 return rv;
917 static void duplicate_buffers(VALUE ops)
919 long i = RARRAY_LEN(ops);
920 VALUE *ary = RARRAY_PTR(ops);
922 for ( ; --i >= 0; ary++) {
923 VALUE *op = RARRAY_PTR(*ary);
924 enum clogger_opcode opcode = FIX2INT(op[0]);
926 if (opcode == CL_OP_TIME_LOCAL || opcode == CL_OP_TIME_UTC) {
927 Check_Type(op[2], T_STRING);
928 op[2] = rb_str_dup(op[2]);
929 rb_str_modify(op[2]); /* trigger copy-on-write */
934 /* :nodoc: */
935 static VALUE clogger_init_copy(VALUE clone, VALUE orig)
937 struct clogger *a = clogger_get(orig);
938 struct clogger *b = clogger_get(clone);
940 memcpy(b, a, sizeof(struct clogger));
941 init_buffers(b);
942 duplicate_buffers(b->fmt_ops);
944 return clone;
947 #define CONST_GLOBAL_STR2(var, val) do { \
948 g_##var = rb_obj_freeze(rb_str_new(val, sizeof(val) - 1)); \
949 rb_global_variable(&g_##var); \
950 } while (0)
952 #define CONST_GLOBAL_STR(val) CONST_GLOBAL_STR2(val, #val)
955 * call-seq:
956 * clogger.respond_to?(:to_path) => true or false
957 * clogger.respond_to?(:close) => true
959 * used to delegate +:to_path+ checks for Rack webservers that optimize
960 * static file serving
962 static VALUE respond_to(VALUE self, VALUE method)
964 struct clogger *c = clogger_get(self);
965 ID id = rb_to_id(method);
967 if (close_id == id)
968 return Qtrue;
969 return rb_respond_to(c->body, id);
973 * call-seq:
974 * clogger.to_path
976 * used to proxy +:to_path+ method calls to the wrapped response body.
978 static VALUE to_path(VALUE self)
980 struct clogger *c = clogger_get(self);
981 struct stat sb;
982 int rv;
983 VALUE path = rb_funcall(c->body, to_path_id, 0);
985 /* try to avoid an extra path lookup */
986 if (rb_respond_to(c->body, to_io_id)) {
987 rv = fstat(my_fileno(c->body), &sb);
988 } else {
989 const char *cpath = StringValueCStr(path);
990 unsigned devfd;
992 * Rainbows! can use "/dev/fd/%u" in to_path output to avoid
993 * extra open() syscalls, too.
995 if (sscanf(cpath, "/dev/fd/%u", &devfd) == 1)
996 rv = fstat((int)devfd, &sb);
997 else
998 rv = stat(cpath, &sb);
1002 * calling this method implies the web server will bypass
1003 * the each method where body_bytes_sent is calculated,
1004 * so we stat and set that value here.
1006 c->body_bytes_sent = rv == 0 ? sb.st_size : 0;
1007 return path;
1011 * call-seq:
1012 * clogger.to_io
1014 * used to proxy +:to_io+ method calls to the wrapped response body.
1016 static VALUE to_io(VALUE self)
1018 struct clogger *c = clogger_get(self);
1019 struct stat sb;
1020 VALUE io = rb_convert_type(c->body, T_FILE, "IO", "to_io");
1022 if (fstat(my_fileno(io), &sb) == 0)
1023 c->body_bytes_sent = sb.st_size;
1025 return io;
1028 /* :nodoc: */
1029 static VALUE body(VALUE self)
1031 return clogger_get(self)->body;
1034 void Init_clogger_ext(void)
1036 VALUE tmp;
1038 check_clock();
1040 ltlt_id = rb_intern("<<");
1041 call_id = rb_intern("call");
1042 each_id = rb_intern("each");
1043 close_id = rb_intern("close");
1044 to_i_id = rb_intern("to_i");
1045 to_s_id = rb_intern("to_s");
1046 size_id = rb_intern("size");
1047 sq_brace_id = rb_intern("[]");
1048 new_id = rb_intern("new");
1049 to_path_id = rb_intern("to_path");
1050 to_io_id = rb_intern("to_io");
1051 respond_to_id = rb_intern("respond_to?");
1052 cClogger = rb_define_class("Clogger", rb_cObject);
1053 mFormat = rb_define_module_under(cClogger, "Format");
1054 rb_define_alloc_func(cClogger, clogger_alloc);
1055 rb_define_method(cClogger, "initialize", clogger_init, -1);
1056 rb_define_method(cClogger, "initialize_copy", clogger_init_copy, 1);
1057 rb_define_method(cClogger, "call", clogger_call, 1);
1058 rb_define_method(cClogger, "each", clogger_each, 0);
1059 rb_define_method(cClogger, "close", clogger_close, 0);
1060 rb_define_method(cClogger, "fileno", clogger_fileno, 0);
1061 rb_define_method(cClogger, "wrap_body?", clogger_wrap_body, 0);
1062 rb_define_method(cClogger, "reentrant?", clogger_reentrant, 0);
1063 rb_define_method(cClogger, "to_path", to_path, 0);
1064 rb_define_method(cClogger, "to_io", to_io, 0);
1065 rb_define_method(cClogger, "respond_to?", respond_to, 1);
1066 rb_define_method(cClogger, "body", body, 0);
1067 CONST_GLOBAL_STR(REMOTE_ADDR);
1068 CONST_GLOBAL_STR(HTTP_X_FORWARDED_FOR);
1069 CONST_GLOBAL_STR(REQUEST_METHOD);
1070 CONST_GLOBAL_STR(PATH_INFO);
1071 CONST_GLOBAL_STR(QUERY_STRING);
1072 CONST_GLOBAL_STR(REQUEST_URI);
1073 CONST_GLOBAL_STR(HTTP_VERSION);
1074 CONST_GLOBAL_STR2(rack_errors, "rack.errors");
1075 CONST_GLOBAL_STR2(rack_input, "rack.input");
1076 CONST_GLOBAL_STR2(rack_multithread, "rack.multithread");
1077 CONST_GLOBAL_STR2(dash, "-");
1078 CONST_GLOBAL_STR2(space, " ");
1079 CONST_GLOBAL_STR2(question_mark, "?");
1080 CONST_GLOBAL_STR2(rack_request_cookie_hash, "rack.request.cookie_hash");
1082 tmp = rb_const_get(rb_cObject, rb_intern("Rack"));
1083 tmp = rb_const_get(tmp, rb_intern("Utils"));
1084 cHeaderHash = rb_const_get(tmp, rb_intern("HeaderHash"));