1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceBT/TransceiverI.h>
#include <IceBT/ConnectionInfo.h>
#include <IceBT/Engine.h>
#include <IceBT/Instance.h>
#include <IceBT/Util.h>
#include <Ice/Connection.h>
#include <Ice/LocalException.h>
#include <IceUtil/DisableWarnings.h>
using namespace std;
using namespace Ice;
using namespace IceBT;
IceInternal::NativeInfoPtr
IceBT::TransceiverI::getNativeInfo()
{
return _stream;
}
IceInternal::SocketOperation
IceBT::TransceiverI::initialize(IceInternal::Buffer& readBuffer, IceInternal::Buffer& writeBuffer)
{
return _stream->connect(readBuffer, writeBuffer);
}
IceInternal::SocketOperation
IceBT::TransceiverI::closing(bool initiator, const Ice::LocalException&)
{
//
// If we are initiating the connection closure, wait for the peer
// to close the TCP/IP connection. Otherwise, close immediately.
//
return initiator ? IceInternal::SocketOperationRead : IceInternal::SocketOperationNone;
}
void
IceBT::TransceiverI::close()
{
_stream->close();
}
IceInternal::SocketOperation
IceBT::TransceiverI::write(IceInternal::Buffer& buf)
{
return _stream->write(buf);
}
IceInternal::SocketOperation
IceBT::TransceiverI::read(IceInternal::Buffer& buf)
{
return _stream->read(buf);
}
string
IceBT::TransceiverI::protocol() const
{
return _instance->protocol();
}
string
IceBT::TransceiverI::toString() const
{
return _stream->toString();
}
string
IceBT::TransceiverI::toDetailedString() const
{
return toString();
}
Ice::ConnectionInfoPtr
IceBT::TransceiverI::getInfo() const
{
IceBT::ConnectionInfoPtr info = new IceBT::ConnectionInfo();
fdToAddressAndChannel(_stream->fd(), info->localAddress, info->localChannel, info->remoteAddress,
info->remoteChannel);
info->uuid = _uuid;
return info;
}
void
IceBT::TransceiverI::checkSendSize(const IceInternal::Buffer&)
{
}
void
IceBT::TransceiverI::setBufferSize(int rcvSize, int sndSize)
{
_stream->setBufferSize(rcvSize, sndSize);
}
IceBT::TransceiverI::TransceiverI(const InstancePtr& instance, const StreamSocketPtr& stream, const string& uuid) :
_instance(instance),
_stream(stream),
_uuid(uuid)
{
}
IceBT::TransceiverI::~TransceiverI()
{
}
|