mirror of
https://github.com/reactos/CMake.git
synced 2025-04-04 08:11:35 +00:00

Add a file-based API that clients may use to get semantic information about the buildsystem that CMake generates. Clients will write query files under a designated location in the build tree, and CMake will write reply files for clients to read. Start with support for shared stateless query files. These allow clients to share requests for major object versions and get all those recognized by CMake. Once any client has written a shared request to a build tree it will persist. Other clients will not need to overwrite the request (since it is stateless) and should not remove it either. For now we add only an undocumented object kind to use for testing the query and reply infrastructure. Object kinds providing real semantic information will be added later. Issue: #18398
23 lines
722 B
Python
23 lines
722 B
Python
from check_index import *
|
|
|
|
def check_reply(r):
|
|
assert is_dict(r)
|
|
assert sorted(r.keys()) == ["__test-v1", "__test-v2", "__test-v3", "query.json", "unknown"]
|
|
check_index__test(r["__test-v1"], 1, 3)
|
|
check_index__test(r["__test-v2"], 2, 0)
|
|
check_error(r["__test-v3"], "unknown query file")
|
|
check_error(r["query.json"], "unknown query file")
|
|
check_error(r["unknown"], "unknown query file")
|
|
|
|
def check_objects(o):
|
|
assert is_list(o)
|
|
assert len(o) == 2
|
|
check_index__test(o[0], 1, 3)
|
|
check_index__test(o[1], 2, 0)
|
|
|
|
assert is_dict(index)
|
|
assert sorted(index.keys()) == ["cmake", "objects", "reply"]
|
|
check_cmake(index["cmake"])
|
|
check_reply(index["reply"])
|
|
check_objects(index["objects"])
|