forked from wpilibsuite/allwpilib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
4,806 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import shutil | ||
|
||
from upstream_utils import Lib | ||
|
||
def copy_upstream_src(wpilib_root): | ||
wpiutil = os.path.join(wpilib_root, "wpiutil") | ||
|
||
headers = ["blockingconcurrentqueue.h", "concurrentqueue.h", "lightweightsemaphore.h"] | ||
# Copy headers into allwpilib | ||
for header in headers: | ||
dest_filename = os.path.join( | ||
wpiutil, f"src/main/native/thirdparty/concurrentqueue/include/wpi/{header}" | ||
) | ||
shutil.copyfile(header, dest_filename) | ||
# Rename namespace from moodycamel to wpi, and detail to detail_expected | ||
with open(dest_filename) as f: | ||
content = f.read() | ||
content = content.replace("namespace moodycamel", "namespace wpi") | ||
content = content.replace("moodycamel::", "wpi::") | ||
content = content.replace("MOODYCAMEL_", "WPI_CQ_") | ||
with open(dest_filename, "w") as f: | ||
f.write(content) | ||
|
||
|
||
def main(): | ||
name = "concurrentqueue" | ||
url = "https://github.com/cameron314/concurrentqueue" | ||
# master on 2024-01-25 | ||
tag = "6dd38b8a1dbaa7863aa907045f32308a56a6ff5d" | ||
|
||
expected = Lib(name, url, tag, copy_upstream_src) | ||
expected.main() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.