00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "ISocketHandler.h"
00031
00032
00033 #ifdef SOCKETS_NAMESPACE
00034 namespace SOCKETS_NAMESPACE {
00035 #endif
00036
00037
00038 #ifdef _DEBUG
00039 #define DEB(x) x
00040 #else
00041 #define DEB(x)
00042 #endif
00043
00044
00045 ISocketHandler::ISocketHandler(StdLog *log)
00046 : m_stdlog(log)
00047 #ifdef ENABLE_DETACH
00048 , m_slave(false)
00049 #endif
00050 , m_mutex(m_mutex)
00051 , m_b_use_mutex(false)
00052 {
00053 }
00054
00055
00056 ISocketHandler::ISocketHandler(Mutex& mutex,StdLog *log)
00057 : m_stdlog(log)
00058 #ifdef ENABLE_DETACH
00059 , m_slave(false)
00060 #endif
00061 , m_mutex(mutex)
00062 , m_b_use_mutex(true)
00063 {
00064 }
00065
00066
00067 ISocketHandler::~ISocketHandler()
00068 {
00069 }
00070
00071
00072 Mutex& ISocketHandler::GetMutex() const
00073 {
00074 return m_mutex;
00075 }
00076
00077
00078 #ifdef ENABLE_DETACH
00079 void ISocketHandler::SetSlave(bool x)
00080 {
00081 m_slave = x;
00082 }
00083
00084
00085 bool ISocketHandler::IsSlave()
00086 {
00087 return m_slave;
00088 }
00089 #endif
00090
00091
00092 void ISocketHandler::RegStdLog(StdLog *log)
00093 {
00094 m_stdlog = log;
00095 }
00096
00097
00098 void ISocketHandler::LogError(Socket *p,const std::string& user_text,int err,const std::string& sys_err,loglevel_t t)
00099 {
00100 if (m_stdlog)
00101 {
00102 m_stdlog -> error(this, p, user_text, err, sys_err, t);
00103 }
00104 }
00105
00106
00107 #ifdef SOCKETS_NAMESPACE
00108 }
00109 #endif