/usr/lib/python2.7/dist-packages/ngs/Refcount.py is in python-ngs 1.2.3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | from ctypes import byref, c_void_p
from . import NGS
from .String import NGS_RawString
def RefcountRelease(ref):
"""Releases NGS-object imported from ngs-sdk
:param ref: reference to refcounted NGS-object to be released. It's expected to be of type c_void_p
:returns: None
:throws: ErrorMsg
"""
ngs_str_err = NGS_RawString()
try:
res = NGS.lib_manager.PY_NGS_RefcountRelease(ref, byref(ngs_str_err.ref))
finally:
ngs_str_err.close()
def RefcountRawStringRelease(ref):
"""Releases raw string imported from ngs-sdk
:param ref: reference to raw char string. It's expected to be of type c_char_p
:returns: None
:throws: ErrorMsg
"""
ngs_str_err = NGS_RawString()
try:
res = NGS.lib_manager.PY_NGS_RawStringRelease(ref, byref(ngs_str_err.ref))
finally:
ngs_str_err.close()
# def RefcountEngineRelease(ref):
# """Releases NGS-object imported from ngs engine
# :param ref: reference to refcounted NGS-object to be released. It's expected to be of type c_void_p
# :returns: None
# :throws: ErrorMsg
# """
# with NGSEngine_String() as ngs_str_err:
# res = NGS.lib_manager.PY_NGS_Engine_RefcountRelease(ref, byref(ngs_str_err.ref))
# check_res(res, ngs_str_err)
class Refcount:
""" Base class for all refcounted objects imported from ngs-sdk
"""
def __init__(self):
self.init_members_with_null()
def __del__(self):
self.close()
def __enter__(self):
return self
def __exit__(self, t, value, traceback):
self.close()
def close(self):
if self.ref:
RefcountRelease(self.ref)
self.init_members_with_null()
def init_members_with_null(self):
self.ref = c_void_p()
|