Home | Trees | Indices | Help |
|
---|
|
object --+ | ??.instance --+ | _engine.object --+ | name_space._name_space.entry --+ | file
Nested Classes | |
seek_mode | |
Inherited from _engine.object | |
---|---|
object_type |
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|||
Inherited from name_space._name_space.entry | |||
---|---|---|---|
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from _engine.object | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Class Variables | |
Current = saga.filesystem._filesystem.seek_mode.Current
|
|
End = saga.filesystem._filesystem.seek_mode.End
|
|
Start = saga.filesystem._filesystem.seek_mode.Start
|
|
Inherited from _engine.object | |
---|---|
Advert = saga._engine.object_type.Advert
|
|
AdvertDirectory = saga._engine.object_type.AdvertDirectory
|
|
Buffer = saga._engine.object_type.Buffer
|
|
CPRCheckpoint = saga._engine.object_type.CPRCheckpoint
|
|
CPRDirectory = saga._engine.object_type.CPRDirectory
|
|
CPRJob = saga._engine.object_type.CPRJob
|
|
CPRJobDescription = saga._engine.object_type.CPRJobDescription
|
|
CPRJobSelf = saga._engine.object_type.CPRJobSelf
|
|
CPRJobService = saga._engine.object_type.CPRJobService
|
|
Context = saga._engine.object_type.Context
|
|
Directory = saga._engine.object_type.Directory
|
|
Endpoint = saga._engine.object_type.Endpoint
|
|
EntityData = saga._engine.object_type.EntityData
|
|
EntityDataSet = saga._engine.object_type.EntityDataSet
|
|
EntityNavigator = saga._engine.object_type.EntityNavigator
|
|
Exception = saga._engine.object_type.Exception
|
|
File = saga._engine.object_type.File
|
|
IOVec = saga._engine.object_type.IOVec
|
|
Job = saga._engine.object_type.Job
|
|
JobDescription = saga._engine.object_type.JobDescription
|
|
JobSelf = saga._engine.object_type.JobSelf
|
|
JobService = saga._engine.object_type.JobService
|
|
LogicalDirectory = saga._engine.object_type.LogicalDirectory
|
|
LogicalFile = saga._engine.object_type.LogicalFile
|
|
Metric = saga._engine.object_type.Metric
|
|
Msg = saga._engine.object_type.Msg
|
|
NSDirectory = saga._engine.object_type.NSDirectory
|
|
NSEntry = saga._engine.object_type.NSEntry
|
|
Parameter = saga._engine.object_type.Parameter
|
|
RPC = saga._engine.object_type.RPC
|
|
ServiceData = saga._engine.object_type.ServiceData
|
|
ServiceDescription = saga._engine.object_type.ServiceDescription
|
|
ServiceDiscoverer = saga._engine.object_type.ServiceDiscoverer
|
|
Session = saga._engine.object_type.Session
|
|
Stream = saga._engine.object_type.Stream
|
|
StreamServer = saga._engine.object_type.StreamServer
|
|
Task = saga._engine.object_type.Task
|
|
TaskContainer = saga._engine.object_type.TaskContainer
|
|
URL = saga._engine.object_type.URL
|
|
__instance_size__ = 32
|
Properties | |
Inherited from |
|
Inherited from _engine.object | |
---|---|
id returns the id of this instance |
|
session return the session associated with this object instance |
|
type returns the type of this instance |
Method Details |
__init__( (object)arg1, (url)arg2) -> None : C++ signature : void __init__(_object*,saga::url) __init__( (object)arg1, (str)arg2) -> None : C++ signature : void __init__(_object*,std::string) __init__( (object)arg1, (url)arg2, (int)arg3) -> None : C++ signature : void __init__(_object*,saga::url,int) __init__( (object)arg1, (str)arg2, (int)arg3) -> None : C++ signature : void __init__(_object*,std::string,int) __init__( (object)arg1, (session)arg2, (url)arg3) -> None : C++ signature : void __init__(_object*,saga::session,saga::url) __init__( (object)arg1, (session)arg2, (str)arg3) -> None : C++ signature : void __init__(_object*,saga::session,std::string) __init__( (object)arg1, (session)arg2, (url)arg3, (int)arg4) -> None : C++ signature : void __init__(_object*,saga::session,saga::url,int) __init__( (object)arg1, (session)arg2, (str)arg3, (int)arg4) -> None : C++ signature : void __init__(_object*,saga::session,std::string,int)
|
get_size( (file)arg1) -> long : returns the size of this file (plain) C++ signature : long long get_size(saga::filesystem::file) get_size( (file)arg1, (routine_type)arg2) -> task : returns the size of this file (task based) C++ signature : saga::task get_size(saga::filesystem::file,saga::python::routine_type) |
read( (file)arg1, (object)arg2 [, (int)arg3]) -> int : reads the given number of bytes from the file (plain) C++ signature : long read(saga::filesystem::file,saga::mutable_buffer [,unsigned long]) read( (file)arg1, (routine_type)arg2, (object)arg3 [, (int)arg4]) -> task : reads the given number of bytes from the file (task based) C++ signature : saga::task read(saga::filesystem::file,saga::python::routine_type,saga::mutable_buffer [,unsigned long]) read( (file)arg1 [, (int)arg2]) -> object : reads the given number of bytes from the file (plain) C++ signature : boost::python::handle<_object> read(saga::filesystem::file [,unsigned long]) read( (file)arg1, (routine_type)arg2 [, (int)arg3]) -> task : reads the given number of bytes from the file (task based) C++ signature : saga::task read(saga::filesystem::file,saga::python::routine_type [,unsigned long]) |
seek( (file)arg1, (long)arg2, (seek_mode)arg3) -> long : repositions the current file pointer (plain) C++ signature : long long seek(saga::filesystem::file,long long,saga::filesystem::seek_mode) seek( (file)arg1, (routine_type)arg2, (long)arg3, (seek_mode)arg4) -> task : repositions the current file pointer (task based) C++ signature : saga::task seek(saga::filesystem::file,saga::python::routine_type,long long,saga::filesystem::seek_mode) |
write( (file)arg1, (object)arg2 [, (int)arg3]) -> int : writes the given bytes to the file (plain) C++ signature : long write(saga::filesystem::file,saga::mutable_buffer [,unsigned long]) write( (file)arg1, (routine_type)arg2, (object)arg3 [, (int)arg4]) -> task : writes the given bytes to the file (task based) C++ signature : saga::task write(saga::filesystem::file,saga::python::routine_type,saga::mutable_buffer [,unsigned long]) write( (file)arg1, (object)arg2) -> int : writes the given bytes to the file (plain) C++ signature : long write(saga::filesystem::file,boost::python::api::object) write( (file)arg1, (routine_type)arg2, (object)arg3) -> task : writes the given bytes to the file (task based) C++ signature : saga::task write(saga::filesystem::file,saga::python::routine_type,boost::python::api::object) |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Oct 13 23:44:31 2011 | http://epydoc.sourceforge.net |