Difference between revisions of "VMS-Specific Python Modules"
Line 185: | Line 185: | ||
== vms.lib == | == vms.lib == | ||
+ | Provides functions from LIB$. | ||
+ | |||
+ | === create_dir(name:str, uic:int, pe:int, pv:int)->int === | ||
+ | Creates a directory. | ||
+ | ==== parameters ==== | ||
+ | * <code>name:str</code> name of the directory to be created (specified in OpenVMS style) | ||
+ | * <code>uic:int</code> unsigned integer value of the owner UIC: | ||
+ | ** <code>None</code> - the current user | ||
+ | ** <code>0</code> - owner of the parent directory | ||
+ | * <code>pe:int</code> protection enable. See full documentation in the '''HP OpenVMS RTL Library(LIB$) Manual''' for LIB$CREATE_DIR. | ||
+ | * <code>pv:int</code> protection value | ||
+ | ==== returns ==== | ||
+ | * <code>vms.ssdef.SS__CREATED</code> one or more directories created | ||
+ | * <code>vms.ssdef.SS__NORMAL</code> all specified directories already exist | ||
+ | * another error. See in '''vms.ssdef''' | ||
+ | |||
== vms.sys == | == vms.sys == | ||
== rdb == | == rdb == |
Revision as of 05:26, 31 August 2020
VMS specific Python modules.
Contents
- 1 vms.decc
- 1.1 dlopen_test(name:str)->int
- 1.2 fix_time(vms_time:int)->int
- 1.3 from_vms(vms_path:str, wild_flag:int)->list
- 1.4 getenv(name:str, def_value:str)->str
- 1.5 sleep(seconds:int)->int
- 1.6 sysconf(name:int)->int
- 1.7 to_vms(unix_path:str, allow_wild:int, no_directory:int)->list
- 1.8 unixtime(vms_time:int)->int
- 1.9 vmstime(unix_time:int)->int
- 2 vms.ile3
- 2.1 new()->object
- 2.2 delete(il:object)->None
- 2.3 size(il:object)->int
- 2.4 addint(il:object, item:int, item_type:int, item_value:int)->None
- 2.5 getint(il:object, index:int)->int
- 2.6 gethex(il:object, index:int)->str
- 2.7 addstr(il:object, item:int, item_value:str, item_length:int)->None
- 2.8 addstrd(il:object, item:int, item_value:str, item_length:int)->None
- 2.9 addstrn(il:object, item:int, item_value:str, item_length:int)->None
- 2.10 getstr(il:object, index:int, flag:int)->str
- 2.11 addbin(il:object, item:int, item_value:int, item_offset:int, item_len:int)->None
- 2.12 getbyte(il:object, index:int, item_offset:int)->int
- 3 vms.lib
- 4 vms.sys
- 5 rdb
vms.decc
Provides DECC functionality.
dlopen_test(name:str)->int
Tries to open a shared image.
parameters
name:str
path to the shared image
returns
1
if the shared image exists and can be opened by dlopen()0
otherwise
fix_time(vms_time:int)->int
Converts VMS time to the Unix time.
parameters
vms_time:int
VMS system time
returns
Time in Unix format (seconds that have elapsed since 1970.01.01)
from_vms(vms_path:str, wild_flag:int)->list
Converts VMS path to a list of Unix paths.
parameters
vms_path:str
path in VMS format (supports wildcards)wild_flag:int
If set to0
, wildcards found in thevms_path
are not expanded
returns
List of paths in Unix format
getenv(name:str, def_value:str)->str
Gets the specified environment variable value. See getenv() description in the HP C Run-Time Library Reference Manual for OpenVMS Systems documentation.
parameters
name:str
name of the environment variabledef_value:str
default value
returns
Environment variable value
sleep(seconds:int)->int
Suspends execution of the current process or thread for the specified number of seconds.
parameters
seconds:int
seconds to sleep
returns
The number of seconds left to the end of the sleep period if sleep is interrupted.
0
if the process slept for the specified number of seconds.
sysconf(name:int)->int
Provides a method for determining the current value of a configurable system limit or whether optional features are supported.
parameters
name:int
system variable to be queried
returns
Requested value
to_vms(unix_path:str, allow_wild:int, no_directory:int)->list
Converts UNIX style file specifications to OpenVMS file specifications.
parameters
unix_path:str
file name in UNIX style file specification formatallow_wild:int
If set to0
, wildcards found inunix_path
are not expandedno_directory:int
An integer that has one of the following values:- 0 - Directory allowed
- 1 - Prevent expansion of the string as a directory name
- 2 - Force expansion of the string as a directory name
returns
List of paths in OpenVMS style
unixtime(vms_time:int)->int
Converts OpenVMS system time to the Unix local time.
parameters
vms_time:int
OpenVMS system time
returns
Unix time
vmstime(unix_time:int)->int
Converts Unix time to the OpenVMS system time.
parameters
unix_time:int
Unix time
returns
OpenVMS system time
vms.ile3
Provides functions for working with list.
new()->object
Creates empty item list.
parameters
None
returns
New empty item list
delete(il:object)->None
Deletes item list.
parameters
il:object
item list to be removed
returns
OpenVMS system time
size(il:object)->int
Gets size of the item list.
parameters
il:object
item list
returns
The size of the specified item list
addint(il:object, item:int, item_type:int, item_value:int)->None
Adds a new integer to the item list.
parameters
il:object
item listitem:int
item to additem_type:int
type of the item. See vms.dscdefitem_value:int
value of the item
returns
None
getint(il:object, index:int)->int
Gets the integer at the specified index in the list.
parameters
il:object
item listindex:int
index of the item to get
returns
Integer value
gethex(il:object, index:int)->str
Gets the integer at the specified index in the item list and returns it as a hexadecimal string.
parameters
il:object
item listindex:int
index of the item to get
returns
Hexadecimal string
addstr(il:object, item:int, item_value:str, item_length:int)->None
Adds the specified string to the item list. If the item_value
is not None
, the item_length
is ignored and the length of the buffer will be the same as the length of the item_value
.
parameters
il:object
item listitem:int
item to additem_value:str
value to add (orNone
)item_length:int
length of the buffer if theitem_value
isNone
returns
None
addstrd(il:object, item:int, item_value:str, item_length:int)->None
Adds the specified space-expanded string to the item list. The first byte of the buffer is the length of the string. If the item_value
is longer than the item_length
, it will be truncated.
parameters
il:object
item listitem:int
item to additem_value:str
value to additem_length:int
length of the buffer (the resulting string length is one byte less)
returns
None
addstrn(il:object, item:int, item_value:str, item_length:int)->None
Adds the specified space-expanded string to the item list. If the item_value
is longer than the item_length
, it will be truncated.
parameters
il:object
item listitem:int
item to additem_value:str
value to additem_length:int
length of the buffer
returns
None
getstr(il:object, index:int, flag:int)->str
Gets the string at the specified index in the item list.
parameters
il:object
item listindex:int
index of the item to getflag:int
if set to1
, the first byte of the resulting string is the length of the string
returns
String
addbin(il:object, item:int, item_value:int, item_offset:int, item_len:int)->None
Adds a new binary item to the list. It will be interpreted as a string.
parameters
il:object
item listitem:int
item to additem_value:int
value to storeitem_offset:int
starting byteitem_len:int
amount of bytes
returns
None
getbyte(il:object, index:int, item_offset:int)->int
Gets the byte at the specified position in the item list.
parameters
il:object
item listindex:int
index of the itemitem_offset:int
starting byte
returns
Integer value of the specified byte
vms.lib
Provides functions from LIB$.
create_dir(name:str, uic:int, pe:int, pv:int)->int
Creates a directory.
parameters
name:str
name of the directory to be created (specified in OpenVMS style)uic:int
unsigned integer value of the owner UIC:None
- the current user0
- owner of the parent directory
pe:int
protection enable. See full documentation in the HP OpenVMS RTL Library(LIB$) Manual for LIB$CREATE_DIR.pv:int
protection value
returns
vms.ssdef.SS__CREATED
one or more directories createdvms.ssdef.SS__NORMAL
all specified directories already exist- another error. See in vms.ssdef