@@ -51,7 +51,7 @@ const (
51
51
type CheckoutNotifyCallback func (why CheckoutNotifyType , path string , baseline , target , workdir DiffFile ) ErrorCode
52
52
type CheckoutProgressCallback func (path string , completed , total uint ) ErrorCode
53
53
54
- type CheckoutOpts struct {
54
+ type CheckoutOptions struct {
55
55
Strategy CheckoutStrategy // Default will be a dry run
56
56
DisableFilters bool // Don't apply filters like CRLF conversion
57
57
DirMode os.FileMode // Default is 0755
@@ -65,32 +65,33 @@ type CheckoutOpts struct {
65
65
Baseline * Tree
66
66
}
67
67
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
+ }
76
77
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
78
79
}
79
80
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
81
82
}
82
83
if c .target_directory != nil {
83
84
opts .TargetDirectory = C .GoString (c .target_directory )
84
85
}
85
86
return opts
86
87
}
87
88
88
- func (opts * CheckoutOpts ) toC () * C.git_checkout_options {
89
+ func (opts * CheckoutOptions ) toC () * C.git_checkout_options {
89
90
if opts == nil {
90
91
return nil
91
92
}
92
93
c := C.git_checkout_options {}
93
- populateCheckoutOpts (& c , opts )
94
+ populateCheckoutOptions (& c , opts )
94
95
return & c
95
96
}
96
97
@@ -110,7 +111,7 @@ func checkoutNotifyCallback(why C.git_checkout_notify_t, cpath *C.char, cbaselin
110
111
if cworkdir != nil {
111
112
workdir = diffFileFromC ((* C .git_diff_file )(cworkdir ))
112
113
}
113
- opts := pointerHandles .Get (data ).(* CheckoutOpts )
114
+ opts := pointerHandles .Get (data ).(* CheckoutOptions )
114
115
if opts .NotifyCallback == nil {
115
116
return 0
116
117
}
@@ -119,17 +120,17 @@ func checkoutNotifyCallback(why C.git_checkout_notify_t, cpath *C.char, cbaselin
119
120
120
121
//export checkoutProgressCallback
121
122
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 )
123
124
if opts .ProgressCallback == nil {
124
125
return 0
125
126
}
126
127
return int (opts .ProgressCallback (C .GoString (path ), uint (completed_steps ), uint (total_steps )))
127
128
}
128
129
129
- // Convert the CheckoutOpts struct to the corresponding
130
+ // Convert the CheckoutOptions struct to the corresponding
130
131
// C-struct. Returns a pointer to ptr, or nil if opts is nil, in order
131
132
// 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 {
133
134
if opts == nil {
134
135
return nil
135
136
}
@@ -165,7 +166,7 @@ func populateCheckoutOpts(ptr *C.git_checkout_options, opts *CheckoutOpts) *C.gi
165
166
return ptr
166
167
}
167
168
168
- func freeCheckoutOpts (ptr * C.git_checkout_options ) {
169
+ func freeCheckoutOptions (ptr * C.git_checkout_options ) {
169
170
if ptr == nil {
170
171
return
171
172
}
@@ -180,12 +181,12 @@ func freeCheckoutOpts(ptr *C.git_checkout_options) {
180
181
181
182
// Updates files in the index and the working tree to match the content of
182
183
// 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 {
184
185
runtime .LockOSThread ()
185
186
defer runtime .UnlockOSThread ()
186
187
187
188
cOpts := opts .toC ()
188
- defer freeCheckoutOpts (cOpts )
189
+ defer freeCheckoutOptions (cOpts )
189
190
190
191
ret := C .git_checkout_head (v .ptr , cOpts )
191
192
runtime .KeepAlive (v )
@@ -199,7 +200,7 @@ func (v *Repository) CheckoutHead(opts *CheckoutOpts) error {
199
200
// Updates files in the working tree to match the content of the given
200
201
// index. If index is nil, the repository's index will be used. opts
201
202
// may be nil.
202
- func (v * Repository ) CheckoutIndex (index * Index , opts * CheckoutOpts ) error {
203
+ func (v * Repository ) CheckoutIndex (index * Index , opts * CheckoutOptions ) error {
203
204
var iptr * C.git_index = nil
204
205
if index != nil {
205
206
iptr = index .ptr
@@ -209,7 +210,7 @@ func (v *Repository) CheckoutIndex(index *Index, opts *CheckoutOpts) error {
209
210
defer runtime .UnlockOSThread ()
210
211
211
212
cOpts := opts .toC ()
212
- defer freeCheckoutOpts (cOpts )
213
+ defer freeCheckoutOptions (cOpts )
213
214
214
215
ret := C .git_checkout_index (v .ptr , iptr , cOpts )
215
216
runtime .KeepAlive (v )
@@ -220,12 +221,12 @@ func (v *Repository) CheckoutIndex(index *Index, opts *CheckoutOpts) error {
220
221
return nil
221
222
}
222
223
223
- func (v * Repository ) CheckoutTree (tree * Tree , opts * CheckoutOpts ) error {
224
+ func (v * Repository ) CheckoutTree (tree * Tree , opts * CheckoutOptions ) error {
224
225
runtime .LockOSThread ()
225
226
defer runtime .UnlockOSThread ()
226
227
227
228
cOpts := opts .toC ()
228
- defer freeCheckoutOpts (cOpts )
229
+ defer freeCheckoutOptions (cOpts )
229
230
230
231
ret := C .git_checkout_tree (v .ptr , tree .ptr , cOpts )
231
232
runtime .KeepAlive (v )
0 commit comments