16 #ifndef _POSIX_C_SOURCE
17 # define _POSIX_C_SOURCE 200112L
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
31 static clockid_t hopefully_CLOCK_MONOTONIC
;
33 static void check_clock(void)
37 hopefully_CLOCK_MONOTONIC
= CLOCK_MONOTONIC
;
39 /* we can't check this reliably at compile time */
40 if (clock_gettime(CLOCK_MONOTONIC
, &now
) == 0)
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
;
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)
69 # define unlikely(x) (x)
70 # define likely(x) (x)
86 enum clogger_special
{
87 CL_SP_body_bytes_sent
= 0,
91 CL_SP_response_length
,
113 off_t body_bytes_sent
;
114 struct timespec ts_start
;
119 int reentrant
; /* tri-state, -1:auto, 1/0 true/false */
129 static ID sq_brace_id
;
131 static ID to_path_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
;
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
)
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
);
177 for (; --len
>= 0; ptr
++) {
180 if (unlikely(need_escape(c
)))
181 new_len
+= 3; /* { '\', 'x', 'X', 'X' } */
184 len
= RSTRING_LEN(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
++) {
194 if (unlikely(need_escape(c
))) {
197 *new_ptr
++ = esc
[c
>> 4];
198 *new_ptr
++ = esc
[c
& 0xf];
203 assert(RSTRING_PTR(rv
)[RSTRING_LEN(rv
)] == '\0');
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
;
218 rb_gc_mark(c
->fmt_ops
);
219 rb_gc_mark(c
->logger
);
220 rb_gc_mark(c
->log_buf
);
222 rb_gc_mark(c
->cookies
);
223 rb_gc_mark(c
->status
);
224 rb_gc_mark(c
->headers
);
228 static VALUE
clogger_alloc(VALUE klass
)
232 return Data_Make_Struct(klass
, struct clogger
, clogger_mark
, -1, c
);
235 static struct clogger
*clogger_get(VALUE self
)
239 Data_Get_Struct(self
, struct clogger
, 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
)
248 unsigned long ubuf
= (unsigned long)buf
;
251 r
= write(fd
, (void *)ubuf
, count
);
253 if ((size_t)r
== count
) { /* overwhelmingly likely */
259 if (errno
== EINTR
|| errno
== EAGAIN
)
260 continue; /* poor souls on NFS and like: */
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)
282 flags
= fcntl(fd
, F_GETFL
);
284 rb_sys_fail("fcntl");
286 if (flags
& O_NONBLOCK
) {
289 if (fstat(fd
, &sb
) < 0)
292 /* O_NONBLOCK is no-op for regular files: */
293 if (! S_ISREG(sb
.st_mode
))
297 #else /* platforms w/o fcntl/F_GETFL/O_NONBLOCK */
299 #endif /* platforms w/o fcntl/F_GETFL/O_NONBLOCK */
303 static VALUE
clogger_reentrant(VALUE self
)
305 return clogger_get(self
)->reentrant
== 0 ? Qfalse
: Qtrue
;
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")];
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
);
329 nr
= FIX2INT(status
);
330 if (nr
>= 100 && nr
<= 999) {
331 nr
= snprintf(buf
, sizeof(buf
), "%03d", nr
);
333 rb_str_buf_cat(c
->log_buf
, buf
, nr
);
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
)
344 VALUE tmp
= rb_hash_aref(env
, g_HTTP_X_FORWARDED_FOR
);
347 /* can't be faked on any real server, so no escape */
348 tmp
= rb_hash_aref(env
, g_REMOTE_ADDR
);
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)];
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
)
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
)
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
)
404 tmp
= rb_hash_aref(c
->env
, g_REQUEST_URI
);
406 tmp
= rb_hash_aref(c
->env
, g_PATH_INFO
);
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
));
415 rb_str_buf_append(c
->log_buf
, byte_xs(tmp
));
419 static void append_request(struct clogger
*c
)
423 /* REQUEST_METHOD doesn't need escaping, Rack::Lint governs it */
424 tmp
= rb_hash_aref(c
->env
, g_REQUEST_METHOD
);
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
);
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
);
444 rb_str_buf_append(c
->log_buf
, g_dash
);
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
);
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;
465 return -(tm
->tm_isdst
? timezone
- 3600 : timezone
) / 60;
469 static void append_time_iso8601(struct clogger
*c
)
471 char buf
[sizeof("1970-01-01T00:00:00+00:00")];
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")];
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")];
513 time_t t
= time(NULL
);
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);
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" */
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
)
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
)
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
)
568 if (c
->cookies
== Qfalse
)
569 c
->cookies
= rb_hash_aref(c
->env
, g_rack_request_cookie_hash
);
571 if (NIL_P(c
->cookies
)) {
574 cookie
= rb_hash_aref(c
->cookies
, key
);
575 cookie
= NIL_P(cookie
) ? g_dash
: byte_xs(cookie
);
577 rb_str_buf_append(c
->log_buf
, cookie
);
580 static void append_request_env(struct clogger
*c
, VALUE key
)
582 VALUE tmp
= rb_hash_aref(c
->env
, key
);
584 tmp
= NIL_P(tmp
) ? g_dash
: byte_xs(tmp
);
585 rb_str_buf_append(c
->log_buf
, tmp
);
588 static void append_response(struct clogger
*c
, VALUE key
)
592 assert(rb_obj_is_kind_of(c
->headers
, cHeaderHash
) && "not HeaderHash");
594 v
= rb_funcall(c
->headers
, sq_brace_id
, 1, key
);
595 v
= NIL_P(v
) ? g_dash
: byte_xs(v
);
596 rb_str_buf_append(c
->log_buf
, v
);
599 static void special_var(struct clogger
*c
, enum clogger_special var
)
602 case CL_SP_body_bytes_sent
:
603 append_body_bytes_sent(c
);
611 case CL_SP_request_length
:
612 append_request_length(c
);
614 case CL_SP_response_length
:
615 if (c
->body_bytes_sent
== 0)
616 rb_str_buf_append(c
->log_buf
, g_dash
);
618 append_body_bytes_sent(c
);
626 case CL_SP_request_uri
:
627 append_request_uri(c
);
629 case CL_SP_time_iso8601
:
630 append_time_iso8601(c
);
632 case CL_SP_time_local
:
633 append_time_local(c
);
640 static VALUE
cwrite(struct clogger
*c
)
642 const VALUE ops
= c
->fmt_ops
;
643 const VALUE
*ary
= RARRAY_PTR(ops
);
644 long i
= RARRAY_LEN(ops
);
645 VALUE dst
= c
->log_buf
;
647 rb_str_set_len(dst
, 0);
649 for (; --i
>= 0; ary
++) {
650 const VALUE
*op
= RARRAY_PTR(*ary
);
651 enum clogger_opcode opcode
= FIX2INT(op
[0]);
655 rb_str_buf_append(dst
, op
[1]);
658 append_request_env(c
, op
[1]);
661 append_response(c
, op
[1]);
664 special_var(c
, FIX2INT(op
[1]));
667 append_eval(c
, op
[1]);
669 case CL_OP_TIME_LOCAL
:
671 append_time(c
, opcode
, op
[1], op
[2]);
673 case CL_OP_REQUEST_TIME
:
674 append_request_time_fmt(c
, op
);
677 append_time_fmt(c
, op
);
680 append_cookie(c
, op
[1]);
686 write_full(c
->fd
, RSTRING_PTR(dst
), RSTRING_LEN(dst
));
688 VALUE logger
= c
->logger
;
691 logger
= rb_hash_aref(c
->env
, g_rack_errors
);
692 rb_funcall(logger
, ltlt_id
, 1, dst
);
698 static VALUE
clogger_write(VALUE self
)
700 return cwrite(clogger_get(self
));
703 static void init_logger(struct clogger
*c
, VALUE path
)
707 if (!NIL_P(path
) && !NIL_P(c
->logger
))
708 rb_raise(rb_eArgError
, ":logger and :path are independent");
710 VALUE ab
= rb_str_new2("ab");
711 id
= rb_intern("open");
712 c
->logger
= rb_funcall(rb_cFile
, id
, 2, path
, ab
);
715 id
= rb_intern("sync=");
716 if (rb_respond_to(c
->logger
, id
))
717 rb_funcall(c
->logger
, id
, 1, Qtrue
);
719 id
= rb_intern("fileno");
720 if (rb_respond_to(c
->logger
, id
))
721 c
->fd
= raw_fd(rb_funcall(c
->logger
, id
, 0));
726 * Clogger.new(app, :logger => $stderr, :format => string) => obj
728 * Creates a new Clogger object that wraps +app+. +:logger+ may
729 * be any object that responds to the "<<" method with a string argument.
730 * Instead of +:logger+, +:path+ may be specified to be a :path of a File
731 * that will be opened in append mode.
733 static VALUE
clogger_init(int argc
, VALUE
*argv
, VALUE self
)
735 struct clogger
*c
= clogger_get(self
);
737 VALUE fmt
= rb_const_get(mFormat
, rb_intern("Common"));
739 rb_scan_args(argc
, argv
, "11", &c
->app
, &o
);
742 c
->reentrant
= -1; /* auto-detect */
744 if (TYPE(o
) == T_HASH
) {
747 tmp
= rb_hash_aref(o
, ID2SYM(rb_intern("path")));
748 c
->logger
= rb_hash_aref(o
, ID2SYM(rb_intern("logger")));
751 tmp
= rb_hash_aref(o
, ID2SYM(rb_intern("format")));
755 tmp
= rb_hash_aref(o
, ID2SYM(rb_intern("reentrant")));
765 rb_raise(rb_eArgError
, ":reentrant must be boolean");
770 c
->fmt_ops
= rb_funcall(self
, rb_intern("compile_format"), 2, fmt
, o
);
772 if (Qtrue
== rb_funcall(self
, rb_intern("need_response_headers?"),
775 if (Qtrue
== rb_funcall(self
, rb_intern("need_wrap_body?"),
782 static VALUE
body_iter_i(VALUE str
, VALUE self
)
784 struct clogger
*c
= clogger_get(self
);
786 str
= rb_obj_as_string(str
);
787 c
->body_bytes_sent
+= RSTRING_LEN(str
);
789 return rb_yield(str
);
792 static VALUE
body_close(VALUE self
)
794 struct clogger
*c
= clogger_get(self
);
796 if (rb_respond_to(c
->body
, close_id
))
797 return rb_funcall(c
->body
, close_id
, 0);
803 * clogger.each { |part| socket.write(part) }
805 * Delegates the body#each call to the underlying +body+ object
806 * while tracking the number of bytes yielded. This will log
809 static VALUE
clogger_each(VALUE self
)
811 struct clogger
*c
= clogger_get(self
);
814 c
->body_bytes_sent
= 0;
815 rb_iterate(rb_each
, c
->body
, body_iter_i
, self
);
824 * Delegates the body#close call to the underlying +body+ object.
825 * This is only used when Clogger is wrapping the +body+ of a Rack
826 * response and should be automatically called by the web server.
828 static VALUE
clogger_close(VALUE self
)
831 return rb_ensure(body_close
, self
, clogger_write
, self
);
835 static VALUE
clogger_fileno(VALUE self
)
837 struct clogger
*c
= clogger_get(self
);
839 return c
->fd
< 0 ? Qnil
: INT2NUM(c
->fd
);
842 static VALUE
ccall(struct clogger
*c
, VALUE env
)
846 clock_gettime(hopefully_CLOCK_MONOTONIC
, &c
->ts_start
);
849 rv
= rb_funcall(c
->app
, call_id
, 1, env
);
850 if (TYPE(rv
) == T_ARRAY
&& RARRAY_LEN(rv
) == 3) {
851 VALUE
*tmp
= RARRAY_PTR(rv
);
857 rv
= rb_ary_new4(3, tmp
);
859 ! rb_obj_is_kind_of(tmp
[1], cHeaderHash
)) {
860 c
->headers
= rb_funcall(cHeaderHash
, new_id
, 1, tmp
[1]);
861 rb_ary_store(rv
, 1, c
->headers
);
864 volatile VALUE tmp
= rb_inspect(rv
);
866 c
->status
= INT2FIX(500);
867 c
->headers
= c
->body
= rb_ary_new();
869 rb_raise(rb_eTypeError
,
870 "app response not a 3 element Array: %s",
879 * clogger.call(env) => [ status, headers, body ]
881 * calls the wrapped Rack application with +env+, returns the
882 * [status, headers, body ] tuplet required by Rack.
884 static VALUE
clogger_call(VALUE self
, VALUE env
)
886 struct clogger
*c
= clogger_get(self
);
889 env
= rb_check_convert_type(env
, T_HASH
, "Hash", "to_hash");
892 /* XXX: we assume the existence of the GVL here: */
893 if (c
->reentrant
< 0) {
894 VALUE tmp
= rb_hash_aref(env
, g_rack_multithread
);
895 c
->reentrant
= Qfalse
== tmp
? 0 : 1;
899 self
= rb_obj_dup(self
);
900 c
= clogger_get(self
);
904 assert(!OBJ_FROZEN(rv
) && "frozen response array");
905 rb_ary_store(rv
, 2, self
);
916 static void duplicate_buffers(VALUE ops
)
918 long i
= RARRAY_LEN(ops
);
919 VALUE
*ary
= RARRAY_PTR(ops
);
921 for ( ; --i
>= 0; ary
++) {
922 VALUE
*op
= RARRAY_PTR(*ary
);
923 enum clogger_opcode opcode
= FIX2INT(op
[0]);
925 if (opcode
== CL_OP_TIME_LOCAL
|| opcode
== CL_OP_TIME_UTC
) {
926 Check_Type(op
[2], T_STRING
);
927 op
[2] = rb_str_dup(op
[2]);
928 rb_str_modify(op
[2]); /* trigger copy-on-write */
934 static VALUE
clogger_init_copy(VALUE clone
, VALUE orig
)
936 struct clogger
*a
= clogger_get(orig
);
937 struct clogger
*b
= clogger_get(clone
);
939 memcpy(b
, a
, sizeof(struct clogger
));
941 duplicate_buffers(b
->fmt_ops
);
946 #define CONST_GLOBAL_STR2(var, val) do { \
947 g_##var = rb_obj_freeze(rb_str_new(val, sizeof(val) - 1)); \
948 rb_global_variable(&g_##var); \
951 #define CONST_GLOBAL_STR(val) CONST_GLOBAL_STR2(val, #val)
955 * clogger.respond_to?(:to_path) => true or false
956 * clogger.respond_to?(:close) => true
958 * used to delegate +:to_path+ checks for Rack webservers that optimize
959 * static file serving
961 static VALUE
respond_to(VALUE self
, VALUE method
)
963 struct clogger
*c
= clogger_get(self
);
964 ID id
= rb_to_id(method
);
968 return rb_respond_to(c
->body
, id
);
975 * used to proxy +:to_path+ method calls to the wrapped response body.
977 static VALUE
to_path(VALUE self
)
979 struct clogger
*c
= clogger_get(self
);
982 VALUE path
= rb_funcall(c
->body
, to_path_id
, 0);
984 /* try to avoid an extra path lookup */
985 if (rb_respond_to(c
->body
, to_io_id
)) {
986 rv
= fstat(my_fileno(c
->body
), &sb
);
988 const char *cpath
= StringValueCStr(path
);
991 * Rainbows! can use "/dev/fd/%u" in to_path output to avoid
992 * extra open() syscalls, too.
994 if (sscanf(cpath
, "/dev/fd/%u", &devfd
) == 1)
995 rv
= fstat((int)devfd
, &sb
);
997 rv
= stat(cpath
, &sb
);
1001 * calling this method implies the web server will bypass
1002 * the each method where body_bytes_sent is calculated,
1003 * so we stat and set that value here.
1005 c
->body_bytes_sent
= rv
== 0 ? sb
.st_size
: 0;
1013 * used to proxy +:to_io+ method calls to the wrapped response body.
1015 static VALUE
to_io(VALUE self
)
1017 struct clogger
*c
= clogger_get(self
);
1019 VALUE io
= rb_convert_type(c
->body
, T_FILE
, "IO", "to_io");
1021 if (fstat(my_fileno(io
), &sb
) == 0)
1022 c
->body_bytes_sent
= sb
.st_size
;
1028 static VALUE
body(VALUE self
)
1030 return clogger_get(self
)->body
;
1033 void Init_clogger_ext(void)
1039 ltlt_id
= rb_intern("<<");
1040 call_id
= rb_intern("call");
1041 each_id
= rb_intern("each");
1042 close_id
= rb_intern("close");
1043 to_i_id
= rb_intern("to_i");
1044 to_s_id
= rb_intern("to_s");
1045 size_id
= rb_intern("size");
1046 sq_brace_id
= rb_intern("[]");
1047 new_id
= rb_intern("new");
1048 to_path_id
= rb_intern("to_path");
1049 to_io_id
= rb_intern("to_io");
1050 respond_to_id
= rb_intern("respond_to?");
1051 cClogger
= rb_define_class("Clogger", rb_cObject
);
1052 mFormat
= rb_define_module_under(cClogger
, "Format");
1053 rb_define_alloc_func(cClogger
, clogger_alloc
);
1054 rb_define_method(cClogger
, "initialize", clogger_init
, -1);
1055 rb_define_method(cClogger
, "initialize_copy", clogger_init_copy
, 1);
1056 rb_define_method(cClogger
, "call", clogger_call
, 1);
1057 rb_define_method(cClogger
, "each", clogger_each
, 0);
1058 rb_define_method(cClogger
, "close", clogger_close
, 0);
1059 rb_define_method(cClogger
, "fileno", clogger_fileno
, 0);
1060 rb_define_method(cClogger
, "wrap_body?", clogger_wrap_body
, 0);
1061 rb_define_method(cClogger
, "reentrant?", clogger_reentrant
, 0);
1062 rb_define_method(cClogger
, "to_path", to_path
, 0);
1063 rb_define_method(cClogger
, "to_io", to_io
, 0);
1064 rb_define_method(cClogger
, "respond_to?", respond_to
, 1);
1065 rb_define_method(cClogger
, "body", body
, 0);
1066 CONST_GLOBAL_STR(REMOTE_ADDR
);
1067 CONST_GLOBAL_STR(HTTP_X_FORWARDED_FOR
);
1068 CONST_GLOBAL_STR(REQUEST_METHOD
);
1069 CONST_GLOBAL_STR(PATH_INFO
);
1070 CONST_GLOBAL_STR(QUERY_STRING
);
1071 CONST_GLOBAL_STR(REQUEST_URI
);
1072 CONST_GLOBAL_STR(HTTP_VERSION
);
1073 CONST_GLOBAL_STR2(rack_errors
, "rack.errors");
1074 CONST_GLOBAL_STR2(rack_input
, "rack.input");
1075 CONST_GLOBAL_STR2(rack_multithread
, "rack.multithread");
1076 CONST_GLOBAL_STR2(dash
, "-");
1077 CONST_GLOBAL_STR2(space
, " ");
1078 CONST_GLOBAL_STR2(question_mark
, "?");
1079 CONST_GLOBAL_STR2(rack_request_cookie_hash
, "rack.request.cookie_hash");
1081 tmp
= rb_const_get(rb_cObject
, rb_intern("Rack"));
1082 tmp
= rb_const_get(tmp
, rb_intern("Utils"));
1083 cHeaderHash
= rb_const_get(tmp
, rb_intern("HeaderHash"));