2020-01-04 14:21:38 +00:00
|
|
|
#!/usr/bin/env python3
|
2020-03-12 15:23:25 +00:00
|
|
|
# This file is a part of toml++ and is subject to the the terms of the MIT license.
|
|
|
|
# Copyright (c) 2019-2020 Mark Gillard <mark.gillard@outlook.com.au>
|
|
|
|
# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
|
2020-04-10 16:46:00 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2020-01-04 14:21:38 +00:00
|
|
|
|
|
|
|
import sys
|
2020-01-11 21:15:24 +00:00
|
|
|
import os.path as path
|
2020-06-25 14:33:01 +00:00
|
|
|
import utils
|
2020-01-04 14:21:38 +00:00
|
|
|
import hashlib
|
2020-01-11 21:15:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-01-04 14:21:38 +00:00
|
|
|
def main():
|
2020-06-25 14:33:01 +00:00
|
|
|
hpp_path = path.join(utils.get_script_folder(), '..', 'toml.hpp')
|
|
|
|
hash1 = hashlib.sha1(utils.read_all_text_from_file(hpp_path).encode('utf-8')).hexdigest()
|
2020-01-04 14:21:38 +00:00
|
|
|
print("Hash 1: {}".format(hash1))
|
2020-06-25 14:33:01 +00:00
|
|
|
utils.run_python_script('generate_single_header.py')
|
|
|
|
hash2 = hashlib.sha1(utils.read_all_text_from_file(hpp_path).encode('utf-8')).hexdigest()
|
2020-01-04 14:21:38 +00:00
|
|
|
print("Hash 2: {}".format(hash2))
|
|
|
|
if (hash1 != hash2):
|
|
|
|
print(
|
|
|
|
"toml.hpp wasn't up-to-date!\nRun generate_single_header.py before your commit to prevent this error.",
|
|
|
|
file=sys.stderr
|
|
|
|
)
|
|
|
|
return 1
|
|
|
|
print("toml.hpp was up-to-date")
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-06-25 14:33:01 +00:00
|
|
|
utils.run(main)
|