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.
[upstream_utils] Add ConcurrentQueue
- Loading branch information
1 parent
874d8a8
commit cf9760d
Showing
5 changed files
with
3,797 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") | ||
|
||
# Copy expected header into allwpilib | ||
dest_filename = os.path.join( | ||
wpiutil, "src/main/native/thirdparty/concurrentqueue/include/wpi/concurrentqueue.h" | ||
) | ||
shutil.copyfile("concurrentqueue.h", dest_filename) | ||
|
||
# Rename namespace from tl 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_") | ||
with open(dest_filename, "w") as f: | ||
f.write(content) | ||
|
||
|
||
def main(): | ||
name = "concurrentqueue" | ||
url = "https://github.com/cameron314/concurrentqueue" | ||
# master on 2024-09-10 | ||
tag = "6dd38b8a1dbaa7863aa907045f32308a56a6ff5d" | ||
|
||
concurrentqueue = Lib(name, url, tag, copy_upstream_src) | ||
concurrentqueue.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.