Skip to content

Commit 342058a

Browse files
committed
fix code formatting
1 parent 710eaac commit 342058a

File tree

1 file changed

+33
-12
lines changed

1 file changed

+33
-12
lines changed

schema_salad/cpp_codegen.py

+33-12
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,18 @@ def safename(name: str) -> str:
5959
classname = re.sub("[^a-zA-Z0-9]", "_", name)
6060
return replaceKeywords(classname)
6161

62+
6263
def safenamespacename(name: str) -> str:
6364
"""Create a C++ safe name for namespaces"""
64-
name = re.sub("^[a-zA-Z0-9]+://", "", name) # remove protocol
65-
name = re.sub("//+", "", name) # remove duplicate slashes
66-
name = re.sub("/$", "", name) # remove trailing slashes
65+
name = re.sub("^[a-zA-Z0-9]+://", "", name) # remove protocol
66+
name = re.sub("//+", "", name) # remove duplicate slashes
67+
name = re.sub("/$", "", name) # remove trailing slashes
6768
name = re.sub("[^a-zA-Z0-9/]", "_", name)
6869
name = re.sub("[/]", "::", name)
6970

7071
return name
7172

73+
7274
# TODO: this should be somehow not really exists
7375
def safename2(name: dict[str, str]) -> str:
7476
"""Create a namespaced safename."""
@@ -122,7 +124,9 @@ def writeFwdDeclaration(self, target: IO[str], fullInd: str, ind: str) -> None:
122124
"""Write forward declaration."""
123125
target.write(f"{fullInd}namespace {self.namespace} {{ struct {self.classname}; }}\n")
124126

125-
def writeDefinition(self, target: IO[Any], fullInd: str, ind: str, common_namespace: str) -> None:
127+
def writeDefinition(
128+
self, target: IO[Any], fullInd: str, ind: str, common_namespace: str
129+
) -> None:
126130
"""Write definition of the class."""
127131
target.write(f"{fullInd}namespace {self.namespace} {{\n")
128132
target.write(f"{fullInd}struct {self.classname}")
@@ -151,7 +155,9 @@ def writeDefinition(self, target: IO[Any], fullInd: str, ind: str, common_namesp
151155
target.write(f"{fullInd}}};\n")
152156
target.write(f"{fullInd}}}\n\n")
153157

154-
def writeImplDefinition(self, target: IO[str], fullInd: str, ind: str, common_namespace: str) -> None:
158+
def writeImplDefinition(
159+
self, target: IO[str], fullInd: str, ind: str, common_namespace: str
160+
) -> None:
155161
"""Write definition with implementation."""
156162
extends = list(map(safename2, self.extends))
157163

@@ -300,7 +306,9 @@ def writeDefinition(self, target: IO[str], ind: str, common_namespace: str) -> N
300306
target.write("};\n")
301307
target.write("}\n\n")
302308

303-
def writeImplDefinition(self, target: IO[str], fullInd: str, ind: str, common_namespace: str) -> None:
309+
def writeImplDefinition(
310+
self, target: IO[str], fullInd: str, ind: str, common_namespace: str
311+
) -> None:
304312
"""Write definition with implementation."""
305313
# Write toYaml function
306314
functionname = f"{self.namespace}::{self.classname}::toYaml"
@@ -356,7 +364,9 @@ def writeDefinition(self, target: IO[str], ind: str, common_namespace: str) -> N
356364
target.write("};\n")
357365
target.write("}\n\n")
358366

359-
def writeImplDefinition(self, target: IO[str], fullInd: str, ind: str, common_namespace: str) -> None:
367+
def writeImplDefinition(
368+
self, target: IO[str], fullInd: str, ind: str, common_namespace: str
369+
) -> None:
360370
"""Write definition with implementation."""
361371
# Write constructor
362372
functionname = f"{self.namespace}::{self.classname}::{self.classname}"
@@ -695,7 +705,14 @@ def convertTypeToCpp(self, type_declaration: Union[list[Any], dict[str, Any], st
695705
def epilogue(self, root_loader: Optional[TypeDef]) -> None:
696706
# find common namespace
697707

698-
common_namespace = os.path.commonprefix(list(map(lambda x: x.namespace, list(self.classDefinitions.values()) + list(self.enumDefinitions.values()))))
708+
common_namespace = os.path.commonprefix(
709+
list(
710+
map(
711+
lambda x: x.namespace,
712+
list(self.classDefinitions.values()) + list(self.enumDefinitions.values()),
713+
)
714+
)
715+
)
699716
common_namespace = re.sub("(::)+$", "", common_namespace)
700717

701718
"""Generate final part of our cpp file."""
@@ -738,7 +755,8 @@ def epilogue(self, root_loader: Optional[TypeDef]) -> None:
738755
)
739756

740757
self.target.write(f"namespace {common_namespace} {{\n")
741-
self.target.write("""
758+
self.target.write(
759+
"""
742760
struct store_config {
743761
bool simplifyTypes = true;
744762
bool transformListsToMaps = true;
@@ -1145,12 +1163,15 @@ class heap_object {
11451163

11461164
# write implementations
11471165
for key in self.classDefinitions:
1148-
self.classDefinitions[key].writeImplDefinition(self.target, "", " ", common_namespace)
1166+
self.classDefinitions[key].writeImplDefinition(
1167+
self.target, "", " ", common_namespace
1168+
)
11491169
for key in self.mapDefinitions:
11501170
self.mapDefinitions[key].writeImplDefinition(self.target, "", " ", common_namespace)
11511171
for key in self.unionDefinitions:
1152-
self.unionDefinitions[key].writeImplDefinition(self.target, "", " ", common_namespace)
1153-
1172+
self.unionDefinitions[key].writeImplDefinition(
1173+
self.target, "", " ", common_namespace
1174+
)
11541175

11551176
self.target.write(f"namespace {common_namespace} {{\n")
11561177
self.target.write(

0 commit comments

Comments
 (0)