-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathxml.py
More file actions
113 lines (87 loc) · 3.55 KB
/
xml.py
File metadata and controls
113 lines (87 loc) · 3.55 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# encoding: utf-8
# This file is part of CycloneDX Python Lib
#
# 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.
#
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) OWASP Foundation. All Rights Reserved.
from typing import Dict, Optional, Type
from xml.etree import ElementTree
from ..exception.output import BomGenerationErrorException
from ..model.bom import Bom
from ..schema import OutputFormat, SchemaVersion
from ..schema.schema import (
SCHEMA_VERSIONS,
BaseSchemaVersion,
SchemaVersion1Dot0,
SchemaVersion1Dot1,
SchemaVersion1Dot2,
SchemaVersion1Dot3,
SchemaVersion1Dot4,
)
from . import BaseOutput
class Xml(BaseSchemaVersion, BaseOutput):
XML_VERSION_DECLARATION: str = '<?xml version="1.0" encoding="UTF-8"?>'
def __init__(self, bom: Bom) -> None:
super().__init__(bom=bom)
self._root_bom_element: Optional[ElementTree.Element] = None
@property
def schema_version(self) -> SchemaVersion:
return self.schema_version_enum
@property
def output_format(self) -> OutputFormat:
return OutputFormat.XML
def generate(self, force_regeneration: bool = False) -> None:
# New way
_view = SCHEMA_VERSIONS[self.schema_version_enum]
if self.generated and force_regeneration:
self.get_bom().validate()
self._root_bom_element = self.get_bom().as_xml( # type: ignore
view_=_view, as_string=False, xmlns=self.get_target_namespace()
)
self.generated = True
return
elif self.generated:
return
else:
self.get_bom().validate()
self._root_bom_element = self.get_bom().as_xml( # type: ignore
view_=_view, as_string=False, xmlns=self.get_target_namespace()
)
self.generated = True
return
def output_as_string(self) -> str:
self.generate()
if self.generated and self._root_bom_element is not None:
return str(Xml.XML_VERSION_DECLARATION + ElementTree.tostring(self._root_bom_element, encoding='unicode'))
raise BomGenerationErrorException('There was no Root XML Element after BOM generation.')
def get_target_namespace(self) -> str:
return f'http://cyclonedx.org/schema/bom/{self.get_schema_version()}'
class XmlV1Dot0(Xml, SchemaVersion1Dot0):
def _create_bom_element(self) -> ElementTree.Element:
return ElementTree.Element('bom', {'xmlns': self.get_target_namespace(), 'version': '1'})
class XmlV1Dot1(Xml, SchemaVersion1Dot1):
pass
class XmlV1Dot2(Xml, SchemaVersion1Dot2):
pass
class XmlV1Dot3(Xml, SchemaVersion1Dot3):
pass
class XmlV1Dot4(Xml, SchemaVersion1Dot4):
pass
BY_SCHEMA_VERSION: Dict[SchemaVersion, Type[Xml]] = {
SchemaVersion.V1_4: XmlV1Dot4, # type:ignore[type-abstract]
SchemaVersion.V1_3: XmlV1Dot3, # type:ignore[type-abstract]
SchemaVersion.V1_2: XmlV1Dot2, # type:ignore[type-abstract]
SchemaVersion.V1_1: XmlV1Dot1, # type:ignore[type-abstract]
SchemaVersion.V1_0: XmlV1Dot0, # type:ignore[type-abstract]
}