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
|
#!/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
from netmodel.util.misc import silentremove
DEFAULT_PATH = '/tmp/unix_interface'
class UnixProtocol:
def send_impl(self, data):
msg = data.encode()
self._transport.write(msg)
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 UnixServerProtocol(UnixProtocol, ServerProtocol, Interface):
__interface__ = 'unix'
def __init__(self, *args, **kwargs):
# Note: super() does not call all parents' constructors
Interface.__init__(self, *args, **kwargs)
ServerProtocol.__init__(self)
class UnixClientProtocol(UnixProtocol, ClientProtocol):
pass
#------------------------------------------------------------------------------
class UnixServerInterface(SocketServer, Interface):
__interface__ = 'unixserver'
def __init__(self, *args, **kwargs):
SocketServer.__init__(self)
self._path = kwargs.pop('path', DEFAULT_PATH)
Interface.__init__(self, *args, **kwargs)
def terminate(self):
silentremove(self._path)
def new_protocol(self):
p = UnixServerProtocol(callback=self._callback, hook=self._hook)
self.spawn_interface(p)
return p
def _create_socket(self):
loop = asyncio.get_event_loop()
silentremove(self._path)
return loop.create_unix_server(self.new_protocol, self._path)
class UnixClientInterface(SocketClient, Interface):
__interface__ = 'unixclient'
def __init__(self, *args, **kwargs):
SocketClient.__init__(self)
self._path = kwargs.pop('path', DEFAULT_PATH)
Interface.__init__(self, *args, **kwargs)
def _create_socket(self):
loop = asyncio.get_event_loop()
protocol = lambda : UnixClientProtocol(self)
return loop.create_unix_connection(protocol, self._path)
|