# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 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/>.

from pydantic import BaseModel, Field
from typing import Optional, List
from pathlib import Path
from enum import Enum
from uuid import UUID

from .nodes import NodeStatus, CustomAdapter


class VMwareConsoleType(str, Enum):
    """
    Supported console types.
    """

    telnet = "telnet"
    none = "none"


class VMwareOnCloseAction(str, Enum):
    """
    Supported actions when closing VMware VM.
    """

    power_off = "power_off"
    shutdown_signal = "shutdown_signal"
    save_vm_state = "save_vm_state"


class VMwareBase(BaseModel):
    """
    Common VMware node properties.
    """

    name: str
    vmx_path: Path = Field(..., description="Path to the vmx file")
    linked_clone: bool = Field(..., description="Whether the VM is a linked clone or not")
    node_id: Optional[UUID]
    usage: Optional[str] = Field(None, description="How to use the node")
    console: Optional[int] = Field(None, gt=0, le=65535, description="Console TCP port")
    console_type: Optional[VMwareConsoleType] = Field(None, description="Console type")
    headless: Optional[bool] = Field(None, description="Headless mode")
    on_close: Optional[VMwareOnCloseAction] = Field(None, description="Action to execute on the VM is closed")
    # 10 adapters is the maximum supported by VMware VMs.
    adapters: Optional[int] = Field(None, ge=0, le=10, description="Number of adapters")
    adapter_type: Optional[str] = Field(None, description="VMware adapter type")
    use_any_adapter: Optional[bool] = Field(None, description="Allow GNS3 to use any VMware adapter")
    custom_adapters: Optional[List[CustomAdapter]] = Field(None, description="Custom adpaters")


class VMwareCreate(VMwareBase):
    """
    Properties to create a VMware node.
    """

    pass


class VMwareUpdate(VMwareBase):
    """
    Properties to update a VMware node.
    """

    name: Optional[str]
    vmx_path: Optional[Path]
    linked_clone: Optional[bool]


class VMware(VMwareBase):

    project_id: UUID = Field(..., description="Project ID")
    node_directory: Optional[str] = Field(None, description="Path to the node working directory (read only)")
    status: NodeStatus = Field(..., description="Container status (read only)")