diff options
| author | William Bain <[email protected]> | 2022-02-24 22:21:35 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-02-24 19:21:35 -0800 |
| commit | eae00773cce87d5282a8ac7c10b5c1961ee6f9cb (patch) | |
| tree | f79c23762f5706972e45e2dfe26ac40b46862972 /refspec.go | |
| parent | e7d1b2b69fbe476c75a00cf8dcda284337facb50 (diff) | |
Add refspec bindings (#898)
This add support for the parse, access, and transform functions for
refspec objects.
Diffstat (limited to 'refspec.go')
| -rw-r--r-- | refspec.go | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/refspec.go b/refspec.go new file mode 100644 index 0000000..450e5af --- /dev/null +++ b/refspec.go @@ -0,0 +1,149 @@ +package git + +/* +#include <git2.h> +*/ +import "C" +import ( + "runtime" + "unsafe" +) + +type Refspec struct { + doNotCompare + ptr *C.git_refspec +} + +// ParseRefspec parses a given refspec string +func ParseRefspec(input string, isFetch bool) (*Refspec, error) { + var ptr *C.git_refspec + + cinput := C.CString(input) + defer C.free(unsafe.Pointer(cinput)) + + runtime.LockOSThread() + defer runtime.UnlockOSThread() + + ret := C.git_refspec_parse(&ptr, cinput, cbool(isFetch)) + if ret < 0 { + return nil, MakeGitError(ret) + } + + spec := &Refspec{ptr: ptr} + runtime.SetFinalizer(spec, (*Refspec).Free) + return spec, nil +} + +// Free releases a refspec object which has been created by ParseRefspec +func (s *Refspec) Free() { + runtime.SetFinalizer(s, nil) + C.git_refspec_free(s.ptr) +} + +// Direction returns the refspec's direction +func (s *Refspec) Direction() ConnectDirection { + direction := C.git_refspec_direction(s.ptr) + return ConnectDirection(direction) +} + +// Src returns the refspec's source specifier +func (s *Refspec) Src() string { + var ret string + cstr := C.git_refspec_src(s.ptr) + + if cstr != nil { + ret = C.GoString(cstr) + } + + runtime.KeepAlive(s) + return ret +} + +// Dst returns the refspec's destination specifier +func (s *Refspec) Dst() string { + var ret string + cstr := C.git_refspec_dst(s.ptr) + + if cstr != nil { + ret = C.GoString(cstr) + } + + runtime.KeepAlive(s) + return ret +} + +// Force returns the refspec's force-update setting +func (s *Refspec) Force() bool { + force := C.git_refspec_force(s.ptr) + return force != 0 +} + +// String returns the refspec's string representation +func (s *Refspec) String() string { + var ret string + cstr := C.git_refspec_string(s.ptr) + + if cstr != nil { + ret = C.GoString(cstr) + } + + runtime.KeepAlive(s) + return ret +} + +// SrcMatches checks if a refspec's source descriptor matches a reference +func (s *Refspec) SrcMatches(refname string) bool { + cname := C.CString(refname) + defer C.free(unsafe.Pointer(cname)) + + matches := C.git_refspec_src_matches(s.ptr, cname) + return matches != 0 +} + +// SrcMatches checks if a refspec's destination descriptor matches a reference +func (s *Refspec) DstMatches(refname string) bool { + cname := C.CString(refname) + defer C.free(unsafe.Pointer(cname)) + + matches := C.git_refspec_dst_matches(s.ptr, cname) + return matches != 0 +} + +// Transform a reference to its target following the refspec's rules +func (s *Refspec) Transform(refname string) (string, error) { + buf := C.git_buf{} + + cname := C.CString(refname) + defer C.free(unsafe.Pointer(cname)) + + runtime.LockOSThread() + defer runtime.UnlockOSThread() + + ret := C.git_refspec_transform(&buf, s.ptr, cname) + if ret < 0 { + return "", MakeGitError(ret) + } + defer C.git_buf_dispose(&buf) + + return C.GoString(buf.ptr), nil +} + +// Rtransform converts a target reference to its source reference following the +// refspec's rules +func (s *Refspec) Rtransform(refname string) (string, error) { + buf := C.git_buf{} + + cname := C.CString(refname) + defer C.free(unsafe.Pointer(cname)) + + runtime.LockOSThread() + defer runtime.UnlockOSThread() + + ret := C.git_refspec_rtransform(&buf, s.ptr, cname) + if ret < 0 { + return "", MakeGitError(ret) + } + defer C.git_buf_dispose(&buf) + + return C.GoString(buf.ptr), nil +} |
