int JAWS_Server::open (JAWS_Pipeline_Handler *protocol, JAWS_Dispatch_Policy *policy) { if (policy == 0) policy = &this->policy_; JAWS_Data_Block *db = new JAWS_Data_Block; if (db == 0) { ACE_DEBUG ((LM_DEBUG, "(%t) JAWS_Server::open, could not create Data_Block\n")); return -1; } // initialize data block db->task (JAWS_Pipeline_Accept_Task_Singleton::instance ()); db->policy (policy); db->io_handler (0); db->task ()->next (protocol); // prime the acceptor if appropriate if (this->dispatch_ == 1) { #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS) int n = this->nthreads_; if (this->concurrency_ == 1) n = 1; for (int i = 0; i < n * this->ratio_ - n; i++) db->task ()->put (db); #endif /* ACE_HAS_WIN32_OVERLAPPED_IO || ACE_HAS_AIO_CALLS */ } // The message block should contain an INET_Addr, and call the // io->accept (INET_Addr) method! policy->concurrency ()->put (db); ACE_Thread_Manager::instance ()->wait (); db->release (); return 0; }
void JAWS_Asynch_IO::accept (JAWS_IO_Handler *ioh, ACE_Message_Block *, unsigned int) { JAWS_TRACE ("JAWS_Asynch_IO::accept"); ioh->idle (); JAWS_Data_Block *db = ioh->message_block (); //ACE_HANDLE listen_handle = db->policy ()->acceptor ()->get_handle (); //JAWS_Asynch_IO_Handler *aioh = // dynamic_cast<JAWS_Asynch_IO_Handler *> (ioh); size_t bytes_to_read = JAWS_Data_Block::JAWS_DATA_BLOCK_SIZE; if (db->policy ()->acceptor ()->accept (bytes_to_read, ioh) == -1) ioh->accept_error (); }
int JAWS_Pipeline_Done_Task::put (ACE_Message_Block *mb, ACE_Time_Value *) { JAWS_TRACE ("JAWS_Pipeline_Done_Task::put"); JAWS_Data_Block *data = dynamic_cast<JAWS_Data_Block *> (mb); JAWS_IO_Handler *handler = data->io_handler (); JAWS_Dispatch_Policy *policy = this->policy (); if (policy == 0) policy = data->policy (); // JAWS_IO *io = policy->io (); data->task (0); data->io_handler (0); if (handler) handler->done (); // hack, let Concurrency know we are done. return -2; }