#ifdef OLDXRDOUC
# include "XrdSysToOuc.h"
# include "XrdOuc/XrdOucPthread.hh"
#else
# include "XrdSys/XrdSysPthread.hh"
#endif
#include "TXUnixSocket.h"
#include "XrdProofPhyConn.h"
ClassImp(TXUnixSocket)
TXUnixSocket::TXUnixSocket(const char *url,
Int_t psid, Char_t capver, TXHandler *handler)
: TXSocket(0,'i',psid,capver,0,-1,handler)
{
if (url) {
fConn = new XrdProofPhyConn(url, psid, capver, this);
if (!(fConn->IsValid())) {
Error("TXUnixSocket", "severe error occurred while opening a connection"
" to server [%s]", fUrl.Data());
return;
}
fUser = fConn->fUser.c_str();
fHost = fConn->fHost.c_str();
fPort = fConn->fPort;
fXrdProofdVersion = fConn->fRemoteProtocol;
fRemoteProtocol = fConn->fRemoteProtocol;
TSocket::fUrl = fConn->fUrl.GetUrl().c_str();
fPid = gSystem->GetPid();
}
}
Int_t TXUnixSocket::Reconnect()
{
if (gDebug > 0) {
Info("Reconnect", "%p: %p: %d: trying to reconnect on %s", this,
fConn, (fConn ? fConn->IsValid() : 0), fUrl.Data());
}
if (fXrdProofdVersion < 1005) {
Info("Reconnect","%p: server does not support reconnections (protocol: %d < 1005)",
this, fXrdProofdVersion);
return -1;
}
if (fConn && !fConn->IsValid()) {
XrdSysMutexHelper l(fConn->fMutex);
fConn->Close();
int maxtry, timewait;
XrdProofConn::GetRetryParam(maxtry, timewait);
XrdProofConn::SetRetryParam(300, 1);
fConn->Connect();
XrdProofConn::SetRetryParam();
}
if (gDebug > 0) {
Info("Reconnect", "%p: %p: attempt %s", this, fConn,
((fConn && fConn->IsValid()) ? "succeeded!" : "failed"));
}
return ((fConn && fConn->IsValid()) ? 0 : -1);
}
Last change: Wed Jul 9 12:31:39 2008
Last generated: 2008-07-09 12:31
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.