Deprecation: export the deprecated functions properly - #4979
Conversation
e27ec65 to
00dcd18
Compare
00dcd18 to
d17beb5
Compare
|
This is good, but not enough to fix $ sed -n 's/^.*GIT_EXTERN([^)]*) \([a-zA-Z0-9_]*\).*$/\1/p' include/git2/deprecated.h
git_buf_free
giterr_last
giterr_clear
giterr_set_str
giterr_set_oomFrom what I see, only Also to check it's indeed properly included in the resulting library (amend paths as needed) $ sed -n 's/^.*GIT_EXTERN([^)]*) \([a-zA-Z0-9_]*\).*$/\1/p' include/git2/deprecated.h | while read f; do objdump -T /usr/lib/libgit2.so | grep -qF $f || echo "$f is missing" >&2; done |
|
Adding this WFM indeed: diff --git a/src/buffer.c b/src/buffer.c
index 51fb48a45..61bd30471 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -10,6 +10,8 @@
#include "buf_text.h"
#include <ctype.h>
+#include <git2/deprecated.h>
+
/* Used as default value for git_buf->ptr so that people can always
* assume ptr is non-NULL and zero terminated even for new git_bufs.
*/ |
d17beb5 to
eb4160d
Compare
|
Thanks for the catch @b4n. I've moved the inclusion of I've also added some tests to ensure that we get the declarations for the deprecated functions (via (These warnings will be errors in the CI since we build with Obviously there's still possibilities here for a developer to introduce a new deprecated function that does not end up in this test case but this is a good start. Long term we could add another nightly build that produces a normally deprecated version of the library and ensures that the symbols are actually present and properly exported, but I think that this is a good step for now. |
|
Ha ha, thanks MSVC and its precompiled headers. 😡 |
| environmentVariables: | | ||
| CC=gcc | ||
| CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL | ||
| CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON |
There was a problem hiding this comment.
Makes me wish for a developer profile that automatically enables such things.
There was a problem hiding this comment.
Yeah, I see where you're going. Also -Werror and friends. I want to make this as surgical a fix as I can for a very prompt 0.28.1 to unbreak people, but I think that this is probably a good idea.
| ADD_DEFINITIONS(-DGIT_DEPRECATE_HARD) | ||
| IF (DEPRECATE_HARD) | ||
| ADD_DEFINITIONS(-DGIT_DEPRECATE_HARD) | ||
| ENDIF() |
There was a problem hiding this comment.
I'm not quite happy with the fact that we're now building the library with deprecated functionality enabled by default. It makes it much easier to accidentally use the old functions and only notice as soon as CI fails, which is a needless waste of time.
At the least, it makes me wish for a developer profile that automatically enables such options. Alternatively, one might thing about having a macro GIT_EXTERN_DEPRECATED, that is either
#ifdef GIT_DEPRECATE_HARD
#define GIT_EXTERN_DEPRECATED(x) extern GIT_DEPRECATED(x)
#else
#define GIT_EXTERN_DEPRECATED(x) extern x
#endif
Like this, we always have the function declared as extern but only produce warnings/errors in case where GIT_DEPRECATE_HARD is defined.
52ac835 to
eb4160d
Compare
|
OK, I'm dropping the test. I thought it would work out well enough, but precompiled headers on MSVC are proving challenging. (Since When the MSVC builds have Anyway, I don't know how to fix this offhand and as the disclaimer above points out, these tests are Not Really Perfect anyway, so I'm just going to drop them. I confirmed manually that we export the So I want to get this merged and 0.28.1 released so that anybody else picking up the release won't see this breakage. We can plan a better test strategy for vnext. (Building a version of the library without any deprecation and ensuring that we can link to it would be my preference.) |
|
|
||
| #include "git2/types.h" | ||
| #include "git2/errors.h" | ||
| #include "git2/deprecated.h" |
There was a problem hiding this comment.
Shouldn't this have a comment as to why it's there? It feels like it'd be easy for somebody to think this is useless and drop it. Especially if you don't include your deprecated functions test case, but even then they might loose some of their time.
There was a problem hiding this comment.
🤔 Seems reasonable enough.
Although the error functions were deprecated, we did not properly mark them as deprecated. We need to include the `deprecated.h` file in order to ensure that the functions get their export attributes. Similarly, do not define `GIT_DEPRECATE_HARD` within the library, or those functions will also not get their export attributes. Define that only on the tests and examples.
Add a CMake option to enable hard deprecation; the resultant library will _not_ include any deprecated functions. This may be useful for internal CI builds that create libraries that are not shared with end-users to ensure that we do not use deprecated bits internally.
Enable hard deprecation in our builds to ensure that we do not call deprecated functions internally.
eb4160d to
3f823c2
Compare
Although the error functions were deprecated, we did not properly mark them as deprecated. We need to include the
deprecated.hfile in order to ensure that the functions get their export attributes.Similarly, do not define
GIT_DEPRECATE_HARDwithin the library, or those functions will also not get their export attributes. Define that only on the tests and examples.Add a CMake option to enable hard deprecation; the resultant library will not include any deprecated functions. This may be useful for internal CI builds that create libraries that are not shared with end-users to ensure that we do not use deprecated bits internally.
Fixes #4978
Finally, enable hard deprecation in our builds to ensure that we do not call deprecated functions internally.