Module gfal2 :: Class creat_context
[show private | hide private]
[frames | no frames]

Type creat_context

object --+    
         |    
  instance --+
             |
            creat_context


Method Summary
  __init__(...)
__init__( (object)arg1) -> None :...
  __reduce__(...)
  access(...)
access( (creat_context)arg1, (str)arg2, (int)arg3) -> int :...
  cancel(...)
cancel( (creat_context)arg1) -> int :...
  checksum(...)
checksum( (creat_context)arg1, (str)arg2, (str)arg3, (long)arg4, (int)arg5) -> str :...
  chmod(...)
chmod( (creat_context)arg1, (str)arg2, (int)arg3) -> int :...
  file(...)
file( (creat_context)arg1, (str)arg2, (str)arg3) -> FileType :...
  filecopy(...)
filecopy( (creat_context)arg1, (str)arg2, (str)arg3) -> int :...
  get_opt_boolean(...)
get_opt_boolean( (creat_context)arg1, (str)arg2, (str)arg3) -> bool :...
  get_opt_integer(...)
get_opt_integer( (creat_context)arg1, (str)arg2, (str)arg3) -> int :...
  get_opt_string(...)
get_opt_string( (creat_context)arg1, (str)arg2, (str)arg3) -> str :...
  get_opt_string_list(...)
get_opt_string_list( (creat_context)arg1, (str)arg2, (str)arg3) -> list :...
  getxattr(...)
getxattr( (creat_context)arg1, (str)arg2, (str)arg3) -> str :...
  listdir(...)
listdir( (creat_context)arg1, (str)arg2) -> list :...
  listxattr(...)
listxattr( (creat_context)arg1, (str)arg2) -> list :...
  lstat(...)
lstat( (creat_context)arg1, (str)arg2) -> st_stat :...
  mkdir(...)
mkdir( (creat_context)arg1, (str)arg2, (int)arg3) -> int :...
  open(...)
open( (creat_context)arg1, (str)arg2, (str)arg3) -> FileType :...
  readlink(...)
readlink( (creat_context)arg1, (str)arg2) -> str :...
  rename(...)
rename( (creat_context)arg1, (str)arg2, (str)arg3) -> int :...
  rmdir(...)
rmdir( (creat_context)arg1, (str)arg2) -> int :...
  set_opt_boolean(...)
set_opt_boolean( (creat_context)arg1, (str)arg2, (str)arg3, (bool)arg4) -> int :...
  set_opt_integer(...)
set_opt_integer( (creat_context)arg1, (str)arg2, (str)arg3, (int)arg4) -> int :...
  set_opt_string(...)
set_opt_string( (creat_context)arg1, (str)arg2, (str)arg3, (str)arg4) -> int :...
  set_opt_string_list(...)
set_opt_string_list( (creat_context)arg1, (str)arg2, (str)arg3, (list)arg4) -> int :...
  setxattr(...)
setxattr( (creat_context)arg1, (str)arg2, (str)arg3, (str)arg4, (int)arg5) -> int :...
  stat(...)
stat( (creat_context)arg1, (str)arg2) -> st_stat :...
  symlink(...)
symlink( (creat_context)arg1, (str)arg2, (str)arg3) -> int :...
  unlink(...)
unlink( (creat_context)arg1, (str)arg2) -> int :...
    Inherited from instance
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __reduce_ex__(...)
helper for pickle
  __repr__(x)
x.__repr__() <==> repr(x)
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __str__(x)
x.__str__() <==> str(x)

Class Variable Summary
int __instance_size__ = 20                                                                    
class FileType = gfal2.FileType
class st_stat = gfal2.st_stat
class transfer_parameters = gfal2.transfer_parameters

Method Details

__init__(...)
(Constructor)

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)
Overrides:
__builtin__.object.__init__

access(...)

access( (creat_context)arg1, (str)arg2, (int)arg3) -> int :

    C++ signature :
        int access(Gfal {lvalue},std::string,int)

cancel(...)

cancel( (creat_context)arg1) -> int :

    C++ signature :
        int cancel(Gfal {lvalue})

checksum(...)

checksum( (creat_context)arg1, (str)arg2, (str)arg3, (long)arg4, (int)arg5) -> str :

    C++ signature :
        std::string checksum(Gfal {lvalue},std::string,std::string,long long,unsigned int)

checksum( (creat_context)arg1, (str)arg2, (str)arg3) -> str :

    C++ signature :
        std::string checksum(Gfal {lvalue},std::string,std::string)

chmod(...)

chmod( (creat_context)arg1, (str)arg2, (int)arg3) -> int :

    C++ signature :
        int chmod(Gfal {lvalue},std::string,unsigned int)

file(...)

file( (creat_context)arg1, (str)arg2, (str)arg3) -> FileType :

    C++ signature :
        boost::shared_ptr<Gfal::GfalFile> file(Gfal {lvalue},std::string,std::string)

filecopy(...)

filecopy( (creat_context)arg1, (str)arg2, (str)arg3) -> int :

    C++ signature :
        int filecopy(Gfal {lvalue},std::string,std::string)

filecopy( (creat_context)arg1, (transfer_parameters)arg2, (str)arg3, (str)arg4) -> int :

    C++ signature :
        int filecopy(Gfal {lvalue},Gfalt_params,std::string,std::string)

get_opt_boolean(...)

get_opt_boolean( (creat_context)arg1, (str)arg2, (str)arg3) -> bool :

    C++ signature :
        bool get_opt_boolean(Gfal {lvalue},std::string,std::string)

get_opt_integer(...)

get_opt_integer( (creat_context)arg1, (str)arg2, (str)arg3) -> int :

    C++ signature :
        int get_opt_integer(Gfal {lvalue},std::string,std::string)

get_opt_string(...)

get_opt_string( (creat_context)arg1, (str)arg2, (str)arg3) -> str :

    C++ signature :
        std::string get_opt_string(Gfal {lvalue},std::string,std::string)

get_opt_string_list(...)

get_opt_string_list( (creat_context)arg1, (str)arg2, (str)arg3) -> list :

    C++ signature :
        boost::python::list get_opt_string_list(Gfal {lvalue},std::string,std::string)

getxattr(...)

getxattr( (creat_context)arg1, (str)arg2, (str)arg3) -> str :

    C++ signature :
        std::string getxattr(Gfal {lvalue},std::string,std::string)

listdir(...)

listdir( (creat_context)arg1, (str)arg2) -> list :

    C++ signature :
        boost::python::list listdir(Gfal {lvalue},std::string)

listxattr(...)

listxattr( (creat_context)arg1, (str)arg2) -> list :

    C++ signature :
        boost::python::list listxattr(Gfal {lvalue},std::string)

lstat(...)

lstat( (creat_context)arg1, (str)arg2) -> st_stat :

    C++ signature :
        Gfal::Gstat lstat(Gfal {lvalue},std::string)

mkdir(...)

mkdir( (creat_context)arg1, (str)arg2, (int)arg3) -> int :

    C++ signature :
        int mkdir(Gfal {lvalue},std::string,unsigned int)

open(...)

open( (creat_context)arg1, (str)arg2, (str)arg3) -> FileType :

    C++ signature :
        boost::shared_ptr<Gfal::GfalFile> open(Gfal {lvalue},std::string,std::string)

readlink(...)

readlink( (creat_context)arg1, (str)arg2) -> str :

    C++ signature :
        std::string readlink(Gfal {lvalue},std::string)

rename(...)

rename( (creat_context)arg1, (str)arg2, (str)arg3) -> int :

    C++ signature :
        int rename(Gfal {lvalue},std::string,std::string)

rmdir(...)

rmdir( (creat_context)arg1, (str)arg2) -> int :

    C++ signature :
        int rmdir(Gfal {lvalue},std::string)

set_opt_boolean(...)

set_opt_boolean( (creat_context)arg1, (str)arg2, (str)arg3, (bool)arg4) -> int :

    C++ signature :
        int set_opt_boolean(Gfal {lvalue},std::string,std::string,bool)

set_opt_integer(...)

set_opt_integer( (creat_context)arg1, (str)arg2, (str)arg3, (int)arg4) -> int :

    C++ signature :
        int set_opt_integer(Gfal {lvalue},std::string,std::string,int)

set_opt_string(...)

set_opt_string( (creat_context)arg1, (str)arg2, (str)arg3, (str)arg4) -> int :

    C++ signature :
        int set_opt_string(Gfal {lvalue},std::string,std::string,std::string)

set_opt_string_list(...)

set_opt_string_list( (creat_context)arg1, (str)arg2, (str)arg3, (list)arg4) -> int :

    C++ signature :
        int set_opt_string_list(Gfal {lvalue},std::string,std::string,boost::python::list)

setxattr(...)

setxattr( (creat_context)arg1, (str)arg2, (str)arg3, (str)arg4, (int)arg5) -> int :

    C++ signature :
        int setxattr(Gfal {lvalue},std::string,std::string,std::string,int)

stat(...)

stat( (creat_context)arg1, (str)arg2) -> st_stat :

    C++ signature :
        Gfal::Gstat stat(Gfal {lvalue},std::string)

symlink(...)

symlink( (creat_context)arg1, (str)arg2, (str)arg3) -> int :

    C++ signature :
        int symlink(Gfal {lvalue},std::string,std::string)

unlink(...)

unlink( (creat_context)arg1, (str)arg2) -> int :

    C++ signature :
        int unlink(Gfal {lvalue},std::string)

Class Variable Details

__instance_size__

Type:
int
Value:
20                                                                    

Generated by Epydoc 2.1 on Tue Jun 25 18:12:12 2013 http://epydoc.sf.net