Explorar el Código

Perform binary target matching within config

nosoop hace 10 meses
padre
commit
58edb82e0c
Se han modificado 2 ficheros con 13 adiciones y 4 borrados
  1. 7 4
      src/smgdc/app.py
  2. 6 0
      src/smgdc/validate.py

+ 7 - 4
src/smgdc/app.py

@@ -34,11 +34,14 @@ def main() -> None:
     linux_target = LinuxBinary(pathlib.Path("server_srv.so"))
     windows_target = WindowsBinary(pathlib.Path("server.dll"))
 
-    for name, entry in entries.items():
-        target: PlatformBinary = linux_target
-        if entry.target.suffix == ".dll":
-            target = windows_target
+    linux_target.path = pathlib.Path("232250/tf/bin/server_srv.so")
+    windows_target.path = pathlib.Path("232250/tf/bin/server.dll")
+
+    candidate_targets: list[PlatformBinary] = [linux_target, windows_target]
 
+    for name, entry in entries.items():
+        target = entry.get_target_match(candidate_targets)
+        assert target, f"No binary match for {entry.target}"
         try:
             for key, result in entry.process(target).items():
                 print("- [OK]", key.substitute(name=name), "=", result)

+ 6 - 0
src/smgdc/validate.py

@@ -116,6 +116,12 @@ class BaseEntry(msgspec.Struct, kw_only=True):
     def process(self, bin: PlatformBinary) -> ResultValues:
         raise NotImplementedError(f"Cannot process {type(self).__qualname__}")
 
+    def get_target_match(self, candidates: list[PlatformBinary]) -> PlatformBinary | None:
+        for candidate in candidates:
+            if candidate.path.absolute().parts[-len(self.target.parts) :] == self.target.parts:
+                return candidate
+        return None
+
 
 class LocationEntry(BaseEntry):
     symbol: str | None = None