Skip to content
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

Attach finalizers to LibGit2 methods #19660

Merged
merged 7 commits into from Jan 9, 2017
Merged

Attach finalizers to LibGit2 methods #19660

merged 7 commits into from Jan 9, 2017

Conversation

simonbyrne
Copy link
Contributor

Fixes #17414.

@simonbyrne simonbyrne added the libgit2 The libgit2 library or the LibGit2 stdlib module label Dec 20, 2016
@simonbyrne
Copy link
Contributor Author

The alternative here, of course, is to actually add these methods as finalizers to the relevant objects: this would probably make more sense in the long run (as a benefit, we wouldn't need to then deprecate the finalize methods, as these would be implicit).

Copy link
Contributor

@tkelman tkelman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this lgtm for now. be sure to squash

@simonbyrne
Copy link
Contributor Author

@wildart Do you know why we don't use object finalizers for these?

@simonbyrne
Copy link
Contributor Author

I've cleaned this up so that most now actually act like finalizers. This can't be used for StrArrayStruct and Buffer though, as they're immutable, but these aren't really user facing.

@tkelman
Copy link
Contributor

tkelman commented Dec 31, 2016

seems to cause Pkg issues, see the travis log

@simonbyrne
Copy link
Contributor Author

Okay, hopefully this should be good.

@simonbyrne simonbyrne changed the title Overload Base.close instead of Base.finalize for LibGit2 Attach finalizers to LibGit2 methods Jan 4, 2017
@simonbyrne simonbyrne mentioned this pull request Jan 4, 2017
42 tasks
ccall((:git_object_free, :libgit2), Void, (Ptr{Void},), obj.ptr)
obj.ptr = C_NULL

macro defclose(typ,cname)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this used anywhere?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, no: was left over from my refactoring

(:GitTree, :GitRepo, :GitObject, :git_tree),
(:GitTag, :GitRepo, :GitObject, :git_tag)]

if reporef == nothing
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

===

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed.

end
[GitAnnotated(repo, tr_brn_ref)]
end
tr_brn_ref = upstream(head_ref)
Copy link
Contributor

@tkelman tkelman Jan 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

upstream(head(repo)) ? does this not need with(head(repo)) any more?

Copy link
Contributor Author

@simonbyrne simonbyrne Jan 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, something got broken in the rebase. I'll try to figure out what happened.

@simonbyrne
Copy link
Contributor Author

Okay, I think this is ready.

@tkelman tkelman merged commit db4aaa3 into master Jan 9, 2017
@tkelman tkelman deleted the sb/libgit2/no-finalize branch January 9, 2017 10:16
@KristofferC
Copy link
Sponsor Member

KristofferC commented Jan 9, 2017

Are there any requirements from libgit2 that objects should be freed "quickly" as they are when using the with form? Or is it fine to just delay the freeing until whenever the finalizers are run?

@simonbyrne
Copy link
Contributor Author

Not that I can tell, no.

In fact, we could probably clean up the code quite a bit by getting rid of all the with statements.

@tkelman
Copy link
Contributor

tkelman commented Jan 9, 2017

Unless I guess anything on the C side holds open file handles that we'd like to delete or similar?

@simonbyrne
Copy link
Contributor Author

That could be, but the libgit2 docs are pretty sparse in that regard.

@Sacha0 Sacha0 added deprecation This change introduces or involves a deprecation needs news A NEWS entry is required for this change labels May 20, 2017
@KristofferC KristofferC removed the needs news A NEWS entry is required for this change label Nov 13, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deprecation This change introduces or involves a deprecation libgit2 The libgit2 library or the LibGit2 stdlib module
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants