Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions src/aaz_dev/swagger/model/specs/_typespec_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,35 @@ def find_data_plane_entry_files(cls, folder):

@classmethod
def _parse_main_tsp(cls, path):
with open(path, 'r', encoding='utf-8') as f:
lines = f.readlines()
def expand(import_path):
with open(import_path, "r", encoding="utf-8") as f:
lines = f.readlines()

base = os.path.dirname(import_path)

content = []
for line in lines:
if match := import_pattern.findall(line):
rel_path = match[0]
abs_path = os.path.abspath(os.path.join(base, rel_path))

if os.path.isfile(abs_path): # expand first level only; otherwise, will impact performance
with open(abs_path, "r", encoding="utf-8") as f:
content.append("".join(f.readlines()))

else:
content.append(line)
else:
content.append(line)

return "".join(content).split("\n")

import_pattern = re.compile(r'^import "([^"]+)"')

is_mgmt_plane = False
namespace = None
for line in lines:

for line in expand(path):
if line.startswith("@armProviderNamespace"):
is_mgmt_plane = True
if line.startswith("namespace "):
Expand Down
Loading