gns3-server/gns3server/compute/dynamips/nios/nio_tap.py

64 lines
1.7 KiB
Python
Raw Normal View History

2013-12-22 02:42:33 +02:00
#
# Copyright (C) 2013 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Interface for TAP NIOs (UNIX based OSes only).
"""
2015-02-10 03:24:13 +02:00
import asyncio
import uuid
2013-12-22 02:42:33 +02:00
from .nio import NIO
import logging
log = logging.getLogger(__name__)
2013-12-22 02:42:33 +02:00
2015-02-12 04:21:34 +02:00
class NIOTAP(NIO):
2015-02-13 15:43:28 +02:00
2013-12-22 02:42:33 +02:00
"""
Dynamips TAP NIO.
2014-02-28 06:50:46 +02:00
:param hypervisor: Dynamips hypervisor instance
2013-12-22 02:42:33 +02:00
:param tap_device: TAP device name (e.g. tap0)
"""
def __init__(self, hypervisor, tap_device):
# create an unique name
2021-04-13 12:07:58 +03:00
name = f'tap-{uuid.uuid4()}'
2013-12-22 02:42:33 +02:00
self._tap_device = tap_device
2015-04-08 20:17:34 +03:00
super().__init__(name, hypervisor)
2013-12-22 02:42:33 +02:00
async def create(self):
2015-02-10 03:24:13 +02:00
2021-04-13 12:07:58 +03:00
await self._hypervisor.send(f"nio create_tap {self._name} {self._tap_device}")
log.info(f"NIO TAP {self._name} created with device {self._tap_device}")
2015-02-10 03:24:13 +02:00
2013-12-22 02:42:33 +02:00
@property
def tap_device(self):
"""
Returns the TAP device used by this NIO.
:returns: the TAP device name
"""
return self._tap_device
2015-02-14 00:11:14 +02:00
def __json__(self):
return {"type": "nio_tap",
"tap_device": self._tap_device}