package cephfs /* #cgo LDFLAGS: -lcephfs #cgo CPPFLAGS: -D_FILE_OFFSET_BITS=64 #include #include */ import "C" import "fmt" import "unsafe" // type CephError int func (e CephError) Error() string { return fmt.Sprintf("cephfs: ret=%d", e) } // type MountInfo struct { mount *C.struct_ceph_mount_info } func CreateMount() (*MountInfo, error) { mount := &MountInfo{} ret := C.ceph_create(&mount.mount, nil) if ret == 0 { return mount, nil } else { return nil, CephError(ret) } } func (mount *MountInfo) ReadDefaultConfigFile() error { ret := C.ceph_conf_read_file(mount.mount, nil) if ret == 0 { return nil } else { return CephError(ret) } } func (mount *MountInfo) Mount() error { ret := C.ceph_mount(mount.mount, nil) if ret == 0 { return nil } else { return CephError(ret) } } func (mount *MountInfo) SyncFs() error { ret := C.ceph_sync_fs(mount.mount) if ret == 0 { return nil } else { return CephError(ret) } } func (mount *MountInfo) CurrentDir() string { c_dir := C.ceph_getcwd(mount.mount) return C.GoString(c_dir) } func (mount *MountInfo) ChangeDir(path string) error { c_path := C.CString(path) defer C.free(unsafe.Pointer(c_path)) ret := C.ceph_chdir(mount.mount, c_path) if ret == 0 { return nil } else { return CephError(ret) } }