Class: FCGI::Stream
- Inherits:
-
Object
- Object
- FCGI::Stream
- Defined in:
- ext/fcgi/fcgi.c
Defined Under Namespace
Classes: CallSeqError, Error, ParamsError, ProtocolError, UnsupportedVersionError
Instance Method Summary collapse
- #<<(str) ⇒ Object
- #binmode ⇒ Object
- #close ⇒ Object
- #closed? ⇒ Boolean
- #eof ⇒ Object
- #eof? ⇒ Boolean
- #flush ⇒ Object
- #getc ⇒ Object
- #gets ⇒ Object
- #isatty ⇒ Object
- #print(*args) ⇒ Object
- #printf(*args) ⇒ Object
- #putc(ch) ⇒ Object
- #puts(*args) ⇒ Object
- #read(*args) ⇒ Object
- #sync ⇒ Object
- #sync=(sync) ⇒ Object
- #tty? ⇒ Boolean
- #ungetc(ch) ⇒ Object
- #write(str) ⇒ Object
Instance Method Details
#<<(str) ⇒ Object
381 382 383 384 385 |
# File 'ext/fcgi/fcgi.c', line 381
static VALUE fcgi_stream_addstr(VALUE out, VALUE str)
{
fcgi_stream_write(out, str);
return out;
}
|
#binmode ⇒ Object
550 551 552 553 554 555 556 557 558 |
# File 'ext/fcgi/fcgi.c', line 550
static VALUE fcgi_stream_binmode(VALUE self)
{
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
return self;
}
|
#close ⇒ Object
527 528 529 530 531 532 533 534 535 536 537 538 539 540 |
# File 'ext/fcgi/fcgi.c', line 527
static VALUE fcgi_stream_close(VALUE self)
{
FCGX_Stream *stream;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: can't close");
}
#endif
Data_Get_Stream(self, stream);
if (FCGX_FClose(stream) == EOF)
CHECK_STREAM_ERROR(stream);
return Qnil;
}
|
#closed? ⇒ Boolean
542 543 544 545 546 547 548 |
# File 'ext/fcgi/fcgi.c', line 542
static VALUE fcgi_stream_closed(VALUE self)
{
FCGX_Stream *stream;
Data_Get_Stream(self, stream);
return stream->isClosed ? Qtrue : Qfalse;
}
|
#eof ⇒ Object
514 515 516 517 518 519 520 521 522 523 524 525 |
# File 'ext/fcgi/fcgi.c', line 514
static VALUE fcgi_stream_eof(VALUE self)
{
FCGX_Stream *stream;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
Data_Get_Stream(self, stream);
return FCGX_HasSeenEOF(stream) ? Qtrue : Qfalse;
}
|
#eof? ⇒ Boolean
514 515 516 517 518 519 520 521 522 523 524 525 |
# File 'ext/fcgi/fcgi.c', line 514
static VALUE fcgi_stream_eof(VALUE self)
{
FCGX_Stream *stream;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
Data_Get_Stream(self, stream);
return FCGX_HasSeenEOF(stream) ? Qtrue : Qfalse;
}
|
#flush ⇒ Object
387 388 389 390 391 392 393 394 395 |
# File 'ext/fcgi/fcgi.c', line 387
static VALUE fcgi_stream_flush(VALUE self)
{
FCGX_Stream *stream;
Data_Get_Stream(self, stream);
if (FCGX_FFlush(stream) == EOF)
CHECK_STREAM_ERROR(stream);
return Qnil;
}
|
#getc ⇒ Object
397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
# File 'ext/fcgi/fcgi.c', line 397
static VALUE fcgi_stream_getc(VALUE self)
{
FCGX_Stream *stream;
int c;
Data_Get_Stream(self, stream);
if ((c = FCGX_GetChar(stream)) == EOF) {
CHECK_STREAM_ERROR(stream);
return Qnil;
}
else {
return INT2NUM(c);
}
}
|
#gets ⇒ Object
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 |
# File 'ext/fcgi/fcgi.c', line 428
static VALUE fcgi_stream_gets(VALUE self) {
FCGX_Stream *stream;
char buff[BUFSIZ];
VALUE str = rb_str_new(0,0);
OBJ_TAINT(str);
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
Data_Get_Stream(self, stream);
for (;;) {
if (FCGX_GetLine(buff, BUFSIZ, stream) == NULL) {
CHECK_STREAM_ERROR(stream);
break;
}
rb_str_cat(str, buff, strlen(buff));
if (strchr(buff, '\n')) break;
}
if (RSTRING_LEN(str) > 0)
return str;
else
return Qnil;
}
|
#isatty ⇒ Object
560 561 562 563 564 565 566 567 568 |
# File 'ext/fcgi/fcgi.c', line 560
static VALUE fcgi_stream_isatty(VALUE self)
{
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
return Qfalse;
}
|
#print(*args) ⇒ Object
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
# File 'ext/fcgi/fcgi.c', line 292
static VALUE fcgi_stream_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) {
fcgi_stream_write(out, rb_output_fs);
}
switch (TYPE(argv[i])) {
case T_NIL:
fcgi_stream_write(out, rb_str_new2("nil"));
break;
default:
fcgi_stream_write(out, argv[i]);
break;
}
}
if (!NIL_P(rb_output_rs)) {
fcgi_stream_write(out, rb_output_rs);
}
return Qnil;
}
|
#printf(*args) ⇒ Object
323 324 325 326 327 |
# File 'ext/fcgi/fcgi.c', line 323
static VALUE fcgi_stream_printf(int argc, VALUE *argv, VALUE out)
{
fcgi_stream_write(out, rb_f_sprintf(argc, argv));
return Qnil;
}
|
#putc(ch) ⇒ Object
263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'ext/fcgi/fcgi.c', line 263
static VALUE fcgi_stream_putc(VALUE self, VALUE ch)
{
FCGX_Stream *stream;
int c;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
rb_secure(4);
#endif
Data_Get_Stream(self, stream);
if ((c = FCGX_PutChar(NUM2INT(ch), stream)) == EOF)
CHECK_STREAM_ERROR(stream);
return INT2NUM(c);
}
|
#puts(*args) ⇒ Object
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
# File 'ext/fcgi/fcgi.c', line 349
static VALUE fcgi_stream_puts(int argc, VALUE *argv, VALUE out)
{
int i;
VALUE line;
/* if no argument given, print newline. */
if (argc == 0) {
fcgi_stream_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:
rb_exec_recursive(fcgi_stream_puts_ary, argv[i], out);
continue;
default:
line = argv[i];
break;
}
line = rb_obj_as_string(line);
fcgi_stream_write(out, line);
if (RSTRING_PTR(line)[RSTRING_LEN(line)-1] != '\n') {
fcgi_stream_write(out, rb_default_rs);
}
}
return Qnil;
}
|
#read(*args) ⇒ Object
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 |
# File 'ext/fcgi/fcgi.c', line 456
static VALUE fcgi_stream_read(int argc, VALUE *argv, VALUE self)
{
VALUE num,str;
FCGX_Stream *stream;
char *buff;
int n;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
Data_Get_Stream(self, stream);
if (argc==0) {
buff = ALLOC_N(char, 16384);
n = FCGX_GetStr(buff, 16384, stream);
CHECK_STREAM_ERROR(stream);
if (n == 0) {
free(buff);
return Qnil;
}
str = rb_str_new(buff, n);
OBJ_TAINT(str);
while(!FCGX_HasSeenEOF(stream)) {
n = FCGX_GetStr(buff, 16384, stream);
CHECK_STREAM_ERROR(stream);
if (n > 0) {
rb_str_cat(str, buff, n);
} else {
free(buff);
return Qnil;
}
}
free(buff);
return str;
}
num = argv[0];
n = NUM2INT(num);
buff = ALLOC_N(char, n);
n = FCGX_GetStr(buff, n, stream);
CHECK_STREAM_ERROR(stream);
if (n > 0) {
str = rb_str_new(buff, n);
OBJ_TAINT(str);
free(buff);
return str;
}
else {
free(buff);
return Qnil;
}
}
|
#sync ⇒ Object
570 571 572 573 574 575 576 577 578 |
# File 'ext/fcgi/fcgi.c', line 570
static VALUE fcgi_stream_sync(VALUE self)
{
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
return Qfalse;
}
|
#sync=(sync) ⇒ Object
580 581 582 583 584 585 586 587 588 |
# File 'ext/fcgi/fcgi.c', line 580
static VALUE fcgi_stream_setsync(VALUE self,VALUE sync)
{
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
return Qfalse;
}
|
#tty? ⇒ Boolean
560 561 562 563 564 565 566 567 568 |
# File 'ext/fcgi/fcgi.c', line 560
static VALUE fcgi_stream_isatty(VALUE self)
{
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
return Qfalse;
}
|
#ungetc(ch) ⇒ Object
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'ext/fcgi/fcgi.c', line 412
static VALUE fcgi_stream_ungetc(VALUE self, VALUE ch)
{
FCGX_Stream *stream;
int c;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
if (rb_safe_level() >= 4 && !OBJ_TAINTED(self)) {
rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
}
#endif
Data_Get_Stream(self, stream);
c = FCGX_UnGetChar(NUM2INT(ch), stream);
CHECK_STREAM_ERROR(stream);
return INT2NUM(c);
}
|
#write(str) ⇒ Object
277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
# File 'ext/fcgi/fcgi.c', line 277
static VALUE fcgi_stream_write(VALUE self, VALUE str)
{
FCGX_Stream *stream;
int len;
#if !defined(RUBY_API_VERSION_MAJOR) || (RUBY_API_VERSION_MAJOR < 3)
rb_secure(4);
#endif
Data_Get_Stream(self, stream);
str = rb_obj_as_string(str);
len = FCGX_PutStr(RSTRING_PTR(str), RSTRING_LEN(str), stream);
if (len == EOF) CHECK_STREAM_ERROR(stream);
return INT2NUM(len);
}
|