aboutsummaryrefslogtreecommitdiffstats
path: root/cshared/remote_cshared.go
diff options
context:
space:
mode:
authorVadim Markovtsev <vadim@sourced.tech>2016-06-10 18:49:50 +0200
committerVadim Markovtsev <vadim@sourced.tech>2016-06-15 10:29:46 +0200
commitbea415417e87fbb403095e8cd3fb8512a1a97af8 (patch)
treee34cbd4d5dc894be5d6f9cc9570366b1cbc5f5ed /cshared/remote_cshared.go
parent08f9e7015aad2ca768638b446fb8632f11601899 (diff)
downloadgo-git-bea415417e87fbb403095e8cd3fb8512a1a97af8.tar.gz
Add cshared files to allow building wrappers in other languages
Diffstat (limited to 'cshared/remote_cshared.go')
-rw-r--r--cshared/remote_cshared.go192
1 files changed, 192 insertions, 0 deletions
diff --git a/cshared/remote_cshared.go b/cshared/remote_cshared.go
new file mode 100644
index 0000000..04a26de
--- /dev/null
+++ b/cshared/remote_cshared.go
@@ -0,0 +1,192 @@
+// +build ignore
+package main
+
+import (
+ "C"
+
+ "gopkg.in/src-d/go-git.v3"
+ "gopkg.in/src-d/go-git.v3/clients/common"
+)
+
+//export c_Remote_get_Endpoint
+func c_Remote_get_Endpoint(r uint64) *C.char {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return nil
+ }
+ remote := obj.(*git.Remote)
+ return C.CString(string(remote.Endpoint))
+}
+
+//export c_Remote_set_Endpoint
+func c_Remote_set_Endpoint(r uint64, value string) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return
+ }
+ remote := obj.(*git.Remote)
+ remote.Endpoint = common.Endpoint(CopyString(value))
+}
+
+//export c_Remote_get_Auth
+func c_Remote_get_Auth(r uint64) uint64 {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return IH
+ }
+ remote := obj.(*git.Remote)
+ return uint64(RegisterObject(&remote.Auth))
+}
+
+//export c_Remote_set_Auth
+func c_Remote_set_Auth(r uint64, value uint64) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return
+ }
+ remote := obj.(*git.Remote)
+ obj, ok = GetObject(Handle(value))
+ if !ok {
+ return
+ }
+ remote.Auth = *obj.(*common.AuthMethod)
+}
+
+//export c_NewRemote
+func c_NewRemote(url string) (uint64, int, *C.char) {
+ remote, err := git.NewRemote(CopyString(url))
+ if err != nil {
+ return IH, ErrorCodeInternal, C.CString(err.Error())
+ }
+ return uint64(RegisterObject(remote)), ErrorCodeSuccess, nil
+}
+
+//export c_NewAuthenticatedRemote
+func c_NewAuthenticatedRemote(url string, auth uint64) (uint64, int, *C.char) {
+ obj, ok := GetObject(Handle(auth))
+ if !ok {
+ return IH, ErrorCodeNotFound, C.CString(MessageNotFound)
+ }
+ auth_method := *obj.(*common.AuthMethod)
+ remote, err := git.NewAuthenticatedRemote(CopyString(url), auth_method)
+ if err != nil {
+ return IH, ErrorCodeInternal, C.CString(err.Error())
+ }
+ return uint64(RegisterObject(remote)), ErrorCodeSuccess, nil
+}
+
+//export c_Remote_Connect
+func c_Remote_Connect(r uint64) (int, *C.char) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return ErrorCodeNotFound, nil
+ }
+ remote := obj.(*git.Remote)
+ err := remote.Connect()
+ if err != nil {
+ return ErrorCodeInternal, C.CString(err.Error())
+ }
+ return ErrorCodeSuccess, nil
+}
+
+//export c_Remote_Info
+func c_Remote_Info(r uint64) uint64 {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return IH
+ }
+ remote := obj.(*git.Remote)
+ return uint64(RegisterObject(remote.Info()))
+}
+
+//export c_Remote_Capabilities
+func c_Remote_Capabilities(r uint64) uint64 {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return IH
+ }
+ remote := obj.(*git.Remote)
+ return uint64(RegisterObject(remote.Capabilities()))
+}
+
+//export c_Remote_DefaultBranch
+func c_Remote_DefaultBranch(r uint64) *C.char {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return nil
+ }
+ remote := obj.(*git.Remote)
+ return C.CString(remote.DefaultBranch())
+}
+
+//export c_Remote_Head
+func c_Remote_Head(r uint64) (*C.char, int, *C.char) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return nil, ErrorCodeNotFound, C.CString(MessageNotFound)
+ }
+ remote := obj.(*git.Remote)
+ hash, err := remote.Head()
+ if err != nil {
+ return nil, ErrorCodeInternal, C.CString(err.Error())
+ }
+ return C.CString(string(hash[:])), ErrorCodeSuccess, nil
+}
+
+//export c_Remote_Fetch
+func c_Remote_Fetch(r uint64, req uint64) (uint64, int, *C.char) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return IH, ErrorCodeNotFound, C.CString(MessageNotFound)
+ }
+ remote := obj.(*git.Remote)
+ obj, ok = GetObject(Handle(req))
+ if !ok {
+ return IH, ErrorCodeNotFound, C.CString(MessageNotFound)
+ }
+ request := obj.(*common.GitUploadPackRequest)
+ reader, err := remote.Fetch(request)
+ if err != nil {
+ return IH, ErrorCodeInternal, C.CString(err.Error())
+ }
+ return uint64(RegisterObject(reader)), ErrorCodeSuccess, nil
+}
+
+//export c_Remote_FetchDefaultBranch
+func c_Remote_FetchDefaultBranch(r uint64) (uint64, int, *C.char) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return IH, ErrorCodeNotFound, C.CString(MessageNotFound)
+ }
+ remote := obj.(*git.Remote)
+ reader, err := remote.FetchDefaultBranch()
+ if err != nil {
+ return IH, ErrorCodeInternal, C.CString(err.Error())
+ }
+ return uint64(RegisterObject(reader)), ErrorCodeSuccess, nil
+}
+
+//export c_Remote_Ref
+func c_Remote_Ref(r uint64, refName string) (*C.char, int, *C.char) {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return nil, ErrorCodeNotFound, C.CString(MessageNotFound)
+ }
+ remote := obj.(*git.Remote)
+ hash, err := remote.Ref(CopyString(refName))
+ if err != nil {
+ return nil, ErrorCodeInternal, C.CString(err.Error())
+ }
+ return C.CString(string(hash[:])), ErrorCodeSuccess, nil
+}
+
+//export c_Remote_Refs
+func c_Remote_Refs(r uint64) uint64 {
+ obj, ok := GetObject(Handle(r))
+ if !ok {
+ return IH
+ }
+ remote := obj.(*git.Remote)
+ refs := remote.Refs()
+ return uint64(RegisterObject(refs))
+} \ No newline at end of file