Skip to content

Commit af81980

Browse files
authored
Mark some symbols to be deprecated #minor (#698) (#701)
This change introduces the file deprecated.go, which contains any constants, functions, and types that are slated to be deprecated in the next major release. These symbols are deprecated because they refer to old spellings in pre-1.0 libgit2. This also makes the build be done with the `-DDEPRECATE_HARD` flag to avoid regressions. This, together with [gorelease](https://godoc.org/golang.org/x/exp/cmd/gorelease)[1] should make releases safer going forward. 1: More information about how that works at https://go.googlesource.com/exp/+/refs/heads/master/apidiff/README.md (cherry picked from commit 137c05e)
1 parent 8d28e2a commit af81980

40 files changed

+517
-262
lines changed

blob.go

-27
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ void _go_git_writestream_free(git_writestream *stream);
99
*/
1010
import "C"
1111
import (
12-
"io"
1312
"reflect"
1413
"runtime"
1514
"unsafe"
@@ -76,32 +75,6 @@ func (repo *Repository) CreateBlobFromBuffer(data []byte) (*Oid, error) {
7675
return newOidFromC(&id), nil
7776
}
7877

79-
type BlobChunkCallback func(maxLen int) ([]byte, error)
80-
81-
type BlobCallbackData struct {
82-
Callback BlobChunkCallback
83-
Error error
84-
}
85-
86-
//export blobChunkCb
87-
func blobChunkCb(buffer *C.char, maxLen C.size_t, handle unsafe.Pointer) int {
88-
payload := pointerHandles.Get(handle)
89-
data, ok := payload.(*BlobCallbackData)
90-
if !ok {
91-
panic("could not retrieve blob callback data")
92-
}
93-
94-
goBuf, err := data.Callback(int(maxLen))
95-
if err == io.EOF {
96-
return 0
97-
} else if err != nil {
98-
data.Error = err
99-
return -1
100-
}
101-
C.memcpy(unsafe.Pointer(buffer), unsafe.Pointer(&goBuf[0]), C.size_t(len(goBuf)))
102-
return len(goBuf)
103-
}
104-
10578
func (repo *Repository) CreateFromStream(hintPath string) (*BlobWriteStream, error) {
10679
var chintPath *C.char = nil
10780
var stream *C.git_writestream

branch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func (i *BranchIterator) ForEach(f BranchIteratorFunc) error {
7373
}
7474
}
7575

76-
if err != nil && IsErrorCode(err, ErrIterOver) {
76+
if err != nil && IsErrorCode(err, ErrorCodeIterOver) {
7777
return nil
7878
}
7979

branch_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func TestBranchIterator(t *testing.T) {
2222
t.Fatalf("expected BranchLocal, not %v", t)
2323
}
2424
b, bt, err = i.Next()
25-
if !IsErrorCode(err, ErrIterOver) {
25+
if !IsErrorCode(err, ErrorCodeIterOver) {
2626
t.Fatal("expected iterover")
2727
}
2828
}
@@ -49,7 +49,7 @@ func TestBranchIteratorEach(t *testing.T) {
4949
}
5050

5151
err = i.ForEach(f)
52-
if err != nil && !IsErrorCode(err, ErrIterOver) {
52+
if err != nil && !IsErrorCode(err, ErrorCodeIterOver) {
5353
t.Fatal(err)
5454
}
5555

checkout.go

+25-24
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const (
5151
type CheckoutNotifyCallback func(why CheckoutNotifyType, path string, baseline, target, workdir DiffFile) ErrorCode
5252
type CheckoutProgressCallback func(path string, completed, total uint) ErrorCode
5353

54-
type CheckoutOpts struct {
54+
type CheckoutOptions struct {
5555
Strategy CheckoutStrategy // Default will be a dry run
5656
DisableFilters bool // Don't apply filters like CRLF conversion
5757
DirMode os.FileMode // Default is 0755
@@ -65,32 +65,33 @@ type CheckoutOpts struct {
6565
Baseline *Tree
6666
}
6767

68-
func checkoutOptionsFromC(c *C.git_checkout_options) CheckoutOpts {
69-
opts := CheckoutOpts{}
70-
opts.Strategy = CheckoutStrategy(c.checkout_strategy)
71-
opts.DisableFilters = c.disable_filters != 0
72-
opts.DirMode = os.FileMode(c.dir_mode)
73-
opts.FileMode = os.FileMode(c.file_mode)
74-
opts.FileOpenFlags = int(c.file_open_flags)
75-
opts.NotifyFlags = CheckoutNotifyType(c.notify_flags)
68+
func checkoutOptionsFromC(c *C.git_checkout_options) CheckoutOptions {
69+
opts := CheckoutOptions{
70+
Strategy: CheckoutStrategy(c.checkout_strategy),
71+
DisableFilters: c.disable_filters != 0,
72+
DirMode: os.FileMode(c.dir_mode),
73+
FileMode: os.FileMode(c.file_mode),
74+
FileOpenFlags: int(c.file_open_flags),
75+
NotifyFlags: CheckoutNotifyType(c.notify_flags),
76+
}
7677
if c.notify_payload != nil {
77-
opts.NotifyCallback = pointerHandles.Get(c.notify_payload).(*CheckoutOpts).NotifyCallback
78+
opts.NotifyCallback = pointerHandles.Get(c.notify_payload).(*CheckoutOptions).NotifyCallback
7879
}
7980
if c.progress_payload != nil {
80-
opts.ProgressCallback = pointerHandles.Get(c.progress_payload).(*CheckoutOpts).ProgressCallback
81+
opts.ProgressCallback = pointerHandles.Get(c.progress_payload).(*CheckoutOptions).ProgressCallback
8182
}
8283
if c.target_directory != nil {
8384
opts.TargetDirectory = C.GoString(c.target_directory)
8485
}
8586
return opts
8687
}
8788

88-
func (opts *CheckoutOpts) toC() *C.git_checkout_options {
89+
func (opts *CheckoutOptions) toC() *C.git_checkout_options {
8990
if opts == nil {
9091
return nil
9192
}
9293
c := C.git_checkout_options{}
93-
populateCheckoutOpts(&c, opts)
94+
populateCheckoutOptions(&c, opts)
9495
return &c
9596
}
9697

@@ -110,7 +111,7 @@ func checkoutNotifyCallback(why C.git_checkout_notify_t, cpath *C.char, cbaselin
110111
if cworkdir != nil {
111112
workdir = diffFileFromC((*C.git_diff_file)(cworkdir))
112113
}
113-
opts := pointerHandles.Get(data).(*CheckoutOpts)
114+
opts := pointerHandles.Get(data).(*CheckoutOptions)
114115
if opts.NotifyCallback == nil {
115116
return 0
116117
}
@@ -119,17 +120,17 @@ func checkoutNotifyCallback(why C.git_checkout_notify_t, cpath *C.char, cbaselin
119120

120121
//export checkoutProgressCallback
121122
func checkoutProgressCallback(path *C.char, completed_steps, total_steps C.size_t, data unsafe.Pointer) int {
122-
opts := pointerHandles.Get(data).(*CheckoutOpts)
123+
opts := pointerHandles.Get(data).(*CheckoutOptions)
123124
if opts.ProgressCallback == nil {
124125
return 0
125126
}
126127
return int(opts.ProgressCallback(C.GoString(path), uint(completed_steps), uint(total_steps)))
127128
}
128129

129-
// Convert the CheckoutOpts struct to the corresponding
130+
// Convert the CheckoutOptions struct to the corresponding
130131
// C-struct. Returns a pointer to ptr, or nil if opts is nil, in order
131132
// to help with what to pass.
132-
func populateCheckoutOpts(ptr *C.git_checkout_options, opts *CheckoutOpts) *C.git_checkout_options {
133+
func populateCheckoutOptions(ptr *C.git_checkout_options, opts *CheckoutOptions) *C.git_checkout_options {
133134
if opts == nil {
134135
return nil
135136
}
@@ -165,7 +166,7 @@ func populateCheckoutOpts(ptr *C.git_checkout_options, opts *CheckoutOpts) *C.gi
165166
return ptr
166167
}
167168

168-
func freeCheckoutOpts(ptr *C.git_checkout_options) {
169+
func freeCheckoutOptions(ptr *C.git_checkout_options) {
169170
if ptr == nil {
170171
return
171172
}
@@ -180,12 +181,12 @@ func freeCheckoutOpts(ptr *C.git_checkout_options) {
180181

181182
// Updates files in the index and the working tree to match the content of
182183
// the commit pointed at by HEAD. opts may be nil.
183-
func (v *Repository) CheckoutHead(opts *CheckoutOpts) error {
184+
func (v *Repository) CheckoutHead(opts *CheckoutOptions) error {
184185
runtime.LockOSThread()
185186
defer runtime.UnlockOSThread()
186187

187188
cOpts := opts.toC()
188-
defer freeCheckoutOpts(cOpts)
189+
defer freeCheckoutOptions(cOpts)
189190

190191
ret := C.git_checkout_head(v.ptr, cOpts)
191192
runtime.KeepAlive(v)
@@ -199,7 +200,7 @@ func (v *Repository) CheckoutHead(opts *CheckoutOpts) error {
199200
// Updates files in the working tree to match the content of the given
200201
// index. If index is nil, the repository's index will be used. opts
201202
// may be nil.
202-
func (v *Repository) CheckoutIndex(index *Index, opts *CheckoutOpts) error {
203+
func (v *Repository) CheckoutIndex(index *Index, opts *CheckoutOptions) error {
203204
var iptr *C.git_index = nil
204205
if index != nil {
205206
iptr = index.ptr
@@ -209,7 +210,7 @@ func (v *Repository) CheckoutIndex(index *Index, opts *CheckoutOpts) error {
209210
defer runtime.UnlockOSThread()
210211

211212
cOpts := opts.toC()
212-
defer freeCheckoutOpts(cOpts)
213+
defer freeCheckoutOptions(cOpts)
213214

214215
ret := C.git_checkout_index(v.ptr, iptr, cOpts)
215216
runtime.KeepAlive(v)
@@ -220,12 +221,12 @@ func (v *Repository) CheckoutIndex(index *Index, opts *CheckoutOpts) error {
220221
return nil
221222
}
222223

223-
func (v *Repository) CheckoutTree(tree *Tree, opts *CheckoutOpts) error {
224+
func (v *Repository) CheckoutTree(tree *Tree, opts *CheckoutOptions) error {
224225
runtime.LockOSThread()
225226
defer runtime.UnlockOSThread()
226227

227228
cOpts := opts.toC()
228-
defer freeCheckoutOpts(cOpts)
229+
defer freeCheckoutOptions(cOpts)
229230

230231
ret := C.git_checkout_tree(v.ptr, tree.ptr, cOpts)
231232
runtime.KeepAlive(v)

cherrypick.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type CherrypickOptions struct {
1212
Version uint
1313
Mainline uint
1414
MergeOpts MergeOptions
15-
CheckoutOpts CheckoutOpts
15+
CheckoutOpts CheckoutOptions
1616
}
1717

1818
func cherrypickOptionsFromC(c *C.git_cherrypick_options) CherrypickOptions {
@@ -41,7 +41,7 @@ func freeCherrypickOpts(ptr *C.git_cherrypick_options) {
4141
if ptr == nil {
4242
return
4343
}
44-
freeCheckoutOpts(&ptr.checkout_opts)
44+
freeCheckoutOptions(&ptr.checkout_opts)
4545
}
4646

4747
func DefaultCherrypickOptions() (CherrypickOptions, error) {

cherrypick_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func checkout(t *testing.T, repo *Repository, commit *Commit) {
1111
t.Fatal(err)
1212
}
1313

14-
err = repo.CheckoutTree(tree, &CheckoutOpts{Strategy: CheckoutSafe})
14+
err = repo.CheckoutTree(tree, &CheckoutOptions{Strategy: CheckoutSafe})
1515
if err != nil {
1616
t.Fatal(err)
1717
}

clone.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ func remoteCreateCallback(cremote unsafe.Pointer, crepo unsafe.Pointer, cname, c
5858
runtime.SetFinalizer(repo, nil)
5959

6060
if opts, ok := pointerHandles.Get(payload).(CloneOptions); ok {
61-
remote, err := opts.RemoteCreateCallback(repo, name, url)
61+
remote, errorCode := opts.RemoteCreateCallback(repo, name, url)
6262
// clear finalizer as the calling C function will
6363
// free the remote itself
6464
runtime.SetFinalizer(remote, nil)
6565

66-
if err == ErrOk && remote != nil {
66+
if errorCode == ErrorCodeOK && remote != nil {
6767
cptr := (**C.git_remote)(cremote)
6868
*cptr = remote.ptr
69-
} else if err == ErrOk && remote == nil {
69+
} else if errorCode == ErrorCodeOK && remote == nil {
7070
panic("no remote created by callback")
7171
}
7272

73-
return C.int(err)
73+
return C.int(errorCode)
7474
} else {
7575
panic("invalid remote create callback")
7676
}
@@ -82,7 +82,7 @@ func populateCloneOptions(ptr *C.git_clone_options, opts *CloneOptions) {
8282
if opts == nil {
8383
return
8484
}
85-
populateCheckoutOpts(&ptr.checkout_opts, opts.CheckoutOpts)
85+
populateCheckoutOptions(&ptr.checkout_opts, opts.CheckoutOpts)
8686
populateFetchOptions(&ptr.fetch_opts, opts.FetchOptions)
8787
ptr.bare = cbool(opts.Bare)
8888

@@ -98,7 +98,7 @@ func freeCloneOptions(ptr *C.git_clone_options) {
9898
return
9999
}
100100

101-
freeCheckoutOpts(&ptr.checkout_opts)
101+
freeCheckoutOptions(&ptr.checkout_opts)
102102

103103
if ptr.remote_cb_payload != nil {
104104
pointerHandles.Untrack(ptr.remote_cb_payload)

clone_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ func TestCloneWithCallback(t *testing.T) {
5454

5555
remote, err := r.Remotes.Create(REMOTENAME, url)
5656
if err != nil {
57-
return nil, ErrGeneric
57+
return nil, ErrorCodeGeneric
5858
}
5959

60-
return remote, ErrOk
60+
return remote, ErrorCodeOK
6161
},
6262
}
6363

0 commit comments

Comments
 (0)