commit
2c347a76c7
3 changed files with 81 additions and 11 deletions
|
@ -4,7 +4,11 @@ from compose_viz.service import Service
|
||||||
|
|
||||||
class Compose:
|
class Compose:
|
||||||
def __init__(self, services: List[Service]) -> None:
|
def __init__(self, services: List[Service]) -> None:
|
||||||
self.services = services
|
self._services = services
|
||||||
|
|
||||||
def extract_networks(self) -> List[str]:
|
def extract_networks(self) -> List[str]:
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def services(self):
|
||||||
|
return self._services
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
|
from re import S
|
||||||
from compose_viz.compose import Compose
|
from compose_viz.compose import Compose
|
||||||
|
from compose_viz.compose import Service
|
||||||
|
import yaml
|
||||||
|
|
||||||
class Parser:
|
class Parser:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@ -7,4 +9,36 @@ class Parser:
|
||||||
|
|
||||||
def parse(self, file_path: str) -> Compose:
|
def parse(self, file_path: str) -> Compose:
|
||||||
# validate input file using `docker-compose config -q sys.argv[1]` first
|
# validate input file using `docker-compose config -q sys.argv[1]` first
|
||||||
raise NotImplementedError
|
# load the yaml file
|
||||||
|
with open(file_path, "r") as f:
|
||||||
|
try:
|
||||||
|
yaml_data = yaml.safe_load(f)
|
||||||
|
except yaml.YAMLError as exc:
|
||||||
|
raise yaml.YAMLError
|
||||||
|
# validate the yaml file
|
||||||
|
if not yaml_data:
|
||||||
|
print("Error: empty yaml file")
|
||||||
|
raise ValueError
|
||||||
|
if not yaml_data.get("services"):
|
||||||
|
print("Error: no services found")
|
||||||
|
raise ValueError
|
||||||
|
# parse services data into Service objects
|
||||||
|
services_data = yaml_data["services"]
|
||||||
|
services = []
|
||||||
|
for service, service_name in zip(services_data.values(), services_data.keys()):
|
||||||
|
#print("name: {}".format(service_name))
|
||||||
|
if service.get("image"):
|
||||||
|
service_image = service["image"]
|
||||||
|
#print("image: {}".format(service_image))
|
||||||
|
if service.get("networks"):
|
||||||
|
service_networks = service["networks"]
|
||||||
|
#print("networks: {}".format(service_networks))
|
||||||
|
services.append(Service(
|
||||||
|
name=service_name,
|
||||||
|
image=service_image,
|
||||||
|
networks=service_networks,
|
||||||
|
))
|
||||||
|
# create Compose object
|
||||||
|
compose = Compose(services)
|
||||||
|
|
||||||
|
return compose
|
||||||
|
|
|
@ -3,11 +3,43 @@ from typing import List
|
||||||
|
|
||||||
class Service:
|
class Service:
|
||||||
def __init__(self, name: str, image: str, ports: List[str] = [], networks: List[str] = [], volumes: List[str] = [], depends_on: List[str] = [], links: List[str] = [], extends: List[str] = []) -> None:
|
def __init__(self, name: str, image: str, ports: List[str] = [], networks: List[str] = [], volumes: List[str] = [], depends_on: List[str] = [], links: List[str] = [], extends: List[str] = []) -> None:
|
||||||
self.name = name
|
self._name = name
|
||||||
self.image = image
|
self._image = image
|
||||||
self.ports = ports
|
self._ports = ports
|
||||||
self.networks = networks
|
self._networks = networks
|
||||||
self.volumes = volumes
|
self._volumes = volumes
|
||||||
self.depends_on = depends_on
|
self._depends_on = depends_on
|
||||||
self.links = links
|
self._links = links
|
||||||
self.extends = extends
|
self._extends = extends
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def image(self):
|
||||||
|
return self._image
|
||||||
|
|
||||||
|
@property
|
||||||
|
def ports(self):
|
||||||
|
return self._ports
|
||||||
|
|
||||||
|
@property
|
||||||
|
def networks(self):
|
||||||
|
return self._networks
|
||||||
|
|
||||||
|
@property
|
||||||
|
def volumes(self):
|
||||||
|
return self._volumes
|
||||||
|
|
||||||
|
@property
|
||||||
|
def depends_on(self):
|
||||||
|
return self._depends_on
|
||||||
|
|
||||||
|
@property
|
||||||
|
def links(self):
|
||||||
|
return self._links
|
||||||
|
|
||||||
|
@property
|
||||||
|
def extends(self):
|
||||||
|
return self._extends
|
||||||
|
|
Loading…
Reference in a new issue