mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0738121a90
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7741 b45a01b8-16f6-495d-af2f-9b41ad6348cc
183 lines
3.5 KiB
C++
183 lines
3.5 KiB
C++
/*
|
|
* pqithreadstreamer.cc
|
|
*
|
|
* 3P/PQI network interface for RetroShare.
|
|
*
|
|
* Copyright 2004-2013 by Robert Fernie.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
|
|
#include "pqi/pqithreadstreamer.h"
|
|
#include <unistd.h>
|
|
|
|
#define DEFAULT_STREAMER_TIMEOUT 10000 // 10 ms.
|
|
#define DEFAULT_STREAMER_SLEEP 1000 // 1 ms.
|
|
#define DEFAULT_STREAMER_IDLE_SLEEP 1000000 // 1 sec
|
|
|
|
pqithreadstreamer::pqithreadstreamer(PQInterface *parent, RsSerialiser *rss, const RsPeerId& id, BinInterface *bio_in, int bio_flags_in)
|
|
:pqistreamer(rss, id, bio_in, bio_flags_in), mParent(parent), mThreadMutex("pqithreadstreamer"), mTimeout(0)
|
|
{
|
|
mTimeout = DEFAULT_STREAMER_TIMEOUT;
|
|
mSleepPeriod = DEFAULT_STREAMER_SLEEP;
|
|
return;
|
|
}
|
|
|
|
bool pqithreadstreamer::RecvItem(RsItem *item)
|
|
{
|
|
return mParent->RecvItem(item);
|
|
}
|
|
|
|
int pqithreadstreamer::tick()
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
tick_bio();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void pqithreadstreamer::start()
|
|
{
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
mToRun = true;
|
|
}
|
|
RsThread::start();
|
|
}
|
|
|
|
void pqithreadstreamer::run()
|
|
{
|
|
std::cerr << "pqithreadstream::run()";
|
|
std::cerr << std::endl;
|
|
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
mRunning = true;
|
|
}
|
|
|
|
while(1)
|
|
{
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
if (!mToRun)
|
|
{
|
|
std::cerr << "pqithreadstream::run() stopping";
|
|
std::cerr << std::endl;
|
|
|
|
mRunning = false;
|
|
return;
|
|
}
|
|
}
|
|
data_tick();
|
|
}
|
|
}
|
|
|
|
void pqithreadstreamer::stop()
|
|
{
|
|
// RsStackMutex stack(mThreadMutex);
|
|
|
|
std::cerr << "pqithreadstream::stop()";
|
|
std::cerr << std::endl;
|
|
|
|
mToRun = false;
|
|
}
|
|
|
|
void pqithreadstreamer::fullstop()
|
|
{
|
|
stop();
|
|
|
|
while(1)
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
if (!mRunning)
|
|
{
|
|
std::cerr << "pqithreadstream::fullstop() complete";
|
|
std::cerr << std::endl;
|
|
return;
|
|
}
|
|
usleep(1000);
|
|
}
|
|
}
|
|
|
|
bool pqithreadstreamer::threadrunning()
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
return mRunning;
|
|
}
|
|
|
|
|
|
int pqithreadstreamer::data_tick()
|
|
{
|
|
//std::cerr << "pqithreadstream::data_tick()";
|
|
//std::cerr << std::endl;
|
|
|
|
uint32_t recv_timeout = 0;
|
|
uint32_t sleep_period = 0;
|
|
bool isactive = false;
|
|
{
|
|
RsStackMutex stack(mStreamerMtx);
|
|
recv_timeout = mTimeout;
|
|
sleep_period = mSleepPeriod;
|
|
isactive = mBio->isactive();
|
|
}
|
|
|
|
if (!isactive)
|
|
{
|
|
usleep(DEFAULT_STREAMER_IDLE_SLEEP);
|
|
return 0;
|
|
}
|
|
|
|
|
|
//std::cerr << "pqithreadstream::data_tick() tick_recv";
|
|
//std::cerr << std::endl;
|
|
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
tick_recv(recv_timeout);
|
|
}
|
|
|
|
// Push Items, Outside of Mutex.
|
|
RsItem *incoming = NULL;
|
|
while((incoming = GetItem()))
|
|
{
|
|
RecvItem(incoming);
|
|
}
|
|
|
|
//std::cerr << "pqithreadstream::data_tick() tick_send";
|
|
//std::cerr << std::endl;
|
|
|
|
{
|
|
RsStackMutex stack(mThreadMutex);
|
|
tick_send(0);
|
|
}
|
|
|
|
if (sleep_period)
|
|
{
|
|
//std::cerr << "pqithreadstream::data_tick() usleep";
|
|
//std::cerr << std::endl;
|
|
|
|
usleep(sleep_period);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
|
|
|