-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ign -> gz Header Migration : ign-cmake #243
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,2 @@ | ||
add_subdirectory(gz) | ||
install(DIRECTORY ignition DESTINATION ${IGN_INCLUDE_INSTALL_DIR_FULL}) |
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,49 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef GZ_UTILITIES_EXTRATESTMACROS_HH | ||
#define GZ_UTILITIES_EXTRATESTMACROS_HH | ||
|
||
#include <gz/utilities/detail/ExtraTestMacros.hh> | ||
|
||
#pragma message("ign-cmake (utilities) ExtraTestMacros is deprecated, use ign-utils") | ||
|
||
/// \brief Restrict the execution of the test for the Windows platform. | ||
/// The test will be compiled on Windows too but will never be run as | ||
/// part of the test suite. The macro uses the Disabled_ prefix provided | ||
/// by googletest. See | ||
/// https://chromium.googlesource.com/external/github.com/google/googletest/+/HEAD/googletest/docs/advanced.md | ||
#define IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) \ | ||
DETAIL_IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) | ||
|
||
/// \brief Restrict the execution of the test for the Mac platform. | ||
/// The test will be compiled on Windows too but will never be run as | ||
/// part of the test suite. The macro uses the Disabled_ prefix provided | ||
/// by googletest. See | ||
/// https://chromium.googlesource.com/external/github.com/google/googletest/+/HEAD/googletest/docs/advanced.md | ||
#define IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) \ | ||
DETAIL_IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) | ||
|
||
/// \brief Restrict the execution of the test to just the Linux platform | ||
/// Other platforms will get the test compiled but it won't be run | ||
/// as part of the test suite execution. | ||
/// The macro uses the Disabled_ prefix provided by googletest. See | ||
/// https://chromium.googlesource.com/external/github.com/google/googletest/+/HEAD/googletest/docs/advanced.md | ||
#define IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) \ | ||
DETAIL_IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) | ||
|
||
#endif |
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,73 @@ | ||
/* | ||
* Copyright (C) 2018 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef GZ_UTILITIES_SUPPRESSWARNING_HH_ | ||
#define GZ_UTILITIES_SUPPRESSWARNING_HH_ | ||
|
||
#include <gz/utilities/detail/SuppressWarning.hh> | ||
|
||
#pragma message("ign-cmake (utilities) SuppressWarning is deprecated, use ign-utils") | ||
|
||
// This header contains cross-platform macros for suppressing warnings. Please | ||
// only use these macros responsibly when you are certain that the compiler is | ||
// producing a warning that is not applicable to the specific instance. Do not | ||
// use these macros to ignore legitimate warnings, even if you may find them | ||
// irritating. | ||
|
||
/* | ||
* Usage example: | ||
* | ||
* SomeClass *ptr = CreatePtr(); | ||
* IGN_UTILS_WARN_IGNORE__NON_VIRTUAL_DESTRUCTOR | ||
* delete ptr; | ||
* IGN_UTILS_WARN_RESUME__NON_VIRTUAL_DESTRUCTOR | ||
* | ||
*/ | ||
|
||
// Be sure to call the IGN_UTILS_WARN_RESUME__XXXXX macro at the end of the | ||
// block of code where the warning suppression is needed. Otherwise, you might | ||
// inadvertently suppress legitimate warnings. | ||
|
||
// ---- List of available suppressions ---- | ||
|
||
/// \brief Compilers might warn about deleting a pointer to a class that has | ||
/// virtual functions without a virtual destructor or a `final` declaration, | ||
/// because the pointer might secretly be pointing to a more derived class type. | ||
/// We want to suppress this warning when we know for certain (via the design | ||
/// of our implementation) that the pointer is definitely not pointing to a more | ||
/// derived type. | ||
#define IGN_UTILS_WARN_IGNORE__NON_VIRTUAL_DESTRUCTOR \ | ||
DETAIL_IGN_UTILS_WARN_IGNORE__NON_VIRTUAL_DESTRUCTOR | ||
|
||
#define IGN_UTILS_WARN_RESUME__NON_VIRTUAL_DESTRUCTOR \ | ||
DETAIL_IGN_UTILS_WARN_RESUME__NON_VIRTUAL_DESTRUCTOR | ||
|
||
/// \brief Microsoft Visual Studio does not automatically export the interface | ||
/// information for member variables that belong to interface classes of a DLL. | ||
/// Instead it issues this warning. When the member variable is private, we | ||
/// choose to suppress the warning instead of needlessly adding the class | ||
/// information to the DLL interface. | ||
#define IGN_UTILS_WARN_IGNORE__DLL_INTERFACE_MISSING \ | ||
DETAIL_IGN_UTILS_WARN_IGNORE__DLL_INTERFACE_MISSING | ||
|
||
#define IGN_UTILS_WARN_RESUME__DLL_INTERFACE_MISSING \ | ||
DETAIL_IGN_UTILS_WARN_RESUME__DLL_INTERFACE_MISSING | ||
|
||
// TODO(anyone): Add more warning types as they become relevant. | ||
// Do not add warning types to suppress unless they are genuinely necessary. | ||
|
||
#endif |
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,62 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef GZ_UTILITIES_DETAIL_EXTRATESTMACROS_HH | ||
#define GZ_UTILITIES_DETAIL_EXTRATESTMACROS_HH | ||
|
||
#include <gz/utilities/SuppressWarning.hh> | ||
|
||
#define DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(x) DISABLED_##x | ||
|
||
#if defined _WIN32 | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) \ | ||
DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(TestName) | ||
|
||
#else | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) \ | ||
TestName | ||
|
||
#endif | ||
|
||
#if defined __APPLE__ | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) \ | ||
DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(TestName) | ||
|
||
#else | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) \ | ||
TestName | ||
|
||
#endif | ||
|
||
#if defined __linux__ | ||
|
||
#define DETAIL_IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) \ | ||
TestName | ||
|
||
#else | ||
|
||
#define DETAIL_IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) \ | ||
DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(TestName) | ||
|
||
#endif | ||
|
||
|
||
#endif |
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,157 @@ | ||
/* | ||
* Copyright (C) 2017 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
|
||
#ifndef GZ_UTILITIES_DETAIL_SUPPRESSWARNING_HH_ | ||
#define GZ_UTILITIES_DETAIL_SUPPRESSWARNING_HH_ | ||
|
||
#include <gz/utilities/SuppressWarning.hh> | ||
|
||
#define DETAIL_IGN_UTILS_STRINGIFY(x) #x | ||
|
||
/* cppcheck-suppress */ | ||
|
||
// BEGIN / FINISH Macros | ||
|
||
#if defined __clang__ | ||
|
||
#define DETAIL_IGN_UTILS_BEGIN_WARN_SUP_PUSH \ | ||
_Pragma("clang diagnostic push") | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_SUP_HELPER_2(w) \ | ||
DETAIL_IGN_UTILS_STRINGIFY(clang diagnostic ignored w) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_SUP_HELPER(w) \ | ||
_Pragma(DETAIL_IGN_UTILS_WARN_SUP_HELPER_2(w)) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME \ | ||
_Pragma("clang diagnostic pop") | ||
|
||
|
||
#elif defined __GNUC__ | ||
|
||
// NOTE: clang will define both __clang__ and __GNUC__, and it seems that | ||
// clang will gladly accept GCC pragmas. Even so, if we want the pragmas to | ||
// target the "correct" compiler, we should check if __clang__ is defined | ||
// before checking whether __GNUC__ is defined. | ||
|
||
#define DETAIL_IGN_UTILS_BEGIN_WARN_SUP_PUSH \ | ||
_Pragma("GCC diagnostic push") | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_SUP_HELPER_2(w) \ | ||
DETAIL_IGN_UTILS_STRINGIFY(GCC diagnostic ignored w) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_SUP_HELPER(w) \ | ||
_Pragma(DETAIL_IGN_UTILS_WARN_SUP_HELPER_2(w)) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME \ | ||
_Pragma("GCC diagnostic pop") | ||
|
||
|
||
#elif defined _MSC_VER | ||
|
||
|
||
#define DETAIL_IGN_UTILS_BEGIN_WARN_SUP_PUSH \ | ||
__pragma(warning(push)) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_SUP_HELPER(w) \ | ||
__pragma(warning(disable: w)) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME \ | ||
__pragma(warning(pop)) | ||
|
||
|
||
#else | ||
|
||
// Make these into no-ops if we don't know the type of compiler | ||
|
||
#define DETAIL_IGN_UTILS_BEGIN_WARN_SUP_PUSH | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_SUP_HELPER(w) | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME | ||
|
||
|
||
#endif | ||
|
||
|
||
#define DETAIL_IGN_UTILS_BEGIN_WARNING_SUPPRESSION(warning_token) \ | ||
DETAIL_IGN_UTILS_BEGIN_WARN_SUP_PUSH \ | ||
DETAIL_IGN_UTILS_WARN_SUP_HELPER(warning_token) | ||
|
||
|
||
|
||
// Warning Tokens | ||
#if defined __GNUC__ || defined __clang__ | ||
|
||
#define DETAIL_IGN_UTILS_WARN_IGNORE__NON_VIRTUAL_DESTRUCTOR \ | ||
DETAIL_IGN_UTILS_BEGIN_WARNING_SUPPRESSION("-Wdelete-non-virtual-dtor") | ||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME__NON_VIRTUAL_DESTRUCTOR \ | ||
DETAIL_IGN_UTILS_WARN_RESUME | ||
|
||
|
||
// There is no analogous warning for this in GCC or Clang so we just make | ||
// blank macros for this warning type. | ||
#define DETAIL_IGN_UTILS_WARN_IGNORE__DLL_INTERFACE_MISSING | ||
#define DETAIL_IGN_UTILS_WARN_RESUME__DLL_INTERFACE_MISSING | ||
|
||
|
||
#elif defined _MSC_VER | ||
|
||
#define DETAIL_IGN_UTILS_WARN_IGNORE__NON_VIRTUAL_DESTRUCTOR \ | ||
DETAIL_IGN_UTILS_BEGIN_WARNING_SUPPRESSION(4265) \ | ||
DETAIL_IGN_UTILS_BEGIN_WARNING_SUPPRESSION(5205) | ||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME__NON_VIRTUAL_DESTRUCTOR \ | ||
DETAIL_IGN_UTILS_WARN_RESUME | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_IGNORE__DLL_INTERFACE_MISSING \ | ||
DETAIL_IGN_UTILS_BEGIN_WARNING_SUPPRESSION(4251) | ||
|
||
#define DETAIL_IGN_UTILS_WARN_RESUME__DLL_INTERFACE_MISSING \ | ||
DETAIL_IGN_UTILS_WARN_RESUME | ||
|
||
|
||
#else | ||
|
||
// If the compiler is unknown, we simply leave these macros blank to avoid | ||
// compilation errors. | ||
|
||
#define DETAIL_IGN_UTILS_WARN_IGNORE__NON_VIRTUAL_DESTRUCTOR | ||
#define DETAIL_IGN_UTILS_WARN_RESUME__NON_VIRTUAL_DESTRUCTOR | ||
|
||
|
||
#define DETAIL_IGN_UTILS_WARN_IGNORE__DLL_INTERFACE_MISSING | ||
#define DETAIL_IGN_UTILS_WARN_RESUME__DLL_INTERFACE_MISSING | ||
|
||
|
||
#endif | ||
|
||
|
||
#endif |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is deprecated anyway, how about we don't add
gz
aliases for them? That is, users ofignition/utilities
shouldn't migrate togz/utilities
, but togz/utils
, which is in another library.