Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F5095523
D1938.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D1938.id.diff
View Options
diff --git a/utils/dump-py-state.py b/utils/dump-py-state.py
new file mode 100755
--- /dev/null
+++ b/utils/dump-py-state.py
@@ -0,0 +1,84 @@
+#!/usr/bin/env python3
+
+# -------------------------------------------------------------
+# rOPS — compile a #!py .sls file and dump result in YAML
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Project: Nasqueron
+# Created: 2018-10-17
+# Description: Read the web_content_sls pillar entry
+# and regenerate the webserver-content include.
+# License: BSD-2-Clause
+# -------------------------------------------------------------
+
+
+import os
+import sys
+import yaml
+
+
+# -------------------------------------------------------------
+# Pillar helper
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+
+
+def get_pillar_files(pillar_directory):
+ pillar_files = []
+
+ for dir_path, dir_names, file_names in os.walk(pillar_directory):
+ files = [os.path.join(dir_path, file_name)
+ for file_name in file_names
+ if file_name.endswith(".sls")]
+
+ pillar_files.extend(files)
+
+ return pillar_files
+
+
+def load_pillar(pillar_directory):
+ pillar = {}
+
+ for pillar_file in get_pillar_files(pillar_directory):
+ data = yaml.load(open(pillar_file, "r"))
+ pillar.update(data)
+
+ return pillar
+
+
+# -------------------------------------------------------------
+# Source code helper
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+
+
+def run_shim():
+ return "\n\nif __name__ == '__main__':\n\tprint(yaml.dump(run(), default_flow_style=False))"
+
+
+def assemble_source_code(filename):
+ with open(filename, 'r') as fd:
+ source_code = fd.read()
+
+ return source_code + run_shim()
+
+
+# -------------------------------------------------------------
+# Run task
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+
+
+if __name__ == "__main__":
+ argc = len(sys.argv)
+
+ if argc < 2:
+ print("Usage: dump-py-state.py <sls file>", file=sys.stderr)
+ exit(1)
+
+ sls_file = sys.argv[1]
+
+ try:
+ source_code = assemble_source_code(sls_file)
+ except OSError as ex:
+ print(ex, file=sys.stderr)
+ exit(ex.errno)
+
+ __pillar__ = load_pillar("pillar")
+ exec(source_code)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 5, 21:46 (19 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2462476
Default Alt Text
D1938.id.diff (2 KB)
Attached To
Mode
D1938: Compile and dump a Pure python state file
Attached
Detach File
Event Timeline
Log In to Comment