File "shared_memory.cpython-39.pyc"

Full Path: /home/attunedd/public_html/byp/izo/con7ext_sym404/rintoar.txt/opt/alt/python39/lib64/python3.9/multiprocessing/__pycache__/shared_memory.cpython-39.pyc
File size: 14.12 KB
MIME-type: text/x-bytecode.python
Charset: 8 bit

a

XC?hG@sdZddgZddlmZddlZddlZddlZddlZddlZddl	Z	ej
dkr`ddlZdZnddl
Z
dZejejBZd	Zerd
ZndZdd
ZGdddZdZGdddZdS)zProvides shared memory for direct access across processes.

The API of this package is currently provisional. Refer to the
documentation for details.
SharedMemory
ShareableList)partialNntFTz/psm_Zwnsm_cCsBtttd}|dks Jdtt|}t|tks>J|S)z6Create a random filename for the shared memory object.z_SHM_NAME_PREFIX too long)_SHM_SAFE_NAME_LENGTHlen_SHM_NAME_PREFIXsecretsZ	token_hex)nbytesnamerB/opt/alt/python39/lib64/python3.9/multiprocessing/shared_memory.py_make_filename's
rc@seZdZdZdZdZdZdZej	Z
dZer.dndZ
ddd	Zd
dZdd
ZddZeddZeddZeddZddZddZdS)raCreates a new shared memory block or attaches to an existing
    shared memory block.

    Every shared memory block is assigned a unique name.  This enables
    one process to create a shared memory block with a particular name
    so that a different process can attach to that same shared memory
    block using that same name.

    As a resource for sharing data across processes, shared memory blocks
    may outlive the original process that created them.  When one process
    no longer needs access to a shared memory block that might still be
    needed by other processes, the close() method should be called.
    When a shared memory block is no longer needed by any process, the
    unlink() method should be called to ensure proper cleanup.NiTFrc
	Cs|dkstd|r0ttjB|_|dkr0td|durL|jtj@sLtdtrD|durt}ztj	||j|j
d|_WntyYqZYn0||_
qqZn.|jrd|n|}tj	||j|j
d|_||_
z<|r|rt|j|t|j}|j}t|j||_Wnty&|Yn0ddlm}||j
d	n*|r|durZtn|}ttjtjtj|d
?d@|d@|}zjt}|tjkr|durttj t!tj |tjnWt"|qJtjd||d
|_Wt"|nt"|0||_
qnqJnb||_
t#tj$d|}z"t%|tj$ddd}	Wt"|nt"|0t&|	}tjd||d
|_||_'t(|j|_)dS)Nrz!'size' must be a positive integerz4'size' must be a positive number different from zeroz&'name' can only be None if create=True)mode/)register
shared_memory lr)ZtagnameF)*
ValueError_O_CREXosO_RDWR_flagsO_EXCL
_USE_POSIXr_posixshmemZshm_open_mode_fdFileExistsError_name_prepend_leading_slash	ftruncatefstatst_sizemmap_mmapOSErrorunlinkresource_trackerr_winapiZCreateFileMappingZINVALID_HANDLE_VALUEZNULLZPAGE_READWRITEZGetLastErrorZERROR_ALREADY_EXISTSerrnoZEEXISTstrerrorZCloseHandleZOpenFileMappingZ
FILE_MAP_READZ
MapViewOfFileZVirtualQuerySize_size
memoryview_buf)
selfr
createsizeZstatsrZ	temp_nameZh_mapZlast_error_codeZp_bufrrr__init__Js






zSharedMemory.__init__cCs$z|WntyYn0dSN)closer*r3rrr__del__szSharedMemory.__del__cCs|j|jd|jffS)NF)	__class__r
r5r9rrr
__reduce__szSharedMemory.__reduce__cCs|jjd|jd|jdS)N(z, size=))r;__name__r
r5r9rrr__repr__szSharedMemory.__repr__cCs|jS)z4A memoryview of contents of the shared memory block.)r2r9rrrbufszSharedMemory.bufcCs.|j}tr*|jr*|jdr*|jdd}|S)z4Unique name that identifies the shared memory block.rrN)r#rr$
startswith)r3Z
reported_namerrrr
s

zSharedMemory.namecCs|jS)zSize in bytes.)r0r9rrrr5szSharedMemory.sizecCsX|jdur|jd|_|jdur4|jd|_trT|jdkrTt|jd|_dS)zkCloses access to the shared memory from this instance but does
        not destroy the shared memory block.Nrr)r2releaser)r8rr!rr9rrrr8s



zSharedMemory.closecCs2tr.|jr.ddlm}t|j||jddS)zRequests that the underlying shared memory block be destroyed.

        In order to ensure proper cleanup of resources, unlink should be
        called once (and only once) across all processes which have access
        to the shared memory block.r)
unregisterrN)rr#r,rDrZ
shm_unlink)r3rDrrrr+s
zSharedMemory.unlink)NFr)r?
__module____qualname____doc__r#r!r)r2rrrr rr$r6r:r<r@propertyrAr
r5r8r+rrrrr1s(
l




utf8c@seZdZdZedededededdj	diZ
dZd	d
dd
dd
d
d
dZe
ddZd6ddddZddZddZddZddZddZddZd d!Zd"d#Zed$d%Zed&d'Zed(d)Zed*d+Zed,d-Zed.d/Zed0d1Zd2d3Z d4d5Z!e"e#j$Z%dS)7raPattern for a mutable list-like object shareable via a shared
    memory block.  It differs from the built-in list type in that these
    lists can not change their overall length (i.e. no append, insert,
    etc.)

    Because values are packed into a memoryview as bytes, the struct
    packing format for any storable value must require no more than 8
    characters to describe its format.qdzxxxxxxx?z%dsNzxxxxxx?xcCs|Sr7rvaluerrr<lambda>zShareableList.<lambda>cCs|dtSN)rstripdecode	_encodingrMrrrrOrPcCs
|dSrQ)rSrMrrrrOrPcCsdSr7r)Z_valuerrrrOrP)rrrcCs:t|ttdjfsdSt|tr$dSt|tr2dSdSdS)zUsed in concert with _back_transforms_mapping to convert values
        into the appropriate Python objects when retrieving them from
        the list as well as when storing them.NrrrrV)
isinstancestrbytesr;rMrrr_extract_recreation_codes

z&ShareableList._extract_recreation_coder
cs|dus|dur|pd}fdd|D}t|_tdd|DjksPJd}dg_|D]6}||ddkrxjnt|dd7}j|q`fd	d|D}td
j	d
|jj}t
|d|d
_n
t
|_|durttjd
j	jjdjgjRtjd
|jjjgfdd|DRtjjjjjgfdd|DRtjjjjjg|Rn$t_ttj	jjd_dS)NrcsPg|]H}t|ttfs$jt|n&jt|jt|jdfqS)r)rWrXrY_types_mappingtype
_alignmentr	.0itemr9rr
<listcomp>+sz*ShareableList.__init__.<locals>.<listcomp>css|]}t|dkVqdS)rLN)r	)r`fmtrrr	<genexpr>4rPz)ShareableList.__init__.<locals>.<genexpr>rrscsg|]}|qSr)rZr_r9rrrb=srJT)r4r5c3s&|]}t|tr|n|VqdSr7)rWrXencoder`v_encrrrdXrPc3s|]}|VqdSr7)rgrhrjrrrd^rPrL)r		_list_lensum_allocated_offsetsr^intappendstructZcalcsize_format_size_metainfojoin_format_packing_metainfo_format_back_transform_codesrshmrU	pack_intorA_offset_data_start_offset_packing_formats_offset_back_transform_codeslistunpack_from)r3Zsequencer
Z_formatsoffsetrcZ_recreation_codesZrequested_sizer)rkr3rr6(s

&




zShareableList.__init__cCsj|dkr|n||j}||jks*|jdkr2tdtd|jj|j|dd}|d}|t	}|S)z>Gets the packing format for a single value stored in the list.r Requested position out of range.8srLrR)
rl
IndexErrorrqr|rvrAryrSrTrU)r3positionrirc
fmt_as_strrrr_get_packing_formatqs

z!ShareableList._get_packing_formatcCsF||jks|jdkrtdtd|jj|j|d}|j|}|S)z9Gets the back transformation function for a single value.rr~b)rlrrqr|rvrArz_back_transforms_mapping)r3rtransform_codeZtransform_functionrrr_get_back_transforms
z!ShareableList._get_back_transformcCsh||jks|jdkrtdtd|jj|j|d|t|	|}td|jj|j
||dS)zvSets the packing format and back transformation code for a
        single value in the list at the specified position.rr~rrLrN)rlrrqrwrvrAryrgrUrZrz)r3rrrNrrrr!_set_packing_format_and_transforms
z/ShareableList._set_packing_format_and_transformcCsv|dkr|n||j}z.|j|j|}t|||jj|\}Wnty^tdYn0|	|}||}|S)Nrzindex out of range)
rlrxrnrqr|rrvrArr)r3rr}riZback_transformrrr__getitem__s

zShareableList.__getitem__c	Cs|dkr|n||j}z"|j|}|j|}||}WntyRtdYn0t|ttfsv|jt	|}|}n`|j|d|}t|tr|
tn|}t||krt
d|ddkr|}n|jt|f}||||t||jj||dS)Nrzassignment index out of rangerz(bytes/str item exceeds available storagerre)rlrnrxrrrWrXrYr\r]rgrUr	rrrqrwrvrA)	r3rrNZitem_offsetr}Zcurrent_formatZ
new_formatZ
encoded_valueZallocated_lengthrrr__setitem__s8

zShareableList.__setitem__cCst|j|jjddfS)Nr[r)rr;rvr
r9rrrr<szShareableList.__reduce__cCstd|jjddS)NrJr)rqr|rvrAr9rrr__len__szShareableList.__len__cCs"|jjdt|d|jjdS)Nr=z, name=r>)r;r?r{rvr
r9rrrr@szShareableList.__repr__csdfddtjDS)z=The struct packing format used by all currently stored items.rfc3s|]}|VqdSr7)r)r`ir9rrrdsz'ShareableList.format.<locals>.<genexpr>)rsrangerlr9rr9rformatszShareableList.formatcCsd|jdS)z>The struct packing format used for the items' storage offsets.rJrrlr9rrrrrsz#ShareableList._format_size_metainfocCs
d|jS)z>The struct packing format used for the items' packing formats.rrr9rrrrtsz&ShareableList._format_packing_metainfocCs
d|jS)z>The struct packing format used for the items' back transforms.rrr9rrrrusz*ShareableList._format_back_transform_codescCs|jddS)NrrLrr9rrrrxsz ShareableList._offset_data_startcCs|j|jdS)Nr)rxrnr9rrrrysz%ShareableList._offset_packing_formatscCs|j|jdS)NrL)ryrlr9rrrrzsz*ShareableList._offset_back_transform_codescstfdd|DS)zCL.count(value) -> integer -- return number of occurrences of value.c3s|]}|kVqdSr7r)r`entryrMrrrdrPz&ShareableList.count.<locals>.<genexpr>)rm)r3rNrrMrcountszShareableList.countcCs4t|D]\}}||kr|Sqt|ddS)zpL.index(value) -> integer -- return first index of value.
        Raises ValueError if the value is not present.z not in this containerN)	enumerater)r3rNrrrrrindex
s
zShareableList.index)N)&r?rErFrGrofloatboolrXrYr;r\r^rstaticmethodrZr6rrrrrr<rr@rHrrrrtrurxryrzrrclassmethodtypesGenericAlias__class_getitem__rrrrrsT

I!







)rG__all__	functoolsrr(rr.rqrrr
r-rrO_CREATrrrr
rrrUrrrrr<module>s.

E