Package saga :: Package replica :: Module _replica :: Class entry
[hide private]
[frames] | no frames]

Class entry

          object --+            
                   |            
         ??.instance --+        
                       |        
          _engine.object --+    
                           |    
name_space._name_space.entry --+
                               |
                              entry

Nested Classes [hide private]

Inherited from _engine.object: object_type

Instance Methods [hide private]
 
__init__(...)
__init__( (object)arg1, (url)arg2) -> None :
 
add_location(...)
add_location( (entry)arg1, (url)arg2) -> None : adds a new file location to this replca entry (plain)
 
attribute_exists(...)
attribute_exists( (entry)arg1, (str)arg2) -> bool : tests if the given attribute exists for this instance (plain)
 
attribute_is_readonly(...)
attribute_is_readonly( (entry)arg1, (str)arg2) -> bool : tests if the given attribute is read only (plain)
 
attribute_is_removable(...)
attribute_is_removable( (entry)arg1, (str)arg2) -> bool : tests if the given attribute is removable (plain)
 
attribute_is_vector(...)
attribute_is_vector( (entry)arg1, (str)arg2) -> bool : tests if the given attribute is a vector attribute (plain)
 
attribute_is_writable(...)
attribute_is_writable( (entry)arg1, (str)arg2) -> bool : tests if the given attribute is writable (plain)
 
find_attributes(...)
find_attributes( (entry)arg1, (str)arg2) -> object : find attributes matching the given pattern (plain)
 
get_attribute(...)
get_attribute( (entry)arg1, (str)arg2) -> str : returns a (scalar) attribute associated with this object (plain)
 
get_vector_attribute(...)
get_vector_attribute( (entry)arg1, (str)arg2) -> object : returns a (vector) attribute associated with this object (plain)
 
list_attributes(...)
list_attributes( (entry)arg1) -> object : lists the keys of all attributes associated with this object (plain)
 
list_locations(...)
list_locations( (entry)arg1) -> object : list all existing file locations from this replica entry (plain)
 
remove_attribute(...)
remove_attribute( (entry)arg1, (str)arg2) -> None : removes an attribute associated with this object (plain)
 
remove_location(...)
remove_location( (entry)arg1, (url)arg2) -> None : removes an existing file location from this replica entry (plain)
 
replicate(...)
replicate( (entry)arg1, (url)arg2 [, (int)arg3]) -> None : create a new copy of one of the file locations of this replica entry at the given file location (plain)
 
set_attribute(...)
set_attribute( (entry)arg1, (str)arg2, (str)arg3) -> None : sets a (scalar) attribute associated with this object (plain)
 
set_vector_attribute(...)
set_vector_attribute( (entry)arg1, (str)arg2, (object)arg3) -> None : sets a (vector) attribute associated with this object (plain)
 
update_location(...)
update_location( (entry)arg1, (url)arg2, (url)arg3) -> None : replaces an existing file location in this replica entry with a new file location (plain)

Inherited from name_space._name_space.entry: close, copy, get_cwd, get_group, get_name, get_owner, get_url, is_dir, is_entry, is_link, link, move, permissions_allow, permissions_check, permissions_deny, read_link, remove

Inherited from _engine.object: __reduce__, clone, get_id, get_object_type_name, get_session, get_type

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]

Inherited from _engine.object: Advert, AdvertDirectory, Buffer, Context, Directory, Endpoint, Exception, File, IOVec, Job, JobDescription, JobSelf, JobService, LogicalDirectory, LogicalFile, Metric, Msg, NSDirectory, NSEntry, Parameter, RPC, Session, Stream, StreamService, Task, TaskContainer, URL, __instance_size__

Properties [hide private]

Inherited from _engine.object: id, session, type

Inherited from object: __class__

Method Details [hide private]

__init__(...)
(Constructor)

 

__init__( (object)arg1, (url)arg2) -> None :

    C++ signature :
        void __init__(_object*,saga::url)

__init__( (object)arg1, (url)arg2, (int)arg3) -> None :

    C++ signature :
        void __init__(_object*,saga::url,int)

__init__( (object)arg1, (session)arg2, (url)arg3) -> None :

    C++ signature :
        void __init__(_object*,saga::session,saga::url)

__init__( (object)arg1, (session)arg2, (url)arg3, (int)arg4) -> None :

    C++ signature :
        void __init__(_object*,saga::session,saga::url,int)

Overrides: object.__init__

add_location(...)

 

add_location( (entry)arg1, (url)arg2) -> None :
    adds a new file location to this replca entry (plain)

    C++ signature :
        void add_location(saga::replica::logical_file,saga::url)

add_location( (entry)arg1, (routine_type)arg2, (url)arg3) -> task :
    adds a new file location to this replca entry (task based)

    C++ signature :
        saga::task add_location(saga::replica::logical_file,saga::python::routine_type,saga::url)

attribute_exists(...)

 

attribute_exists( (entry)arg1, (str)arg2) -> bool :
    tests if the given attribute exists for this instance (plain)

    C++ signature :
        bool attribute_exists(saga::replica::logical_file,std::string)

attribute_exists( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute exists for this instance (task based)

    C++ signature :
        saga::task attribute_exists(saga::replica::logical_file,saga::python::routine_type,std::string)

attribute_is_readonly(...)

 

attribute_is_readonly( (entry)arg1, (str)arg2) -> bool :
    tests if the given attribute is read only (plain)

    C++ signature :
        bool attribute_is_readonly(saga::replica::logical_file,std::string)

attribute_is_readonly( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is read only (task based)

    C++ signature :
        saga::task attribute_is_readonly(saga::replica::logical_file,saga::python::routine_type,std::string)

attribute_is_removable(...)

 

attribute_is_removable( (entry)arg1, (str)arg2) -> bool :
    tests if the given attribute is removable (plain)

    C++ signature :
        bool attribute_is_removable(saga::replica::logical_file,std::string)

attribute_is_removable( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is removable (task based)

    C++ signature :
        saga::task attribute_is_removable(saga::replica::logical_file,saga::python::routine_type,std::string)

attribute_is_vector(...)

 

attribute_is_vector( (entry)arg1, (str)arg2) -> bool :
    tests if the given attribute is a vector attribute (plain)

    C++ signature :
        bool attribute_is_vector(saga::replica::logical_file,std::string)

attribute_is_vector( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is a vector attribute (task based)

    C++ signature :
        saga::task attribute_is_vector(saga::replica::logical_file,saga::python::routine_type,std::string)

attribute_is_writable(...)

 

attribute_is_writable( (entry)arg1, (str)arg2) -> bool :
    tests if the given attribute is writable (plain)

    C++ signature :
        bool attribute_is_writable(saga::replica::logical_file,std::string)

attribute_is_writable( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is writable (task based)

    C++ signature :
        saga::task attribute_is_writable(saga::replica::logical_file,saga::python::routine_type,std::string)

find_attributes(...)

 

find_attributes( (entry)arg1, (str)arg2) -> object :
    find attributes matching the given pattern (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > find_attributes(saga::replica::logical_file,std::string)

find_attributes( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    find attributes matching the given pattern (task based)

    C++ signature :
        saga::task find_attributes(saga::replica::logical_file,saga::python::routine_type,std::string)

get_attribute(...)

 

get_attribute( (entry)arg1, (str)arg2) -> str :
    returns a (scalar) attribute associated with this object (plain)

    C++ signature :
        std::string get_attribute(saga::replica::logical_file,std::string)

get_attribute( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns a (scalar) attribute associated with this object (task based)

    C++ signature :
        saga::task get_attribute(saga::replica::logical_file,saga::python::routine_type,std::string)

get_vector_attribute(...)

 

get_vector_attribute( (entry)arg1, (str)arg2) -> object :
    returns a (vector) attribute associated with this object (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > get_vector_attribute(saga::replica::logical_file,std::string)

get_vector_attribute( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns a (vector) attribute associated with this object (task based)

    C++ signature :
        saga::task get_vector_attribute(saga::replica::logical_file,saga::python::routine_type,std::string)

list_attributes(...)

 

list_attributes( (entry)arg1) -> object :
    lists the keys of all attributes associated with this object (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > list_attributes(saga::replica::logical_file)

list_attributes( (entry)arg1, (routine_type)arg2) -> task :
    lists the keys of all attributes associated with this object (task based)

    C++ signature :
        saga::task list_attributes(saga::replica::logical_file,saga::python::routine_type)

list_locations(...)

 

list_locations( (entry)arg1) -> object :
    list all existing file locations from this replica entry (plain)

    C++ signature :
        std::vector<saga::url, std::allocator<saga::url> > list_locations(saga::replica::logical_file)

list_locations( (entry)arg1, (routine_type)arg2) -> task :
    list all existing file locations from this replica entry (task based)

    C++ signature :
        saga::task list_locations(saga::replica::logical_file,saga::python::routine_type)

remove_attribute(...)

 

remove_attribute( (entry)arg1, (str)arg2) -> None :
    removes an attribute associated with this object (plain)

    C++ signature :
        void remove_attribute(saga::replica::logical_file,std::string)

remove_attribute( (entry)arg1, (routine_type)arg2, (str)arg3) -> task :
    removes an attribute associated with this object (task based)

    C++ signature :
        saga::task remove_attribute(saga::replica::logical_file,saga::python::routine_type,std::string)

remove_location(...)

 

remove_location( (entry)arg1, (url)arg2) -> None :
    removes an existing file location from this replica entry (plain)

    C++ signature :
        void remove_location(saga::replica::logical_file,saga::url)

remove_location( (entry)arg1, (routine_type)arg2, (url)arg3) -> task :
    removes an existing file location from this replica entry (task based)

    C++ signature :
        saga::task remove_location(saga::replica::logical_file,saga::python::routine_type,saga::url)

replicate(...)

 

replicate( (entry)arg1, (url)arg2 [, (int)arg3]) -> None :
    create a new copy of one of the file locations of this replica entry at the given file location (plain)

    C++ signature :
        void replicate(saga::replica::logical_file,saga::url [,int])

replicate( (entry)arg1, (routine_type)arg2, (url)arg3 [, (int)arg4]) -> task :
    create a new copy of one of the file locations of this replica entry at the given file location (task based)

    C++ signature :
        saga::task replicate(saga::replica::logical_file,saga::python::routine_type,saga::url [,int])

set_attribute(...)

 

set_attribute( (entry)arg1, (str)arg2, (str)arg3) -> None :
    sets a (scalar) attribute associated with this object (plain)

    C++ signature :
        void set_attribute(saga::replica::logical_file,std::string,std::string)

set_attribute( (entry)arg1, (routine_type)arg2, (str)arg3, (str)arg4) -> task :
    sets a (scalar) attribute associated with this object (task based)

    C++ signature :
        saga::task set_attribute(saga::replica::logical_file,saga::python::routine_type,std::string,std::string)

set_vector_attribute(...)

 

set_vector_attribute( (entry)arg1, (str)arg2, (object)arg3) -> None :
    sets a (vector) attribute associated with this object (plain)

    C++ signature :
        void set_vector_attribute(saga::replica::logical_file,std::string,std::vector<std::string, std::allocator<std::string> >)

set_vector_attribute( (entry)arg1, (routine_type)arg2, (str)arg3, (object)arg4) -> task :
    sets a (vector) attribute associated with this object (task based)

    C++ signature :
        saga::task set_vector_attribute(saga::replica::logical_file,saga::python::routine_type,std::string,std::vector<std::string, std::allocator<std::string> >)

update_location(...)

 

update_location( (entry)arg1, (url)arg2, (url)arg3) -> None :
    replaces an existing file location in this replica entry with a new file location (plain)

    C++ signature :
        void update_location(saga::replica::logical_file,saga::url,saga::url)

update_location( (entry)arg1, (routine_type)arg2, (url)arg3, (url)arg4) -> task :
    replaces an existing file location in this replica entry with a new file location (task based)

    C++ signature :
        saga::task update_location(saga::replica::logical_file,saga::python::routine_type,saga::url,saga::url)