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
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017 Cisco and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import asyncio
from netmodel.interfaces.socket import ServerProtocol, ClientProtocol
from netmodel.interfaces.socket import SocketClient, SocketServer
from netmodel.network.interface import Interface
DEFAULT_ADDRESS = '127.0.0.1'
DEFAULT_PORT = 7000
class TCPProtocol:
def send_impl(self, data):
msg = data.encode()
self._transport.write(msg)
# asyncio.Protocol
def data_received(self, data):
"""
Called when some data is received.
The argument is a bytes object.
"""
msg = data.decode()
self.receive(msg, ingress_interface=self)
class TCPServerProtocol(TCPProtocol, ServerProtocol, Interface):
__interface__ = 'tcp'
def __init__(self, *args, **kwargs):
# Note: super() does not call all parents' constructors
Interface.__init__(self, *args, **kwargs)
ServerProtocol.__init__(self)
class TCPClientProtocol(TCPProtocol, ClientProtocol):
pass
#------------------------------------------------------------------------------
class TCPServerInterface(SocketServer, Interface):
__interface__ = 'tcpserver'
def __init__(self, *args, **kwargs):
SocketServer.__init__(self)
self._address = kwargs.pop('address', DEFAULT_ADDRESS)
self._port = kwargs.pop('port', DEFAULT_PORT)
Interface.__init__(self, *args, **kwargs)
def new_protocol(self):
p = TcpServerProtocol(callback = self._callback, hook=self._hook)
self.spawn_interface(p)
return p
def _create_socket(self):
loop = asyncio.get_event_loop()
return loop.create_server(self.new_protocol, self._address, self._port)
class TCPClientInterface(SocketClient, Interface):
__interface__ = 'tcpclient'
def __init__(self, *args, **kwargs):
SocketClient.__init__(self)
self._address = kwargs.pop('address', DEFAULT_ADDRESS)
self._port = kwargs.pop('port', DEFAULT_PORT)
Interface.__init__(self, *args, **kwargs)
def _create_socket(self):
loop = asyncio.get_event_loop()
protocol = lambda : TCPClientProtocol(self)
return loop.create_connection(protocol, self._address, self._port)
|