@@ -404,39 +404,42 @@ SrsSignalManager* SrsSignalManager::instance = NULL;
404
404
SrsSignalManager::SrsSignalManager (SrsServer* s)
405
405
{
406
406
SrsSignalManager::instance = this ;
407
-
407
+
408
+ pipe_ = new SrsThreadPipePair ();
409
+
408
410
server = s;
409
- sig_pipe[0 ] = sig_pipe[1 ] = -1 ;
410
411
trd = new SrsSTCoroutine (" signal" , this , _srs_context->get_id ());
411
- signal_read_stfd = NULL ;
412
412
}
413
413
414
414
SrsSignalManager::~SrsSignalManager ()
415
415
{
416
- srs_close_stfd (signal_read_stfd);
417
-
418
- if (sig_pipe[0 ] > 0 ) {
419
- ::close (sig_pipe[0 ]);
420
- }
421
- if (sig_pipe[1 ] > 0 ) {
422
- ::close (sig_pipe[1 ]);
423
- }
424
-
425
416
srs_freep (trd);
417
+
418
+ // Note that it's optional, because the read/write pair is in the same thread.
419
+ pipe_->close_read ();
420
+ pipe_->close_write ();
421
+
422
+ // If in the same thread, we could directly free the pipe, which will close all FDs.
423
+ srs_freep (pipe_);
426
424
}
427
425
428
426
srs_error_t SrsSignalManager::initialize ()
429
427
{
430
- /* Create signal pipe */
431
- if (pipe (sig_pipe) < 0 ) {
432
- return srs_error_new (ERROR_SYSTEM_CREATE_PIPE, " create pipe" );
428
+ srs_error_t err = srs_success;
429
+
430
+ if ((err = pipe_->initialize ()) != srs_success) {
431
+ return srs_error_wrap (err, " init pipe" );
433
432
}
434
-
435
- if ((signal_read_stfd = srs_netfd_open (sig_pipe[ 0 ] )) == NULL ) {
436
- return srs_error_new (ERROR_SYSTEM_CREATE_PIPE , " open pipe" );
433
+
434
+ if ((err = pipe_-> open_read ( )) != srs_success ) {
435
+ return srs_error_wrap (err , " init read pipe" );
437
436
}
438
-
439
- return srs_success;
437
+
438
+ if ((err = pipe_->open_write ()) != srs_success) {
439
+ return srs_error_wrap (err, " init write pipe" );
440
+ }
441
+
442
+ return err;
440
443
}
441
444
442
445
srs_error_t SrsSignalManager::start ()
@@ -496,11 +499,12 @@ srs_error_t SrsSignalManager::cycle()
496
499
}
497
500
498
501
int signo;
502
+ // Read the next signal from the pipe
503
+ if ((err = pipe_->read (&signo, sizeof (int ), NULL )) != srs_success) {
504
+ srs_freep (err); // Ignore any error.
505
+ }
499
506
500
- /* Read the next signal from the pipe */
501
- srs_read (signal_read_stfd, &signo, sizeof (int ), SRS_UTIME_NO_TIMEOUT);
502
-
503
- /* Process signal synchronously */
507
+ // Process signal synchronously
504
508
server->on_signal (signo);
505
509
}
506
510
@@ -511,13 +515,15 @@ void SrsSignalManager::sig_catcher(int signo)
511
515
{
512
516
int err;
513
517
514
- /* Save errno to restore it after the write() */
518
+ // Save errno to restore it after the write()
515
519
err = errno;
516
-
517
- /* write() is reentrant/async-safe */
518
- int fd = SrsSignalManager::instance->sig_pipe [1 ];
519
- write (fd, &signo, sizeof (int ));
520
-
520
+
521
+ // write() is reentrant/async-safe
522
+ srs_error_t r0 = SrsSignalManager::instance->pipe_ ->write (&signo, sizeof (int ), NULL );
523
+ if (r0 != srs_success) {
524
+ srs_freep (r0); // Ignore any error.
525
+ }
526
+
521
527
errno = err;
522
528
}
523
529
0 commit comments