You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/core/AmSessionProcessor.cpp

198 lines
5.6 KiB

/*
* $Id: AmSessionProcessor.cpp 1585 2009-10-28 22:31:08Z sayer $
*
* Copyright (C) 2010 Stefan Sayer
*
* This file is part of SEMS, a free SIP media server.
*
* SEMS is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. This program is released under
* the GPL with the additional exemption that compiling, linking,
* and/or using OpenSSL is allowed.
*
* For a license to use the SEMS software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* SEMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef SESSION_THREADPOOL
#include "AmSessionProcessor.h"
#include "AmSession.h"
#include <vector>
#include <list>
vector<AmSessionProcessorThread*> AmSessionProcessor::threads;
AmMutex AmSessionProcessor::threads_mut;
vector<AmSessionProcessorThread*>::iterator
AmSessionProcessor::threads_it = AmSessionProcessor::threads.begin();
AmSessionProcessorThread* AmSessionProcessor::getProcessorThread() {
std::lock_guard<AmMutex> _l(threads_mut);
if (!threads.size()) {
ERROR("requesting Session processing thread but none available\n");
return NULL;
}
// round robin
if (threads_it == threads.end())
threads_it = threads.begin();
AmSessionProcessorThread* res = *threads_it;
threads_it++;
return res;
}
void AmSessionProcessor::addThreads(unsigned int num_threads) {
DBG("starting %u session processor threads\n", num_threads);
std::lock_guard<AmMutex> _l(threads_mut);
for (unsigned int i=0; i < num_threads;i++) {
threads.push_back(new AmSessionProcessorThread());
threads.back()->start();
}
threads_it = threads.begin();
DBG("now %zd session processor threads running\n", threads.size());
}
void AmSessionProcessor::stopThreads()
{
std::lock_guard<AmMutex> _l(threads_mut);
DBG("shutting down %zu session processor threads\n", threads.size());
// two-pass: first request stop, then join and delete
for (auto it = threads.begin(); it != threads.end(); it++)
(*it)->stop();
while (!threads.empty()) {
auto* thread = threads.back();
threads.pop_back();
thread->join();
delete thread;
}
}
AmSessionProcessorThread::AmSessionProcessorThread()
: events(this)
{
}
AmSessionProcessorThread::~AmSessionProcessorThread() {
}
void AmSessionProcessorThread::notify(AmEventQueueBase* sender) {
run_mut.lock();
process_sessions.insert(sender);
run_mut.unlock();
run_cond.notify_all();
}
void AmSessionProcessorThread::run() {
std::unique_lock<std::mutex> _l(run_mut);
while (!stop_requested_unlocked()) {
if (process_sessions.empty())
run_cond.wait(_l);
DBG("running processing loop\n");
// get the list of session s that need processing
auto pending_process_sessions = process_sessions;
process_sessions.clear();
_l.unlock();
// process control events (AmSessionProcessorThreadAddEvent)
events.processEvents();
// startup all new sessions
if (!startup_sessions.empty()) {
DBG("starting up %zd sessions\n", startup_sessions.size());
for (std::vector<AmSession*>::iterator it=
startup_sessions.begin();
it != startup_sessions.end(); it++) {
DBG("starting up [%s|%s]: [%p]\n",
(*it)->getCallID().c_str(), (*it)->getLocalTag().c_str(),*it);
if ((*it)->startup()) {
sessions.push_back(*it); // startup successful
// make sure this session is being processed for startup events
pending_process_sessions.insert(*it);
}
}
startup_sessions.clear();
}
std::vector<AmSession*> fin_sessions;
DBG("processing events for up to %zd sessions\n",
pending_process_sessions.size());
std::list<AmSession*>::iterator it=sessions.begin();
while (it != sessions.end()) {
if ((pending_process_sessions.find(*it)!=
pending_process_sessions.end()) &&
(!(*it)->processingCycle())) {
fin_sessions.push_back(*it);
std::list<AmSession*>::iterator d_it = it;
it++;
sessions.erase(d_it);
} else {
it++;
}
}
if (fin_sessions.size()) {
DBG("finalizing %zd sessions\n", fin_sessions.size());
for (std::vector<AmSession*>::iterator it=fin_sessions.begin();
it != fin_sessions.end(); it++) {
DBG("finalizing session [%p/%s/%s]\n",
*it, (*it)->getCallID().c_str(), (*it)->getLocalTag().c_str());
(*it)->finalize();
}
}
_l.lock();
}
}
// AmEventHandler interface
void AmSessionProcessorThread::process(AmEvent* e) {
AmSessionProcessorThreadAddEvent* add_ev =
dynamic_cast<AmSessionProcessorThreadAddEvent*>(e);
if (NULL==add_ev) {
ERROR("received wrong event in AmSessionProcessorThread\n");
return;
}
startup_sessions.push_back(add_ev->s);
}
void AmSessionProcessorThread::startSession(AmSession* s) {
// register us to be notified if some event comes to the session
s->setEventNotificationSink(this);
// add this to be scheduled
events.postEvent(new AmSessionProcessorThreadAddEvent(s));
// trigger processing of events already in queue at startup
notify(s);
}
#endif