Documentation
¶
Overview ¶
Package gorods is a Golang binding for the iRODS C API (iRODS client library). GoRods uses cgo to call iRODS client functions.
Index ¶
- Constants
- func FileServer(opts FSOptions) http.Handler
- func GetShortTypeString(typ int) string
- func GetTypeString(typ int) string
- type ACL
- type ACLs
- type AccessObject
- type ByteArr
- type Client
- type Collection
- func (col *Collection) ACL() (ACLs, error)
- func (col *Collection) AddMeta(m Meta) (newMeta *Meta, err error)
- func (col *Collection) All() (IRodsObjs, error)
- func (col *Collection) Attribute(attr string) (Metas, error)
- func (col *Collection) Backup(targetResource interface{}, opts DataObjOptions) error
- func (col *Collection) Cd(path string) *Collection
- func (col *Collection) Chmod(userOrGroup string, accessLevel int, recursive bool) error
- func (col *Collection) Close() error
- func (col *Collection) Col() *Collection
- func (col *Collection) Collections() (response IRodsObjs, err error)
- func (col *Collection) Con() *Connection
- func (col *Collection) CopyTo(iRODSCollection interface{}) error
- func (col *Collection) CreateDataObj(opts DataObjOptions) (*DataObj, error)
- func (col *Collection) CreateSubCollection(name string) (*Collection, error)
- func (col *Collection) CreateTime() time.Time
- func (col *Collection) DataObjs() (response IRodsObjs, err error)
- func (col *Collection) Delete(recursive bool) error
- func (col *Collection) DeleteMeta(attr string) (*MetaCollection, error)
- func (col *Collection) Destroy() error
- func (col *Collection) DownloadTo(localPath string) error
- func (col *Collection) Each(ittr func(obj IRodsObj) error) error
- func (col *Collection) EachCollection(ittr func(obj *Collection)) error
- func (col *Collection) EachDataObj(ittr func(obj *DataObj)) error
- func (col *Collection) Exists(path string) bool
- func (col *Collection) Find(path string) IRodsObj
- func (col *Collection) FindCol(path string) *Collection
- func (col *Collection) FindObj(path string) *DataObj
- func (col *Collection) FindRecursive(path string) IRodsObj
- func (col *Collection) Get(path string) *DataObj
- func (col *Collection) GrantAccess(userOrGroup AccessObject, accessLevel int, recursive bool) error
- func (col *Collection) Inheritance() (bool, error)
- func (col *Collection) IsDir() bool
- func (col *Collection) IsRecursive() bool
- func (col *Collection) Length() int
- func (col *Collection) Meta() (*MetaCollection, error)
- func (col *Collection) ModTime() time.Time
- func (col *Collection) Mode() os.FileMode
- func (col *Collection) ModifyTime() time.Time
- func (col *Collection) MoveTo(iRODSCollection interface{}) error
- func (col *Collection) MoveToResource(targetResource interface{}) error
- func (col *Collection) Name() string
- func (col *Collection) Open() error
- func (col *Collection) Owner() *User
- func (col *Collection) OwnerName() string
- func (col *Collection) Path() string
- func (col *Collection) Put(localPath string, opts DataObjOptions) (*DataObj, error)
- func (col *Collection) ReadCollection() error
- func (col *Collection) ReadCollectionOpts(opts CollectionReadOpts) (CollectionReadInfo, error)
- func (col *Collection) ReadInfo() *CollectionReadInfo
- func (col *Collection) Refresh() error
- func (col *Collection) Rename(newFileName string) error
- func (col *Collection) Replicate(targetResource interface{}, opts DataObjOptions) error
- func (col *Collection) Rm(recursive bool, force bool) error
- func (col *Collection) RmTrash() error
- func (col *Collection) SetInheritance(inherits bool, recursive bool) error
- func (col *Collection) Size() int64
- func (col *Collection) Stat() (map[string]interface{}, error)
- func (obj *Collection) String() string
- func (col *Collection) Sys() interface{}
- func (col *Collection) Trash(recursive bool) error
- func (col *Collection) TrimRepls(opts TrimOptions) error
- func (col *Collection) Type() int
- func (col *Collection) Walk(callback func(IRodsObj) error) error
- type CollectionOptions
- type CollectionReadInfo
- type CollectionReadOpts
- type Connection
- func (con *Connection) Collection(opts CollectionOptions) (*Collection, error)
- func (con *Connection) CollectionOpts(opts CollectionOptions, readOpts CollectionReadOpts) (*Collection, error)
- func (con *Connection) CreateGroup(name string) (*Group, error)
- func (con *Connection) CreateUser(name string, typ int) (*User, error)
- func (con *Connection) DataObject(dataObjPath string) (dataobj *DataObj, err error)
- func (con *Connection) Disconnect() error
- func (con *Connection) EmptyTrash() error
- func (con *Connection) FetchGroups() (Groups, error)
- func (con *Connection) FetchResources() (Resources, error)
- func (con *Connection) FetchUsers() (Users, error)
- func (con *Connection) FetchZones() (Zones, error)
- func (con *Connection) GetCcon() *C.rcComm_t
- func (con *Connection) Groups() (Groups, error)
- func (con *Connection) IQuest(query string, upperCase bool) ([]map[string]string, error)
- func (con *Connection) IQuestSQL(specificQuery string, queryArgs ...string) ([][]string, error)
- func (con *Connection) InitCon() error
- func (con *Connection) LocalZone() (*Zone, error)
- func (con *Connection) PathType(p string) (int, error)
- func (con *Connection) QueryMeta(qString string) (response IRodsObjs, err error)
- func (con *Connection) RefreshGroups() error
- func (con *Connection) RefreshResources() error
- func (con *Connection) RefreshUsers() error
- func (con *Connection) RefreshZones() error
- func (con *Connection) RegPhysObj(opts RegOptions) error
- func (con *Connection) Resources() (Resources, error)
- func (con *Connection) ReturnCcon(ccon *C.rcComm_t)
- func (con *Connection) SetThreads(num int)
- func (con *Connection) SetTicket(t string) error
- func (obj *Connection) String() string
- func (con *Connection) Threads() int
- func (con *Connection) UserInfo() (map[string]string, error)
- func (con *Connection) Users() (Users, error)
- func (con *Connection) Zones() (Zones, error)
- type ConnectionOptions
- type DataObj
- func (obj *DataObj) ACL() (ACLs, error)
- func (obj *DataObj) AddMeta(m Meta) (nm *Meta, err error)
- func (obj *DataObj) Attribute(attrName string) (Metas, error)
- func (obj *DataObj) Backup(targetResource interface{}, opts DataObjOptions) error
- func (obj *DataObj) Checksum() string
- func (obj *DataObj) Chksum() (string, error)
- func (obj *DataObj) Chmod(userOrGroup string, accessLevel int, recursive bool) error
- func (obj *DataObj) Close() error
- func (obj *DataObj) Col() *Collection
- func (obj *DataObj) Con() *Connection
- func (obj *DataObj) CopyTo(iRODSCollection interface{}) error
- func (obj *DataObj) CopyToOpts(iRODSCollection interface{}, opts DataObjOptions) error
- func (obj *DataObj) CreateTime() time.Time
- func (obj *DataObj) DataId() string
- func (obj *DataObj) Delete(recursive bool) error
- func (obj *DataObj) DeleteMeta(attr string) (*MetaCollection, error)
- func (obj *DataObj) Destroy() error
- func (obj *DataObj) DownloadTo(localPath string) error
- func (obj *DataObj) FastRead(pos int64, length int, callback func([]byte) error) error
- func (obj *DataObj) FastReadFree(pos int64, length int) (*ByteArr, error)
- func (obj *DataObj) GrantAccess(userOrGroup AccessObject, accessLevel int, recursive bool) error
- func (obj *DataObj) Handle() int
- func (obj *DataObj) IsDir() bool
- func (obj *DataObj) LSeek(offset int64) error
- func (obj *DataObj) Meta() (*MetaCollection, error)
- func (obj *DataObj) ModTime() time.Time
- func (obj *DataObj) Mode() os.FileMode
- func (obj *DataObj) ModifyTime() time.Time
- func (obj *DataObj) MoveTo(iRODSCollection interface{}) error
- func (obj *DataObj) MoveToResource(targetResource interface{}) error
- func (obj *DataObj) Name() string
- func (obj *DataObj) Offset() int64
- func (obj *DataObj) Open() error
- func (obj *DataObj) OpenRW() error
- func (obj *DataObj) Owner() *User
- func (obj *DataObj) OwnerName() string
- func (obj *DataObj) Path() string
- func (obj *DataObj) PhyPath() string
- func (obj *DataObj) Read() ([]byte, error)
- func (obj *DataObj) ReadBytes(pos int64, length int) ([]byte, error)
- func (obj *DataObj) ReadChunk(size int64, callback func([]byte)) error
- func (obj *DataObj) ReadChunkFree(size int64, callback func(*ByteArr)) error
- func (obj *DataObj) Reader() *Reader
- func (obj *DataObj) Rename(newFileName string) error
- func (obj *DataObj) ReplNum() int
- func (obj *DataObj) ReplStatus() int
- func (obj *DataObj) Replicate(targetResource interface{}, opts DataObjOptions) error
- func (obj *DataObj) RescHier() string
- func (obj *DataObj) Resource() *Resource
- func (obj *DataObj) Rm(recursive bool, force bool) error
- func (obj *DataObj) RmTrash() error
- func (obj *DataObj) Size() int64
- func (obj *DataObj) Stat() (map[string]interface{}, error)
- func (obj *DataObj) String() string
- func (obj *DataObj) Sys() interface{}
- func (obj *DataObj) Trash(recursive bool) error
- func (obj *DataObj) TrimRepls(opts TrimOptions) error
- func (obj *DataObj) Type() int
- func (obj *DataObj) Unlink() error
- func (obj *DataObj) Verify(md5Checksum string) bool
- func (obj *DataObj) Write(data []byte) error
- func (obj *DataObj) WriteBytes(data []byte) error
- func (obj *DataObj) Writer() *Writer
- type DataObjOptions
- type FSOptions
- type GoRodsError
- type Group
- func (grp *Group) AddMeta(m Meta) (nm *Meta, err error)
- func (grp *Group) AddUser(usr interface{}) error
- func (grp *Group) Attribute(attrName string) (Metas, error)
- func (grp *Group) Comment() (string, error)
- func (grp *Group) Con() *Connection
- func (grp *Group) CreateTime() (time.Time, error)
- func (grp *Group) Delete() error
- func (grp *Group) DeleteMeta(attr string) (*MetaCollection, error)
- func (grp *Group) FetchInfo() (map[string]string, error)
- func (grp *Group) FetchUsers() (Users, error)
- func (grp *Group) Id() (int, error)
- func (grp *Group) Info() (string, error)
- func (grp *Group) Meta() (*MetaCollection, error)
- func (grp *Group) ModifyTime() (time.Time, error)
- func (grp *Group) Name() string
- func (grp *Group) Path() string
- func (grp *Group) RefreshInfo() error
- func (grp *Group) RefreshUsers() error
- func (grp *Group) Remove() bool
- func (grp *Group) RemoveUser(usr interface{}) error
- func (grp *Group) String() string
- func (grp *Group) Type() int
- func (grp *Group) Users() (Users, error)
- func (grp *Group) Zone() *Zone
- type Groups
- type HandlerFactory
- type HttpHandler
- func (handler *HttpHandler) AddACL(obj IRodsObj)
- func (handler *HttpHandler) AddMetaAVU(obj IRodsObj)
- func (handler *HttpHandler) CreateCollection(col *Collection)
- func (handler *HttpHandler) DeleteMetaAVU(obj IRodsObj)
- func (handler *HttpHandler) DeleteObj(obj IRodsObj)
- func (handler *HttpHandler) Serve404()
- func (handler *HttpHandler) ServeCollectionView(col *Collection)
- func (handler *HttpHandler) ServeDataObj(obj *DataObj)
- func (handler *HttpHandler) ServeHTTP(response http.ResponseWriter, request *http.Request)
- func (handler *HttpHandler) ServeJSONMeta(obj IRodsObj)
- func (handler *HttpHandler) Upload(col *Collection)
- type IRodsObj
- type IRodsObjs
- type JSONArr
- type JSONMap
- type Meta
- func (m *Meta) Delete() (*MetaCollection, error)
- func (m *Meta) Rename(attributeName string) (*Meta, error)
- func (m *Meta) Set(value string, units string) (*Meta, error)
- func (m *Meta) SetAll(attributeName string, value string, units string) (newMeta *Meta, e error)
- func (m *Meta) SetUnits(units string) (*Meta, error)
- func (m *Meta) SetValue(value string) (*Meta, error)
- func (m *Meta) String() string
- type MetaCollection
- func (mc *MetaCollection) Add(m Meta) (*Meta, error)
- func (mc *MetaCollection) All() (Metas, error)
- func (mc *MetaCollection) Delete(attr string) (err error)
- func (mc *MetaCollection) Each(iterator func(*Meta)) error
- func (mc *MetaCollection) First(attr string) (*Meta, error)
- func (mc *MetaCollection) Get(attr string) (Metas, error)
- func (mc *MetaCollection) ReadMeta() error
- func (mc *MetaCollection) Refresh() error
- func (mc *MetaCollection) String() string
- type MetaObj
- type Metas
- type RangeOutput
- type RangeSegmentOutput
- type Reader
- type RegOptions
- type Resource
- func (resc *Resource) Children() (string, error)
- func (resc *Resource) Class() (int, error)
- func (resc *Resource) Comment() (string, error)
- func (resc *Resource) Context() (string, error)
- func (resc *Resource) CreateTime() (time.Time, error)
- func (resc *Resource) FetchInfo() (map[string]string, error)
- func (resc *Resource) FreeSpace() (int, error)
- func (resc *Resource) FreeSpaceTime() (time.Time, error)
- func (resc *Resource) Id() (int, error)
- func (resc *Resource) Info() (string, error)
- func (resc *Resource) ModifyTime() (time.Time, error)
- func (resc *Resource) Name() string
- func (resc *Resource) Net() (string, error)
- func (resc *Resource) ObjCount() (int, error)
- func (resc *Resource) ParentStr() (string, error)
- func (resc *Resource) PhysPath() (string, error)
- func (resc *Resource) RefreshInfo() error
- func (resc *Resource) Remove() bool
- func (resc *Resource) Status() (string, error)
- func (resc *Resource) StorageType() (string, error)
- func (resc *Resource) String() string
- func (resc *Resource) Type() (int, error)
- func (resc *Resource) Zone() *Zone
- type Resources
- type TrimOptions
- type User
- func (usr *User) AddMeta(m Meta) (nm *Meta, err error)
- func (usr *User) AddToGroup(grp interface{}) error
- func (usr *User) Attribute(attrName string) (Metas, error)
- func (usr *User) ChangePassword(newPass string) error
- func (usr *User) Comment() (string, error)
- func (usr *User) Con() *Connection
- func (usr *User) CreateTime() (time.Time, error)
- func (usr *User) Delete() error
- func (usr *User) DeleteMeta(attr string) (*MetaCollection, error)
- func (usr *User) FetchGroups() (Groups, error)
- func (usr *User) FetchInfo() (map[string]string, error)
- func (usr *User) Groups() (Groups, error)
- func (usr *User) Id() (int, error)
- func (usr *User) Info() (string, error)
- func (usr *User) Meta() (*MetaCollection, error)
- func (usr *User) ModifyTime() (time.Time, error)
- func (usr *User) Name() string
- func (usr *User) Path() string
- func (usr *User) RefreshGroups() error
- func (usr *User) RefreshInfo() error
- func (usr *User) Remove() bool
- func (usr *User) RemoveFromGroup(grp interface{}) error
- func (usr *User) String() string
- func (usr *User) Type() int
- func (usr *User) Zone() *Zone
- type Users
- type Writer
- type Zone
- func (zne *Zone) Comment() (string, error)
- func (zne *Zone) ConString() (string, error)
- func (zne *Zone) CreateTime() (time.Time, error)
- func (zne *Zone) FetchInfo() (map[string]string, error)
- func (zne *Zone) Id() (int, error)
- func (zne *Zone) ModifyTime() (time.Time, error)
- func (zne *Zone) Name() string
- func (zne *Zone) RefreshInfo() error
- func (zne *Zone) Remove() bool
- func (zne *Zone) String() string
- func (zne *Zone) Type() (int, error)
- type Zones
- Bugs
Constants ¶
const ( EnvironmentDefined = iota UserDefined )
EnvironmentDefined and UserDefined constants are used when calling gorods.New(ConnectionOptions{ Type: ... }) When EnvironmentDefined is specified, the options stored in ~/.irods/irods_environment.json will be used. When UserDefined is specified you must also pass Host, Port, Username, and Zone. Password should be set regardless.
const ( DataObjType = iota CollectionType ResourceType ResourceGroupType ZoneType UserType AdminType GroupAdminType GroupType UnknownType Cache Archive Null Read Write Own Inherit NoInherit Local Remote PAMAuth PasswordAuth )
Used when calling Type() on different gorods objects
const ( Info = iota Warn Fatal )
Log level constants
Variables ¶
This section is empty.
Functions ¶
func FileServer ¶ added in v0.1.5
func GetShortTypeString ¶ added in v1.0.5
func GetTypeString ¶ added in v1.0.1
Types ¶
type ACL ¶ added in v0.1.5
type ACL struct { AccessObject AccessObject AccessLevel int Type int }
ACL is used to describe the access level that a particular AccessObject (User/Group) has on a DataObj or Collection
func (*ACL) AccessLevelString ¶ added in v1.0.3
AccessLevelString gets the string represenation of the AccessLevel
func (*ACL) Group ¶ added in v0.1.5
Group is a shortcut to cast the AccessObject as it's underlying data structure type (*Group)
type AccessObject ¶ added in v0.1.5
type AccessObject interface { Name() string Zone() *Zone Comment() (string, error) CreateTime() (time.Time, error) ModifyTime() (time.Time, error) Id() (int, error) Type() int Con() *Connection }
AccessObject is an interface for Users and Groups, used within ACL slices to denote the access level of a DataObj or Collection
type Client ¶ added in v0.1.5
type Client struct { Options *ConnectionOptions ConnectErr error }
Client structs are used to store connection options, and instatiate connections with those options
func New ¶
func New(opts ConnectionOptions) (*Client, error)
New creates a test connection to an iRODS iCAT server, and returns a *Client struct if successful. EnvironmentDefined and UserDefined constants are used in ConnectionOptions{ Type: ... }). When EnvironmentDefined is specified, the options stored in ~/.irods/irods_environment.json will be used. When UserDefined is specified you must also pass Host, Port, Username, and Zone. Password should be set unless using an anonymous user account with tickets.
func (*Client) DisplayMemInfo ¶ added in v0.1.5
func (cli *Client) DisplayMemInfo()
func (*Client) OpenCollection ¶ added in v0.1.5
func (cli *Client) OpenCollection(opts CollectionOptions, handler func(*Collection, *Connection)) error
OpenCollection will create a new connection using the previously configured iRODS client. It will execute the handler, and close *Collection and *Collection automatically when your handler finishes execution. Operations on a single connection are queued when shared between goroutines (iRODS C API doesn't support concurrent operations on a single connection), so be sure to open up new connections for long-running operations to prevent blocking between goroutines.
func (*Client) OpenConnection ¶ added in v0.1.5
func (cli *Client) OpenConnection(handler func(*Connection)) error
OpenConnection will create a new connection using the previously configured iRODS client. It will execute the handler, and close *Collection automatically when your handler finishes execution. Operations on a single connection are queued when shared between goroutines (iRODS C API doesn't support concurrent operations on a single connection), so be sure to open up new connections for long-running operations to prevent blocking between goroutines.
func (*Client) OpenDataObject ¶ added in v0.1.5
func (cli *Client) OpenDataObject(path string, handler func(*DataObj, *Connection)) error
OpenDataObject will create a new connection using the previously configured iRODS client. It will execute the handler, and close *DataObj and *Collection automatically when your handler finishes execution. Operations on a single connection are queued when shared between goroutines (iRODS C API doesn't support concurrent operations on a single connection), so be sure to open up new connections for long-running operations to prevent blocking between goroutines.
type Collection ¶
type Collection struct {
// contains filtered or unexported fields
}
Collection structs contain information about single collections in an iRODS zone.
func CreateCollection ¶ added in v0.1.3
func CreateCollection(name string, coll *Collection) (*Collection, error)
CreateCollection creates a collection in the specified collection using provided options. Returns the newly created collection object.
func (*Collection) ACL ¶ added in v0.1.5
func (col *Collection) ACL() (ACLs, error)
ACL returns a slice of ACL structs. Example of slice in string format: [rods#tempZone:own developers#tempZone:modify object designers#tempZone:read object]
func (*Collection) AddMeta ¶ added in v0.1.1
func (col *Collection) AddMeta(m Meta) (newMeta *Meta, err error)
AddMeta adds a single Meta triple struct
func (*Collection) All ¶
func (col *Collection) All() (IRodsObjs, error)
All returns generic interface slice containing both data objects and collections combined
func (*Collection) Attribute ¶
func (col *Collection) Attribute(attr string) (Metas, error)
Attribute gets slice of Meta AVU triples, matching by Attribute name for Collection
func (*Collection) Backup ¶ added in v0.1.5
func (col *Collection) Backup(targetResource interface{}, opts DataObjOptions) error
Backup is similar to Replicate. In backup mode, if a good copy already exists in this resource group or resource, don't make another one.
func (*Collection) Cd ¶
func (col *Collection) Cd(path string) *Collection
Cd is a shortcut for calling collection.GetCollections().Find(path). It effectively returns (or changes to) the sub collection you specify collection-relatively or absolutely.
func (*Collection) Chmod ¶ added in v0.1.5
func (col *Collection) Chmod(userOrGroup string, accessLevel int, recursive bool) error
Chmod changes the permissions/ACL of the collection accessLevel: Null | Read | Write | Own
func (*Collection) Close ¶
func (col *Collection) Close() error
Close closes the Collection connection and resets the handle
func (*Collection) Col ¶
func (col *Collection) Col() *Collection
Col returns the *Collection of the collection
func (*Collection) Collections ¶
func (col *Collection) Collections() (response IRodsObjs, err error)
Collections returns only the IRodsObjs that represent collections
func (*Collection) Con ¶
func (col *Collection) Con() *Connection
Connection returns the *Connection used to get collection
func (*Collection) CopyTo ¶ added in v0.1.5
func (col *Collection) CopyTo(iRODSCollection interface{}) error
CopyTo copies all collections and data objects contained withing the collection to the specified collection. Accepts string or *Collection types.
func (*Collection) CreateDataObj ¶
func (col *Collection) CreateDataObj(opts DataObjOptions) (*DataObj, error)
CreateDataObj creates a data object within the collection using the options specified
func (*Collection) CreateSubCollection ¶ added in v0.1.3
func (col *Collection) CreateSubCollection(name string) (*Collection, error)
CreateSubCollection creates a collection within the collection using the options specified
func (*Collection) CreateTime ¶ added in v0.1.4
func (col *Collection) CreateTime() time.Time
CreateTime returns the create time of the collection
func (*Collection) DataObjs ¶
func (col *Collection) DataObjs() (response IRodsObjs, err error)
DataObjs returns only the data objects contained within the collection
func (*Collection) Delete ¶ added in v0.1.4
func (col *Collection) Delete(recursive bool) error
Delete is equivalent to irm -f {-r}
func (*Collection) DeleteMeta ¶ added in v0.1.1
func (col *Collection) DeleteMeta(attr string) (*MetaCollection, error)
DeleteMeta deletes a single Meta triple struct, identified by Attribute field
func (*Collection) Destroy ¶ added in v0.1.4
func (col *Collection) Destroy() error
Destroy is equivalent to irm -rf
func (*Collection) DownloadTo ¶ added in v0.1.5
func (col *Collection) DownloadTo(localPath string) error
DownloadTo recursively downloads all data objects and collections contained within the collection, into the path specified
func (*Collection) Each ¶ added in v1.0.3
func (col *Collection) Each(ittr func(obj IRodsObj) error) error
EachDataObj is an iterator for data objects
func (*Collection) EachCollection ¶ added in v0.1.5
func (col *Collection) EachCollection(ittr func(obj *Collection)) error
EachCollection is an iterator for collections
func (*Collection) EachDataObj ¶ added in v0.1.5
func (col *Collection) EachDataObj(ittr func(obj *DataObj)) error
EachDataObj is an iterator for data objects
func (*Collection) Exists ¶
func (col *Collection) Exists(path string) bool
Exists returns true of false depending on whether the DataObj or Collection is found
func (*Collection) Find ¶
func (col *Collection) Find(path string) IRodsObj
Find returns either a DataObject or Collection using the collection-relative or absolute path specified.
func (*Collection) FindCol ¶ added in v0.1.1
func (col *Collection) FindCol(path string) *Collection
FindCol returns a sub collection in the *Collection, matching based on the absolute path or name
func (*Collection) FindObj ¶ added in v0.1.1
func (col *Collection) FindObj(path string) *DataObj
FindObj returns a data object contained in the *Collection, matching based on the absolute path or name. Equivalent to *Collection.Get.
func (*Collection) FindRecursive ¶ added in v0.1.1
func (col *Collection) FindRecursive(path string) IRodsObj
Find returns either a DataObject or Collection using the collection-relative or absolute path specified.
func (*Collection) Get ¶
func (col *Collection) Get(path string) *DataObj
Get is a shortcut for calling collection.DataObjs().Find(path). It effectively returns the DataObj you specify collection-relatively or absolutely.
func (*Collection) GrantAccess ¶ added in v0.1.5
func (col *Collection) GrantAccess(userOrGroup AccessObject, accessLevel int, recursive bool) error
GrantAccess will add permissions (ACL) to the collection
func (*Collection) Inheritance ¶ added in v0.1.5
func (col *Collection) Inheritance() (bool, error)
Inheritance returns true or false, depending on the collection's inheritance setting
func (*Collection) IsDir ¶ added in v1.0.1
func (col *Collection) IsDir() bool
func (*Collection) IsRecursive ¶ added in v0.1.1
func (col *Collection) IsRecursive() bool
IsRecursive returns true or false
func (*Collection) Length ¶ added in v1.0.2
func (col *Collection) Length() int
Length returns the total number of data objects and collections contained within the collection, recursively
func (*Collection) Meta ¶
func (col *Collection) Meta() (*MetaCollection, error)
Meta returns collection of all metadata AVU triples for Collection
func (*Collection) ModTime ¶ added in v1.0.1
func (col *Collection) ModTime() time.Time
func (*Collection) Mode ¶ added in v1.0.1
func (col *Collection) Mode() os.FileMode
func (*Collection) ModifyTime ¶ added in v0.1.4
func (col *Collection) ModifyTime() time.Time
ModifyTime returns the modify time of the collection
func (*Collection) MoveTo ¶ added in v0.1.5
func (col *Collection) MoveTo(iRODSCollection interface{}) error
MoveTo moves the collection to the specified collection. Supports Collection struct or string as input. Also refreshes the source and destination collections automatically to maintain correct state. Returns error.
func (*Collection) MoveToResource ¶ added in v0.1.5
func (col *Collection) MoveToResource(targetResource interface{}) error
MoveToResource recursively moves all data objects contained within the collection to the specified resource. Accepts string or *Resource type.
func (*Collection) Name ¶
func (col *Collection) Name() string
Name returns the Name of the collection
func (*Collection) Open ¶
func (col *Collection) Open() error
Open connects to iRODS and sets the handle for Collection. Usually called by Collection.init()
func (*Collection) Owner ¶ added in v0.1.5
func (col *Collection) Owner() *User
Owner returns a User struct, representing the user who owns the collection
func (*Collection) OwnerName ¶ added in v0.1.4
func (col *Collection) OwnerName() string
OwnerName returns the owner name of the collection
func (*Collection) Path ¶
func (col *Collection) Path() string
Path returns the Path of the collection
func (*Collection) Put ¶
func (col *Collection) Put(localPath string, opts DataObjOptions) (*DataObj, error)
Put reads the entire file from localPath and adds it the collection, using the options specified.
func (*Collection) ReadCollection ¶
func (col *Collection) ReadCollection() error
ReadCollection reads data (overwrites) into col.dataObjects field.
func (*Collection) ReadCollectionOpts ¶ added in v1.0.2
func (col *Collection) ReadCollectionOpts(opts CollectionReadOpts) (CollectionReadInfo, error)
func (*Collection) ReadInfo ¶ added in v1.0.2
func (col *Collection) ReadInfo() *CollectionReadInfo
func (*Collection) Refresh ¶
func (col *Collection) Refresh() error
Refresh is an alias of ReadCollection()
func (*Collection) Rename ¶ added in v0.1.5
func (col *Collection) Rename(newFileName string) error
Rename is equivalent to the Linux mv command except that the collection must stay within it's current collection (directory), returns error.
func (*Collection) Replicate ¶ added in v0.1.5
func (col *Collection) Replicate(targetResource interface{}, opts DataObjOptions) error
Replicate recursively copies all data objects contained within the collection to the specified resource. Accepts string or *Resource type for targetResource parameter.
func (*Collection) Rm ¶ added in v0.1.4
func (col *Collection) Rm(recursive bool, force bool) error
Rm is equivalent to irm {-r} {-f}
func (*Collection) RmTrash ¶ added in v1.0.5
func (col *Collection) RmTrash() error
RmTrash is used (sometimes internally) by GoRODS to delete items in the trash permanently. The collection's path should be in the trash collection.
func (*Collection) SetInheritance ¶ added in v0.1.5
func (col *Collection) SetInheritance(inherits bool, recursive bool) error
SetInheritance sets the inheritance option of the collection. If true, sub-collections and data objects inherit the permissions (ACL) of this collection.
func (*Collection) Size ¶ added in v0.1.5
func (col *Collection) Size() int64
Size returns the total size in bytes of all contained data objects and collections, recursively
func (*Collection) Stat ¶ added in v0.1.5
func (col *Collection) Stat() (map[string]interface{}, error)
Stat returns a map (key/value pairs) of the system meta information. The following keys can be used with the map:
"objSize"
"dataMode"
"dataId"
"chksum"
"ownerName"
"ownerZone"
"createTime"
"modifyTime"
func (*Collection) String ¶
func (obj *Collection) String() string
String shows the contents of the collection.
d = DataObj
C = Collection
Sample output:
Collection: /tempZone/home/admin/gorods d: build.sh C: bin C: pkg C: src
func (*Collection) Sys ¶ added in v1.0.1
func (col *Collection) Sys() interface{}
func (*Collection) Trash ¶ added in v0.1.4
func (col *Collection) Trash(recursive bool) error
Trash is equivalent to irm {-r}
func (*Collection) TrimRepls ¶ added in v0.1.5
func (col *Collection) TrimRepls(opts TrimOptions) error
TrimRepls recursively trims data object replicas (removes from resource servers), using the rules defined in opts.
type CollectionOptions ¶ added in v0.1.5
CollectionOptions stores options relating to collection initialization. Path is the full path of the collection you're requesting. Recursive if set to true will load sub collections into memory, until the end of the collection "tree" is found.
type CollectionReadInfo ¶ added in v1.0.2
type CollectionReadOpts ¶ added in v1.0.2
type Connection ¶
type Connection struct { PAMToken string Connected bool Init bool Options *ConnectionOptions OpenedObjs IRodsObjs // contains filtered or unexported fields }
Connection structs hold information about the iRODS iCAT server, and the user who's connecting. It also contains a cache of opened Collections and DataObjs
func NewConnection ¶ added in v0.1.5
func NewConnection(opts *ConnectionOptions) (*Connection, error)
NewConnection creates a connection to an iRODS iCAT server. EnvironmentDefined and UserDefined constants are used in ConnectionOptions{ Type: ... }). When EnvironmentDefined is specified, the options stored in ~/.irods/irods_environment.json will be used. When UserDefined is specified you must also pass Host, Port, Username, and Zone. Password should be set unless using an anonymous user account with tickets.
func (*Connection) Collection ¶
func (con *Connection) Collection(opts CollectionOptions) (*Collection, error)
Collection initializes and returns an existing iRODS collection using the specified path
func (*Connection) CollectionOpts ¶ added in v1.0.2
func (con *Connection) CollectionOpts(opts CollectionOptions, readOpts CollectionReadOpts) (*Collection, error)
CollectionOpts initializes and returns an existing iRODS collection using the specified path
func (*Connection) CreateGroup ¶ added in v0.1.5
func (con *Connection) CreateGroup(name string) (*Group, error)
CreateGroup creates a group within the local zone. You must have the proper groupadmin or rodsadmin privileges to use this function.
func (*Connection) CreateUser ¶ added in v0.1.5
func (con *Connection) CreateUser(name string, typ int) (*User, error)
CreateUser creates an iRODS user within the local zone. You must have the proper rodsadmin privileges to use this function.
func (*Connection) DataObject ¶ added in v0.1.1
func (con *Connection) DataObject(dataObjPath string) (dataobj *DataObj, err error)
DataObject directly returns a specific DataObj without the need to traverse collections. Must pass full path of data object.
func (*Connection) Disconnect ¶
func (con *Connection) Disconnect() error
Disconnect closes connection to iRODS iCAT server, returns error on failure or nil on success
func (*Connection) EmptyTrash ¶ added in v1.0.5
func (con *Connection) EmptyTrash() error
EmptyTrash
func (*Connection) FetchGroups ¶ added in v0.1.5
func (con *Connection) FetchGroups() (Groups, error)
FetchGroups returns a slice of *Group, fresh from the iCAT server.
func (*Connection) FetchResources ¶ added in v0.1.5
func (con *Connection) FetchResources() (Resources, error)
FetchResources returns a slice of *Resource, fresh from the iCAT server.
func (*Connection) FetchUsers ¶ added in v0.1.5
func (con *Connection) FetchUsers() (Users, error)
FetchUsers returns a slice of *User, fresh from the iCAT server.
func (*Connection) FetchZones ¶ added in v0.1.5
func (con *Connection) FetchZones() (Zones, error)
FetchZones returns a slice of *Zone, fresh from the iCAT server.
func (*Connection) GetCcon ¶ added in v0.1.4
func (con *Connection) GetCcon() *C.rcComm_t
GetCcon checks out the connection handle for use in all iRODS operations. Basically a mutex for connections. Other goroutines calling this function will block until the handle is returned with con.ReturnCcon, by the goroutine using it. This prevents errors in the net code since concurrent API calls aren't supported over a single iRODS connection.
func (*Connection) Groups ¶ added in v0.1.5
func (con *Connection) Groups() (Groups, error)
Groups returns a slice of all *Group in the iCAT. You must have the proper groupadmin or rodsadmin privileges to use this function.
func (*Connection) IQuest ¶ added in v0.1.5
IQuest accepts a SQL query fragment, returns results in slice of maps If upperCase is true, all records will be matched using their uppercase representation.
func (*Connection) IQuestSQL ¶ added in v1.0.5
func (con *Connection) IQuestSQL(specificQuery string, queryArgs ...string) ([][]string, error)
IQuestSQL executes a specific query on the iCAT server and returns a multi-dimensional string slice of results. Equivalent to: "iquest --sql {specificQuery} {queryArgs}..."
func (*Connection) InitCon ¶ added in v1.0.1
func (con *Connection) InitCon() error
func (*Connection) LocalZone ¶ added in v0.1.5
func (con *Connection) LocalZone() (*Zone, error)
LocalZone returns the *Zone. First it checks the ConnectionOptions.Zone and uses that, otherwise it pulls it fresh from the iCAT server.
func (*Connection) PathType ¶ added in v0.1.5
func (con *Connection) PathType(p string) (int, error)
PathType returns DataObjType, CollectionType, or -1 (error) for the iRODS path specified
func (*Connection) QueryMeta ¶ added in v0.1.1
func (con *Connection) QueryMeta(qString string) (response IRodsObjs, err error)
QueryMeta queries both data objects and collections for matching metadata. Returns IRodsObjs.
func (*Connection) RefreshGroups ¶ added in v0.1.5
func (con *Connection) RefreshGroups() error
RefreshGroups updates the slice returned by con.Groups() with fresh data from the iCAT server.
func (*Connection) RefreshResources ¶ added in v0.1.5
func (con *Connection) RefreshResources() error
RefreshResources updates the slice returned by con.Resources() with fresh data from the iCAT server.
func (*Connection) RefreshUsers ¶ added in v0.1.5
func (con *Connection) RefreshUsers() error
RefreshUsers updates the slice returned by con.Users() with fresh data from the iCAT server.
func (*Connection) RefreshZones ¶ added in v0.1.5
func (con *Connection) RefreshZones() error
RefreshZones updates the slice returned by con.Zones() with fresh data from the iCAT server.
func (*Connection) RegPhysObj ¶ added in v1.0.5
func (con *Connection) RegPhysObj(opts RegOptions) error
RegPhysObj is equivalent to the ireg icommand
func (*Connection) Resources ¶ added in v0.1.5
func (con *Connection) Resources() (Resources, error)
Resources returns a slice of all *Resource in the iCAT. You must have the proper rodsadmin privileges to use this function.
func (*Connection) ReturnCcon ¶ added in v0.1.4
func (con *Connection) ReturnCcon(ccon *C.rcComm_t)
ReturnCcon returns the connection handle for use in other threads. Unlocks the mutex.
func (*Connection) SetThreads ¶ added in v0.1.5
func (con *Connection) SetThreads(num int)
SetThreads changes the ccon.transStat.numThreads value. Not sure if it does anything.
func (*Connection) SetTicket ¶ added in v0.1.2
func (con *Connection) SetTicket(t string) error
SetTicket is equivalent to using the -t flag with icommands
func (*Connection) String ¶
func (obj *Connection) String() string
String provides connection status and options provided during initialization (gorods.New)
func (*Connection) Threads ¶ added in v0.1.5
func (con *Connection) Threads() int
Threads returns ccon.transStat.numThreads
func (*Connection) UserInfo ¶ added in v1.0.5
func (con *Connection) UserInfo() (map[string]string, error)
func (*Connection) Users ¶ added in v0.1.5
func (con *Connection) Users() (Users, error)
Users returns a slice of all *User in the iCAT. You must have the proper rodsadmin privileges to use this function.
func (*Connection) Zones ¶ added in v0.1.5
func (con *Connection) Zones() (Zones, error)
Zones returns a slice of all *Zone in the iCAT. You must have the proper rodsadmin privileges to use this function.
type ConnectionOptions ¶
type ConnectionOptions struct { Type int AuthType int PAMPassFile string PAMToken string PAMPassExpire int Host string Port int Zone string Username string Password string Ticket string FastInit bool Threads int }
ConnectionOptions are used when creating iRODS iCAT server connections see gorods.New() docs for more info.
func (*ConnectionOptions) String ¶ added in v1.0.5
func (conOpts *ConnectionOptions) String() string
type DataObj ¶
type DataObj struct {
// contains filtered or unexported fields
}
DataObj structs contain information about single data objects in an iRODS zone.
func CreateDataObj ¶
func CreateDataObj(opts DataObjOptions, coll *Collection) (*DataObj, error)
CreateDataObj creates and adds a data object to the specified collection using provided options. Returns the newly created data object.
func (*DataObj) ACL ¶ added in v0.1.5
ACL retuns a slice of ACL structs. Example of slice in string format: [rods#tempZone:own developers#tempZone:modify object designers#tempZone:read object]
func (*DataObj) Attribute ¶
Attribute gets slice of Meta AVU triples, matching by Attribute name for DataObj
func (*DataObj) Backup ¶ added in v0.1.5
func (obj *DataObj) Backup(targetResource interface{}, opts DataObjOptions) error
Backup is similar to Replicate. In backup mode, if a good copy already exists in this resource group or resource, don't make another one.
func (*DataObj) Chmod ¶ added in v0.1.5
Chmod changes the permissions/ACL of a data object. accessLevel: Null | Read | Write | Own
func (*DataObj) Col ¶
func (obj *DataObj) Col() *Collection
GetName returns the *Collection of the data object
func (*DataObj) Con ¶
func (obj *DataObj) Con() *Connection
Connection returns the *Connection used to get data object
func (*DataObj) CopyTo ¶
CopyTo copies the data object to the specified collection. Supports Collection struct or string as input. Also refreshes the destination collection automatically to maintain correct state. Returns error.
func (*DataObj) CopyToOpts ¶ added in v0.1.5
func (obj *DataObj) CopyToOpts(iRODSCollection interface{}, opts DataObjOptions) error
CopyTo copies the data object to the specified collection. Supports Collection struct or string as input. Also refreshes the destination collection automatically to maintain correct state. Returns error.
func (*DataObj) CreateTime ¶ added in v0.1.4
CreateTime returns the create time of the data object
func (*DataObj) DeleteMeta ¶ added in v0.1.1
func (obj *DataObj) DeleteMeta(attr string) (*MetaCollection, error)
DeleteMeta deletes a single Meta triple struct, identified by Attribute field
func (*DataObj) DownloadTo ¶
DownloadTo downloads and writes the entire data object to the provided path. Don't use this with large files unless you have RAM to spare, use ReadChunk() instead. Returns error.
func (*DataObj) FastRead ¶ added in v0.1.5
FastRead is similar to ReadBytes, except it doesn't copy bytes into a new byte slice, making the process more efficient. It uses the existing C byte array and casts it as a go []byte. Once your call back is run, the allocated memory is freed automatically. This function will block until bytes are received and your callback has been run.
func (*DataObj) FastReadFree ¶ added in v0.1.5
FastReadFree is similar to ReadBytes, except it doesn't copy bytes into a new byte slice, making the process more efficient. It uses the existing C byte array and casts it as a go []byte. You must explicitally call ByteArr.Free on the returned struct or there will be a memory leak.
func (*DataObj) GrantAccess ¶ added in v0.1.5
func (obj *DataObj) GrantAccess(userOrGroup AccessObject, accessLevel int, recursive bool) error
GrantAccess will add permissions (ACL) to the data object.
func (*DataObj) Meta ¶
func (obj *DataObj) Meta() (*MetaCollection, error)
Meta returns collection of Meta AVU triple structs of the data object
func (*DataObj) ModifyTime ¶ added in v0.1.4
ModifyTime returns the modify time of the data object
func (*DataObj) MoveTo ¶
MoveTo moves the data object to the specified collection. Supports Collection struct or string as input. Also refreshes the source and destination collections automatically to maintain correct state. Returns error.
func (*DataObj) MoveToResource ¶
MoveToResource moves data object to the specified resource. Accepts string or *Resource type.
func (*DataObj) Offset ¶
Offset returns the offset bytes for the pointer of the data object. LSeek will change this value.
func (*DataObj) OpenRW ¶ added in v0.1.4
OpenRW opens a connection to iRODS and sets the data object handle for read/write access
func (*DataObj) PhyPath ¶ added in v0.1.3
PhyPath is the actual location where the data object is stored on the iRODS server.
func (*DataObj) Read ¶
Read reads the entire data object into memory and returns a []byte slice. Don't use this for large files.
func (*DataObj) ReadBytes ¶
ReadBytes reads bytes from a data object at the specified position and length, returns []byte slice and error.
func (*DataObj) ReadChunk ¶
ReadChunk reads the entire data object in chunks (size of chunk specified by size parameter), passing the data into a callback function for each chunk. Use this to read/write large files.
func (*DataObj) ReadChunkFree ¶ added in v0.1.5
ReadChunkFree is similar to ReadChunk, except it doesn't copy bytes into a new byte slice, making the process more efficient. It uses the existing C byte array and casts it as a go []byte. You must explicitally call ByteArr.Free on the returned struct or there will be a memory leak.
func (*DataObj) Reader ¶ added in v1.0.5
Reader returns *gorods.Reader whuch implements io.Reader interface
func (*DataObj) Rename ¶
Rename is equivalent to the Linux mv command except that the data object must stay within the current collection (directory), returns error.
func (*DataObj) ReplStatus ¶ added in v0.1.5
func (*DataObj) Replicate ¶
func (obj *DataObj) Replicate(targetResource interface{}, opts DataObjOptions) error
Replicate copies the data object to the specified resource. Accepts string or *Resource type for targetResource parameter.
func (*DataObj) Resource ¶ added in v0.1.3
Resource returns the *Resource where the data object is stored
func (*DataObj) RmTrash ¶ added in v1.0.5
RmTrash is used (sometimes internally) by GoRODS to delete items in the trash permanently. The data object's path should be in the trash collection.
func (*DataObj) Stat ¶
Stat returns a map (key/value pairs) of the system meta information. The following keys can be used with the map:
"objSize"
"dataMode"
"dataId"
"chksum"
"ownerName"
"ownerZone"
"createTime"
"modifyTime"
func (*DataObj) TrimRepls ¶ added in v0.1.5
func (obj *DataObj) TrimRepls(opts TrimOptions) error
TrimRepls trims data object replicas (removes from resource servers), using the rules defined in opts.
func (*DataObj) Unlink ¶
Unlink deletes the data object from the iRODS server, no force flag is used
func (*DataObj) Verify ¶
Verify returns true or false depending on whether the checksum md5 string matches
func (*DataObj) Write ¶
Write writes the data to the data object, starting from the beginning. Returns error.
func (*DataObj) WriteBytes ¶
WriteBytes writes to the data object wherever the object's offset pointer is currently set to. It advances the pointer to the end of the written data for supporting subsequent writes. Be sure to call obj.LSeek(0) before hand if you wish to write from the beginning. Returns error.
type DataObjOptions ¶
DataObjOptions is used for passing options to the CreateDataObj and DataObj.Copy function
type GoRodsError ¶
GoRodsError stores information about errors
func (*GoRodsError) Error ¶
func (err *GoRodsError) Error() string
Error returns error string, alias of String(). Sample output:
2016-04-22 10:02:30.802355258 -0400 EDT: Fatal - iRODS Connect Failed: rcConnect failed
func (*GoRodsError) String ¶
func (err *GoRodsError) String() string
String returns error string. Sample output:
2016-04-22 10:02:30.802355258 -0400 EDT: Fatal - iRODS Connect Failed: rcConnect failed
type Group ¶ added in v0.1.5
type Group struct {
// contains filtered or unexported fields
}
Group holds info about iRODS groups
func (*Group) AddUser ¶ added in v0.1.5
AddUser adds an iRODS uset to the group. Accepts a string or *User struct.
func (*Group) Attribute ¶ added in v1.0.5
Attribute gets slice of Meta AVU triples, matching by Attribute name for Group
func (*Group) Comment ¶ added in v0.1.5
Comment loads data from iRODS if needed, and returns the group's comment attribute.
func (*Group) Con ¶ added in v0.1.5
func (grp *Group) Con() *Connection
Con returns the *Connection used to fetch group info
func (*Group) CreateTime ¶ added in v0.1.5
CreateTime loads data from iRODS if needed, and returns the group's createTime attribute.
func (*Group) Delete ¶ added in v0.1.5
Delete deletes the group from iCAT server. Refreshes Connection group cache.
func (*Group) DeleteMeta ¶ added in v1.0.5
func (grp *Group) DeleteMeta(attr string) (*MetaCollection, error)
DeleteMeta deletes a single Meta triple struct, identified by Attribute field
func (*Group) FetchInfo ¶ added in v0.1.5
FetchInfo returns a map of fresh group info from the iCAT server
func (*Group) FetchUsers ¶ added in v0.1.5
FetchUsers returns a slice of fresh *User from the iCAT server
func (*Group) Id ¶ added in v0.1.5
Id loads data from iRODS if needed, and returns the group's Id attribute.
func (*Group) Info ¶ added in v0.1.5
Info loads data from iRODS if needed, and returns the group's Info attribute.
func (*Group) Meta ¶ added in v1.0.5
func (grp *Group) Meta() (*MetaCollection, error)
Meta returns collection of Meta AVU triple structs of the group object
func (*Group) ModifyTime ¶ added in v0.1.5
ModifyTime loads data from iRODS if needed, and returns the group's modifyTime attribute.
func (*Group) Path ¶ added in v1.0.5
Path returns the name of the group. Used in gorods.MetaObj interface.
func (*Group) RefreshInfo ¶ added in v0.1.5
RefreshInfo refreshes the attributes of the group, pulling fresh data from the iCAT server.
func (*Group) RefreshUsers ¶ added in v0.1.5
RefreshUsers pulls fresh data from the iCAT server and sets the internal field returned by *Group.Users
func (*Group) RemoveUser ¶ added in v0.1.5
RemoveUser removes an iRODS user from the group. Accepts a string or *User struct.
func (*Group) Type ¶ added in v0.1.5
Type returns GroupType, used in AccessObject and MetaObj interfaces
type Groups ¶ added in v0.1.5
type Groups []*Group
Groups is a slice of *Group structs.
func (Groups) FindByName ¶ added in v0.1.5
func (grps Groups) FindByName(name string, con *Connection) *Group
FindByName searches the slice (itself) and attempts to return a match based on name. If no match is found, a new group with that name is created and returned. This was designed to resolve issues of casting resources for DataObjects and Collections, even though the cache was empty due to permissions.
type HandlerFactory ¶ added in v0.1.5
type HandlerFactory struct {
// contains filtered or unexported fields
}
func (*HandlerFactory) ServeHTTP ¶ added in v0.1.5
func (hf *HandlerFactory) ServeHTTP(response http.ResponseWriter, request *http.Request)
type HttpHandler ¶ added in v0.1.5
type HttpHandler struct {
// contains filtered or unexported fields
}
func (*HttpHandler) AddACL ¶ added in v0.1.5
func (handler *HttpHandler) AddACL(obj IRodsObj)
func (*HttpHandler) AddMetaAVU ¶ added in v0.1.5
func (handler *HttpHandler) AddMetaAVU(obj IRodsObj)
func (*HttpHandler) CreateCollection ¶ added in v0.1.5
func (handler *HttpHandler) CreateCollection(col *Collection)
func (*HttpHandler) DeleteMetaAVU ¶ added in v0.1.5
func (handler *HttpHandler) DeleteMetaAVU(obj IRodsObj)
func (*HttpHandler) DeleteObj ¶ added in v0.1.5
func (handler *HttpHandler) DeleteObj(obj IRodsObj)
func (*HttpHandler) Serve404 ¶ added in v0.1.5
func (handler *HttpHandler) Serve404()
func (*HttpHandler) ServeCollectionView ¶ added in v0.1.5
func (handler *HttpHandler) ServeCollectionView(col *Collection)
func (*HttpHandler) ServeDataObj ¶ added in v0.1.5
func (handler *HttpHandler) ServeDataObj(obj *DataObj)
func (*HttpHandler) ServeHTTP ¶ added in v0.1.5
func (handler *HttpHandler) ServeHTTP(response http.ResponseWriter, request *http.Request)
func (*HttpHandler) ServeJSONMeta ¶ added in v0.1.5
func (handler *HttpHandler) ServeJSONMeta(obj IRodsObj)
func (*HttpHandler) Upload ¶ added in v0.1.5
func (handler *HttpHandler) Upload(col *Collection)
type IRodsObj ¶
type IRodsObj interface { Type() int Name() string Path() string Col() *Collection Con() *Connection ACL() (ACLs, error) Stat() (map[string]interface{}, error) Size() int64 Mode() os.FileMode ModTime() time.Time IsDir() bool Sys() interface{} Owner() *User OwnerName() string CreateTime() time.Time ModifyTime() time.Time Rename(string) error CopyTo(interface{}) error MoveTo(interface{}) error DownloadTo(string) error // irm -rf Destroy() error // irm -f {-r} Delete(bool) error // irm {-r} Trash(bool) error // irm {-r} {-f} Rm(bool, bool) error RmTrash() error Chmod(string, int, bool) error GrantAccess(AccessObject, int, bool) error Replicate(interface{}, DataObjOptions) error Backup(interface{}, DataObjOptions) error MoveToResource(interface{}) error TrimRepls(TrimOptions) error Meta() (*MetaCollection, error) Attribute(string) (Metas, error) AddMeta(Meta) (*Meta, error) DeleteMeta(string) (*MetaCollection, error) String() string Open() error Close() error }
IRodsObj is a generic interface used to detect the object type and access common fields
type IRodsObjs ¶ added in v0.1.1
type IRodsObjs []IRodsObj
IRodsObjs is a slice of IRodsObj (Either a *DataObj or *Collection).
func (IRodsObjs) Exists ¶ added in v0.1.1
Exists checks to see if a collection exists in the slice and returns true or false
func (IRodsObjs) Find ¶ added in v0.1.1
Find gets a collection from the slice and returns nil if one is not found. Both the collection name or full path can be used as input.
func (IRodsObjs) FindRecursive ¶ added in v0.1.1
FindRecursive acts just like Find, but also searches sub collections recursively. If the collection was not explicitly loaded recursively, only the first level of sub collections will be searched.
type Meta ¶
type Meta struct { Attribute string Value string Units string Parent *MetaCollection }
Meta structs contain information about a single iRODS metadata attribute-value-units (AVU) triple
func (*Meta) Delete ¶ added in v0.1.1
func (m *Meta) Delete() (*MetaCollection, error)
Delete deletes the current Meta struct from iRODS object
func (*Meta) SetAll ¶ added in v0.1.1
SetAll will modify metadata AVU with all three paramaters (Attribute, Value, Unit)
type MetaCollection ¶
type MetaCollection struct { Metas Metas Obj MetaObj Con *Connection }
MetaCollection is a collection of metadata AVU triples for a single data object
func (*MetaCollection) Add ¶ added in v0.1.1
func (mc *MetaCollection) Add(m Meta) (*Meta, error)
Add creates a new meta AVU triple, returns pointer to the created Meta struct
func (*MetaCollection) All ¶ added in v0.1.2
func (mc *MetaCollection) All() (Metas, error)
All returns a slice of all Meta structs in the MetaCollection
func (*MetaCollection) Delete ¶ added in v0.1.1
func (mc *MetaCollection) Delete(attr string) (err error)
Delete deletes the meta AVU triple from the data object, identified by it's Attribute field
func (*MetaCollection) Each ¶ added in v0.1.2
func (mc *MetaCollection) Each(iterator func(*Meta)) error
Each accepts an iterator function for looping over all Meta structs in the MetaCollection
func (*MetaCollection) First ¶ added in v0.1.4
func (mc *MetaCollection) First(attr string) (*Meta, error)
First finds the first matching Meta struct by it's Attribute field
func (*MetaCollection) Get ¶
func (mc *MetaCollection) Get(attr string) (Metas, error)
Get returns a Meta struct slice (since attributes can share the same name in iRODS), matching by their Attribute field. Similar to Attribute() function of other types
func (*MetaCollection) ReadMeta ¶ added in v0.1.1
func (mc *MetaCollection) ReadMeta() error
ReadMeta clears existing metadata triples and grabs updated copy from iCAT server.
func (*MetaCollection) Refresh ¶ added in v0.1.1
func (mc *MetaCollection) Refresh() error
Refresh clears existing metadata triples and grabs updated copy from iCAT server. It's an alias of ReadMeta()
func (*MetaCollection) String ¶
func (mc *MetaCollection) String() string
String shows the contents of the meta collection.
Sample output:
Attr1: Val (unit: ) Attr2: Yes (unit: bool)
type MetaObj ¶ added in v1.0.5
type MetaObj interface { Type() int Con() *Connection Name() string Path() string Meta() (*MetaCollection, error) Attribute(string) (Metas, error) AddMeta(Meta) (*Meta, error) DeleteMeta(string) (*MetaCollection, error) }
type Metas ¶ added in v0.1.2
type Metas []*Meta
Metas is a slice of *Meta
type RangeOutput ¶ added in v0.1.5
type RangeOutput []RangeSegmentOutput
func (RangeOutput) TotalLength ¶ added in v0.1.5
func (ro RangeOutput) TotalLength() string
type RangeSegmentOutput ¶ added in v0.1.5
type Reader ¶ added in v1.0.5
type Reader struct {
// contains filtered or unexported fields
}
Reader provides an io.Reader interface for *gorods.DataObj
type RegOptions ¶ added in v1.0.5
type Resource ¶ added in v0.1.5
type Resource struct {
// contains filtered or unexported fields
}
Resource holds information about a resource server registered with iCAT.
func (*Resource) Children ¶ added in v0.1.5
Children loads data from iCAT if needed, and returns the resources children attribute.
func (*Resource) Class ¶ added in v0.1.5
Class loads data from iCAT if needed, and returns the resources class attribute.
func (*Resource) Comment ¶ added in v0.1.5
Comment loads data from iCAT if needed, and returns the resources comment attribute.
func (*Resource) Context ¶ added in v0.1.5
Context loads data from iCAT if needed, and returns the resources context attribute.
func (*Resource) CreateTime ¶ added in v0.1.5
CreateTime loads data from iCAT if needed, and returns the resources createTime attribute.
func (*Resource) FetchInfo ¶ added in v0.1.5
FetchInfo fetches fresh resource info from the iCAT server and returns it as a map
func (*Resource) FreeSpace ¶ added in v0.1.5
FreeSpace loads data from iCAT if needed, and returns the resources freeSpace attribute.
func (*Resource) FreeSpaceTime ¶ added in v0.1.5
FreeSpaceTime loads data from iCAT if needed, and returns the resources freeSpaceTime attribute.
func (*Resource) Id ¶ added in v0.1.5
Id loads data from iCAT if needed, and returns the resources id attribute.
func (*Resource) Info ¶ added in v0.1.5
Info loads data from iCAT if needed, and returns the resources info attribute.
func (*Resource) ModifyTime ¶ added in v0.1.5
ModifyTime loads data from iCAT if needed, and returns the resources modifyTime attribute.
func (*Resource) Net ¶ added in v0.1.5
Net loads data from iCAT if needed, and returns the resources net attribute.
func (*Resource) ObjCount ¶ added in v0.1.5
ObjCount loads data from iCAT if needed, and returns the resources status attribute.
func (*Resource) ParentStr ¶ added in v0.1.5
ParentStr loads data from iCAT if needed, and returns the resources parentStr attribute.
func (*Resource) PhysPath ¶ added in v0.1.5
PhysPath loads data from iCAT if needed, and returns the resources physPath attribute.
func (*Resource) RefreshInfo ¶ added in v0.1.5
RefreshInfo fetches fresh resource data from the iCAT server, and unloads it to the resource struct's fields.
func (*Resource) Status ¶ added in v0.1.5
Status loads data from iCAT if needed, and returns the resources status attribute.
func (*Resource) StorageType ¶ added in v0.1.5
Status loads data from iCAT if needed, and returns the resources info attribute.
type Resources ¶ added in v0.1.5
type Resources []*Resource
Resources is a slice of *Resource.
func (Resources) FindByName ¶ added in v0.1.5
FindByName returns the matching *Resource based on the name.
type TrimOptions ¶ added in v0.1.5
TrimOptions store the options for trim operations. NumCopiesKeep is the miniumum number of data object replicas to maintain. MinAgeMinues is the minimum age in minutes of the data object to trim. TargetResource is a string or *Resource type.
type User ¶ added in v0.1.5
type User struct {
// contains filtered or unexported fields
}
User contains information relating to an iRODS user
func (*User) AddToGroup ¶ added in v0.1.5
AddToGroup adds the user to an existing iRODS group. Accepts string or *Group types.
func (*User) Attribute ¶ added in v1.0.5
Attribute gets slice of Meta AVU triples, matching by Attribute name for User
func (*User) ChangePassword ¶ added in v0.1.5
ChangePassword changes the user's password. You will need to be a rodsadmin for this to succeed (I think).
func (*User) Comment ¶ added in v0.1.5
Comment loads data from iRODS if needed, and returns the user's comment attribute.
func (*User) Con ¶ added in v0.1.5
func (usr *User) Con() *Connection
Con returns the connection used to initalize the user
func (*User) CreateTime ¶ added in v0.1.5
CreateTime loads data from iRODS if needed, and returns the user's createTime attribute.
func (*User) DeleteMeta ¶ added in v1.0.5
func (usr *User) DeleteMeta(attr string) (*MetaCollection, error)
DeleteMeta deletes a single Meta triple struct, identified by Attribute field
func (*User) FetchGroups ¶ added in v0.1.5
FetchGroups fetches and returns fresh data about the user's groups from the iCAT server.
func (*User) FetchInfo ¶ added in v0.1.5
FetchInfo fetches fresh user info from the iCAT server, and returns it as a map.
func (*User) Groups ¶ added in v0.1.5
Groups loads data from iRODS if needed, and returns the user's groups slice.
func (*User) Id ¶ added in v0.1.5
Id loads data from iRODS if needed, and returns the user's id attribute.
func (*User) Info ¶ added in v0.1.5
Info loads data from iRODS if needed, and returns the user's info attribute.
func (*User) Meta ¶ added in v1.0.5
func (usr *User) Meta() (*MetaCollection, error)
Meta returns collection of Meta AVU triple structs of the user object
func (*User) ModifyTime ¶ added in v0.1.5
ModifyTime loads data from iRODS if needed, and returns the user's modifyTime attribute.
func (*User) RefreshGroups ¶ added in v0.1.5
RefreshGroups fetches group data from iCAT, and unloads it into the *User fields
func (*User) RefreshInfo ¶ added in v0.1.5
RefreshInfo fetches user data from iCAT, and unloads it into the *User fields
func (*User) RemoveFromGroup ¶ added in v0.1.5
RemoveFromGroup removes the user from an iRODS group. Accepts string or *Group types.
type Users ¶ added in v0.1.5
type Users []*User
Users is a slice of *User
func (Users) FindByName ¶ added in v0.1.5
func (usrs Users) FindByName(name string, con *Connection) *User
FindByName searches the slice for a user by name. If no match is found, a new user with that name is created and returned. This was designed to resolve issues of casting resources for DataObjects and Collections, even though the cache was empty due to permissions.
type Writer ¶ added in v1.0.5
type Writer struct {
// contains filtered or unexported fields
}
Writer provides an io.Writer interface for *gorods.DataObj
type Zone ¶ added in v0.1.5
type Zone struct {
// contains filtered or unexported fields
}
Zone contains information representing an iRODS zone.
func (*Zone) Comment ¶ added in v0.1.5
Comment loads data from iRODS if needed, and returns the zone's comment attribute.
func (*Zone) ConString ¶ added in v0.1.5
ConString loads data from iRODS if needed, and returns the zone's conString attribute.
func (*Zone) CreateTime ¶ added in v0.1.5
CreateTime loads data from iRODS if needed, and returns the zone's createTime attribute.
func (*Zone) FetchInfo ¶ added in v0.1.5
FetchInfo returns a map of fresh zone info from the iCAT server.
func (*Zone) Id ¶ added in v0.1.5
Id loads data from iRODS if needed, and returns the zone's id attribute.
func (*Zone) ModifyTime ¶ added in v0.1.5
ModifyTime loads data from iRODS if needed, and returns the zone's modifyTime attribute.
func (*Zone) RefreshInfo ¶ added in v0.1.5
RefreshInfo pulls fresh info from the iCAT server, and sets it's zone fields based on the data.
type Zones ¶ added in v0.1.5
type Zones []*Zone
Zones is a slice of *Zone.
func (Zones) FindByName ¶ added in v0.1.5
func (znes Zones) FindByName(name string, con *Connection) *Zone
FindByName searches the slice (itself) for a matching zone, based on name. If the zone isn't found, one is initialized. If no match is found, a new zone with that name is created and returned. This was designed to resolve issues of casting zone strings to structs, even though the cache was empty due to permissions.
Notes ¶
Bugs ¶
iRODS C API code outputs errors messages, need to implement connect wrapper (gorods_connect_env) from a lower level to suppress this output https://github.com/irods/irods/blob/master/iRODS/lib/core/src/rcConnect.cpp#L109