Class: LSAPI
- Inherits:
-
Object
- Object
- LSAPI
- Defined in:
- ext/lsapi/lsruby.c
Class Method Summary collapse
Instance Method Summary collapse
- #<<(str) ⇒ Object
- #binmode ⇒ Object
- #close ⇒ Object
- #closed? ⇒ Boolean
- #each ⇒ Object
- #eof ⇒ Object
- #eof? ⇒ Boolean
- #flush ⇒ Object
- #getc ⇒ Object
-
#gets ⇒ Object
rb_define_method(cLSAPI, “ungetc”, lsapi_ungetc, 1);.
- #isatty ⇒ Object
- #print(*args) ⇒ Object
- #printf(*args) ⇒ Object
- #process ⇒ Object
-
#putc(c) ⇒ Object
rb_define_method(cLSAPI, “initialize”, lsapi_initialize, 0);.
- #puts(*args) ⇒ Object
-
#read(*args) ⇒ Object
rb_define_method(cLSAPI, “readline”, lsapi_gets, 0);.
- #reopen(*args) ⇒ Object
- #rewind ⇒ Object
- #sync ⇒ Object
- #sync=(sync) ⇒ Object
- #tty? ⇒ Boolean
- #write(str) ⇒ Object
Class Method Details
.accept ⇒ Object
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'ext/lsapi/lsruby.c', line 200
static VALUE lsapi_s_accept( VALUE self )
{
int pid;
if ( LSAPI_Prefork_Accept_r( &g_req ) == -1 )
return Qnil;
else
{
if (s_body.bodyBuf != NULL)
free (s_body.bodyBuf);
s_body.bodyBuf = NULL;
s_body.bodyLen = -1;
s_body.bodyCurrentLen = 0;
s_body.curPos = 0;
pid = getpid();
if ( pid != s_pid )
{
s_pid = pid;
rb_funcall( Qnil, rb_intern( "srand" ), 0 );
}
setup_cgi_env( s_req_data );
return s_req;
}
}
|
.accept_new_connection ⇒ Object
228 229 230 231 232 233 234 |
# File 'ext/lsapi/lsruby.c', line 228
static VALUE lsapi_s_accept_new_conn(VALUE self)
{
if (LSAPI_Accept_Before_Fork(&g_req) == -1 )
return Qnil;
else
return s_req;
}
|
.postfork_child ⇒ Object
237 238 239 240 241 |
# File 'ext/lsapi/lsruby.c', line 237
static VALUE lsapi_s_postfork_child(VALUE self)
{
LSAPI_Postfork_Child(&g_req);
return s_req;
}
|
.postfork_parent ⇒ Object
244 245 246 247 248 |
# File 'ext/lsapi/lsruby.c', line 244
static VALUE lsapi_s_postfork_parent(VALUE self)
{
LSAPI_Postfork_Parent(&g_req);
return s_req;
}
|
Instance Method Details
#<<(str) ⇒ Object
446 447 448 449 450 |
# File 'ext/lsapi/lsruby.c', line 446
static VALUE lsapi_addstr(VALUE out, VALUE str)
{
lsapi_write(out, str);
return out;
}
|
#binmode ⇒ Object
725 726 727 728 |
# File 'ext/lsapi/lsruby.c', line 725
static VALUE lsapi_binmode(VALUE self)
{
return self;
}
|
#close ⇒ Object
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 |
# File 'ext/lsapi/lsruby.c', line 750
static VALUE lsapi_close(VALUE self)
{
LSAPI_Flush_r( &g_req );
if (isBodyWriteToFile())
{
//msync(s_body.bodyBuf, s_body.bodyLen, MS_SYNC);
//sleep(5);
munmap(s_body.bodyBuf, s_body.bodyLen);
}
else
free(s_body.bodyBuf);
s_body.bodyBuf = NULL;
s_body.bodyLen = -1;
s_body.bodyCurrentLen = 0;
s_body.curPos = 0;
//Should the temp be deleted here?!
return Qnil;
}
|
#closed? ⇒ Boolean
735 736 737 738 |
# File 'ext/lsapi/lsruby.c', line 735
static VALUE lsapi_isclosed(VALUE self)
{
return Qfalse;
}
|
#each ⇒ Object
706 707 708 709 710 711 712 713 714 715 716 717 718 |
# File 'ext/lsapi/lsruby.c', line 706
static VALUE lsapi_each(VALUE self)
{
VALUE str;
lsapi_rewind(self);
while(isEofBodyBuf() != 1)
{
str = lsapi_gets(self);
rb_yield(str);
}
return self;
}
|
#eof ⇒ Object
720 721 722 723 |
# File 'ext/lsapi/lsruby.c', line 720
static VALUE lsapi_eof(VALUE self)
{
return (LSAPI_GetReqBodyRemain_r( &g_req ) <= 0) ? Qtrue : Qfalse;
}
|
#eof? ⇒ Boolean
720 721 722 723 |
# File 'ext/lsapi/lsruby.c', line 720
static VALUE lsapi_eof(VALUE self)
{
return (LSAPI_GetReqBodyRemain_r( &g_req ) <= 0) ? Qtrue : Qfalse;
}
|
#flush ⇒ Object
452 453 454 455 456 457 458 459 460 |
# File 'ext/lsapi/lsruby.c', line 452
static VALUE lsapi_flush( VALUE self )
{
/*
* lsapi_data *data;
* Data_Get_Struct(self,lsapi_data, data);
*/
LSAPI_Flush_r( &g_req );
return Qnil;
}
|
#getc ⇒ Object
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
# File 'ext/lsapi/lsruby.c', line 462
static VALUE lsapi_getc( VALUE self )
{
int ch;
/*
* lsapi_data *data;
* Data_Get_Struct(self,lsapi_data, data);
*/
#if RUBY_API_VERSION_CODE < 20700
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self))
{
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
ch = LSAPI_ReqBodyGetChar_r( &g_req );
if ( ch == EOF )
return Qnil;
return INT2NUM( ch );
}
|
#gets ⇒ Object
rb_define_method(cLSAPI, “ungetc”, lsapi_ungetc, 1);
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 |
# File 'ext/lsapi/lsruby.c', line 589
static VALUE lsapi_gets( VALUE self )
{
VALUE str;
const int blkSize = 4096;
int n;
char *p = NULL;
#if RUBY_API_VERSION_CODE < 20700
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self))
{
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
if (createBodyBuf() == 1)
{
return Qnil;
}
//comment:
while((p = memmem(s_body.bodyBuf + s_body.curPos, s_body.bodyCurrentLen - s_body.curPos, "\n", 1)) == NULL)
{
if (isAllBodyRead() == 1)
break;
//read one page and check, then reply
readBodyBuf(blkSize);
}
p = memmem(s_body.bodyBuf + s_body.curPos, s_body.bodyCurrentLen - s_body.curPos, "\n", 1);
if (p != NULL)
n = p - s_body.bodyBuf - s_body.curPos + 1;
else
n = s_body.bodyCurrentLen - s_body.curPos;
str = rb_str_buf_new( n );
#if RUBY_API_VERSION_CODE < 20700
OBJ_TAINT(str);
#endif
if (n > 0)
{
rb_str_buf_cat( str, s_body.bodyBuf + s_body.curPos, n );
s_body.curPos += n;
}
return str;
}
|
#isatty ⇒ Object
730 731 732 733 |
# File 'ext/lsapi/lsruby.c', line 730
static VALUE lsapi_isatty(VALUE self)
{
return Qfalse;
}
|
#print(*args) ⇒ Object
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
# File 'ext/lsapi/lsruby.c', line 322
static VALUE lsapi_print( int argc, VALUE *argv, VALUE out )
{
int i;
VALUE line;
/* if no argument given, print `$_' */
if (argc == 0)
{
argc = 1;
line = rb_lastline_get();
argv = &line;
}
for (i = 0; i<argc; i++)
{
if (!NIL_P(rb_output_fs) && i>0)
{
lsapi_write(out, rb_output_fs);
}
switch (TYPE(argv[i]))
{
case T_NIL:
lsapi_write(out, rb_str_new2("nil"));
break;
default:
lsapi_write(out, argv[i]);
break;
}
}
if (!NIL_P(rb_output_rs))
{
lsapi_write(out, rb_output_rs);
}
return Qnil;
}
|
#printf(*args) ⇒ Object
358 359 360 361 362 |
# File 'ext/lsapi/lsruby.c', line 358
static VALUE lsapi_printf(int argc, VALUE *argv, VALUE out)
{
lsapi_write(out, rb_f_sprintf(argc, argv));
return Qnil;
}
|
#process ⇒ Object
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
# File 'ext/lsapi/lsruby.c', line 280
static VALUE lsapi_process( VALUE self )
{
/* lsapi_data *data;
const char * pScriptPath;
Data_Get_Struct(self,lsapi_data, data);
pScriptPath = LSAPI_GetScriptFileName_r( data->req );
*/
/*
* if ( chdir_file( pScriptPath ) == -1 )
* {
* lsapi_send_error( 404 );
* }
* rb_load_file( pScriptPath );
*/
return Qnil;
}
|
#putc(c) ⇒ Object
rb_define_method(cLSAPI, “initialize”, lsapi_initialize, 0);
298 299 300 301 302 303 304 305 306 307 |
# File 'ext/lsapi/lsruby.c', line 298
static VALUE lsapi_putc(VALUE self, VALUE c)
{
char ch = NUM2CHR(c);
lsapi_data *data;
Data_Get_Struct(self,lsapi_data, data);
if ( (*data->fn_write)( data->req, &ch, 1 ) == 1 )
return c;
else
return INT2NUM( EOF );
}
|
#puts(*args) ⇒ Object
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
# File 'ext/lsapi/lsruby.c', line 405
static VALUE lsapi_puts(int argc, VALUE *argv, VALUE out)
{
int i;
VALUE line;
/* if no argument given, print newline. */
if (argc == 0)
{
lsapi_write(out, rb_default_rs);
return Qnil;
}
for (i=0; i<argc; i++)
{
switch (TYPE(argv[i]))
{
case T_NIL:
line = rb_str_new2("nil");
break;
case T_ARRAY:
#if RUBY_API_VERSION_CODE >= 10900
rb_exec_recursive(lsapi_puts_ary, argv[i], out);
#else
rb_protect_inspect(lsapi_puts_ary, argv[i], out);
#endif
continue;
default:
line = argv[i];
break;
}
line = rb_obj_as_string(line);
lsapi_write(out, line);
if (*( RSTRING_PTR(line) + RSTRING_LEN(line) - 1 ) != '\n')
{
lsapi_write(out, rb_default_rs);
}
}
return Qnil;
}
|
#read(*args) ⇒ Object
rb_define_method(cLSAPI, “readline”, lsapi_gets, 0);
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 |
# File 'ext/lsapi/lsruby.c', line 636
static VALUE lsapi_read(int argc, VALUE *argv, VALUE self)
{
VALUE str;
int n;
int needRead;
int nRead;
#if RUBY_API_VERSION_CODE < 20700
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self))
{
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
if (createBodyBuf() == 1)
{
return Qnil;
}
//we need to consider these 4 cases:
//1, need all data since argc == 0, we may have all data 2, or not
//3, need a length of data (argv >= 1), we may have enough data already read, 4, or not
if (argc == 0)
n = s_body.bodyLen - s_body.curPos;
else
{
n = NUM2INT(argv[0]); //request that length from currentpos
if (n < 0)
return Qnil;
if (n > s_body.bodyLen - s_body.curPos)
n = s_body.bodyLen - s_body.curPos;
}
needRead = s_body.curPos + n - s_body.bodyCurrentLen;
if (needRead < 0)
needRead = 0;
str = rb_str_buf_new( n );
#if RUBY_API_VERSION_CODE < 20700
OBJ_TAINT(str);
#endif
if (n == 0)
return str;
//copy already have part first
if (n - needRead != 0)
{
rb_str_buf_cat( str, s_body.bodyBuf + s_body.curPos, n - needRead);
s_body.curPos += (n - needRead);
}
if (needRead > 0)
{
//try to read needRead, but may be less (changed) when read the end of the data
nRead = readBodyBuf(needRead);
if (nRead > 0)
{
n = ((nRead < needRead) ? nRead : needRead);
rb_str_buf_cat( str, s_body.bodyBuf + s_body.curPos, n );
s_body.curPos += n;
}
}
return str;
}
|
#reopen(*args) ⇒ Object
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 |
# File 'ext/lsapi/lsruby.c', line 772
static VALUE lsapi_reopen( int argc, VALUE *argv, VALUE self)
{
VALUE orig_verbose;
if ( self == s_req_stderr )
{
/* constant silence hack */
orig_verbose = (VALUE)ruby_verbose;
ruby_verbose = Qnil;
rb_define_global_const("STDERR", orig_stderr);
ruby_verbose = (VALUE)orig_verbose;
return rb_funcall2( orig_stderr, rb_intern( "reopen" ), argc, argv );
}
return self;
}
|
#rewind ⇒ Object
700 701 702 703 704 |
# File 'ext/lsapi/lsruby.c', line 700
static VALUE lsapi_rewind(VALUE self)
{
s_body.curPos = 0;
return self;
}
|
#sync ⇒ Object
740 741 742 743 |
# File 'ext/lsapi/lsruby.c', line 740
static VALUE lsapi_sync(VALUE self)
{
return Qfalse;
}
|
#sync=(sync) ⇒ Object
745 746 747 748 |
# File 'ext/lsapi/lsruby.c', line 745
static VALUE lsapi_setsync(VALUE self,VALUE sync)
{
return Qfalse;
}
|
#tty? ⇒ Boolean
730 731 732 733 |
# File 'ext/lsapi/lsruby.c', line 730
static VALUE lsapi_isatty(VALUE self)
{
return Qfalse;
}
|
#write(str) ⇒ Object
310 311 312 313 314 315 316 317 318 319 320 |
# File 'ext/lsapi/lsruby.c', line 310
static VALUE lsapi_write( VALUE self, VALUE str )
{
lsapi_data *data;
int len;
Data_Get_Struct(self,lsapi_data, data);
/* len = LSAPI_Write_r( data->req, RSTRING_PTR(str), RSTRING_LEN(str) ); */
if (TYPE(str) != T_STRING)
str = rb_obj_as_string(str);
len = (*data->fn_write)( data->req, RSTRING_PTR(str), RSTRING_LEN(str) );
return INT2NUM( len );
}
|