8.37. platformids.custom.slackware¶
Module Slackware [doc].
8.37.1. Module¶
Slackware releases.
Use standard encoding, thus require enum value registration only. Here a custom call is presented for demo purposes.
8.37.2. Data¶
8.37.2.2. rte2num¶
Mapping of the rte string and numeric representation to the numeric value.
8.37.2.3. num2rte¶
Mapping of the rte numeric representation to the string value.
8.37.2.4. num2pretty¶
Mapping of the rte numeric representation to the pretty string value.
8.37.2.5. custom_rte_distrel2tuple¶
Registered callbacks for special handling of custom layout.
custom_rte_distrel2tuple.update(
{
RTE_PENTOO: my_distrel2tuple, #: the callback to be registered
}
)
8.37.3. Functions¶
8.37.3.1. my_distrel2tuple¶
-
platformids.custom.slackware.
my_distrel2tuple
(rte=276917248)[source]¶ A custom example only - standard encoding is default layout.
Convert the Slackware specific distrel version layout to a tuple.
A callback to be used by the function:
platformids.decode_rte_distrel_to_segments(rte=RTE)
Decodes the compressed distrel from the 32bit integer bitmask rte into the corresponding tuple of integer segments.
- Parameters
rte –
The comppressed runtime environment identifier bitmask.
default := RTE
- Returns
Tuple of Integer values of the encoded segments, either as defined by the default layout, or any known as defined by additional extended and/or custom criteria.
- Raises
pass-through –
Examples
decode_rte_distrel_to_segments() => (14, 1, 0) # on Slackware-14.1
8.37.4. Source¶
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | # -*- coding: utf-8 -*-
"""Slackware releases.
Use standard encoding, thus require enum value registration only.
Here a custom call is presented for demo purposes.
"""
from __future__ import absolute_import
from platformids import rte2num, num2rte, custom_dist, \
RTE_LINUX, RTE_OSTYPE, RTE_DIST, \
RTE, PlatformIDsUnknownError, \
custom_rte_distrel2tuple
__author__ = 'Arno-Can Uestuensoez'
__license__ = "Artistic-License-2.0 + Forced-Fairplay-Constraints"
__copyright__ = "Copyright (C) 2010-2018 Arno-Can Uestuensoez" \
" @Ingenieurbuero Arno-Can Uestuensoez"
__version__ = '0.1.1'
__uuid__ = "7add5ded-c39b-4b6e-8c87-1b3a1c150ee9"
RTE_SLACK = RTE_LINUX + custom_dist.add_enum() #: Scientific Linux
#: mapping of the rte string and numeric representation to the numeric value
rte2num.update(
{
'slackware': RTE_SLACK,
RTE_SLACK: RTE_SLACK,
}
)
#: mapping of the rte numeric representation to the string value
num2rte.update(
{
RTE_SLACK: 'slackware',
}
)
#-----------------------------------------------#
# #
# optional constants for convenience #
# #
#-----------------------------------------------#
RTE_SLACK14 = RTE_SLACK + 0x00003800 #: Slackware-14
RTE_SLACK140 = RTE_SLACK + 0x00003800 #: Slackware-14.0
RTE_SLACK141 = RTE_SLACK + 0x00003820 #: Slackware-14.1
RTE_SLACK142 = RTE_SLACK + 0x00003840 #: Slackware-14.2
#: mapping of the rte string and numeric representation to the numeric value
rte2num.update(
{
'slackware14': RTE_SLACK14,
'slackware140': RTE_SLACK140,
'slackware141': RTE_SLACK141,
'slackware142': RTE_SLACK142,
RTE_SLACK14: RTE_SLACK14,
RTE_SLACK140: RTE_SLACK140,
RTE_SLACK141: RTE_SLACK141,
RTE_SLACK142: RTE_SLACK142,
}
)
#: mapping of the rte numeric representation to the string value
num2rte.update(
{
RTE_SLACK14: 'slackware14',
RTE_SLACK140: 'slackware140',
RTE_SLACK141: 'slackware141',
RTE_SLACK142: 'slackware142',
}
)
def my_distrel2tuple(rte=RTE):
"""
A custom example only - standard encoding is default layout.
Convert the *Slackware* specific *distrel* version layout
to a tuple.
A callback to be used by the function:
platformids.decode_rte_distrel_to_segments(rte=RTE)
Decodes the compressed *distrel* from the 32bit integer
bitmask *rte* into the corresponding tuple of integer
segments.
Args:
rte:
The comppressed runtime environment identifier bitmask.
default := RTE
Returns:
Tuple of Integer values of the encoded segments, either
as defined by the default layout, or any known as defined
by additional extended and/or custom criteria.
Raises:
pass-through
Examples:
::
decode_rte_distrel_to_segments()
=> (14, 1, 0) # on Slackware-14.1
"""
if rte & RTE_OSTYPE != RTE_LINUX:
raise PlatformIDsUnknownError("Not Linux: rte = " + str(rte))
if rte & RTE_DIST != RTE_SLACK:
raise PlatformIDsUnknownError("Not Slackware: rte = " + str(rte))
try:
_rte = rte2num[rte]
except KeyError:
# non-registered release
if type(_rte) is int:
# can split basically any number, let's see...
_rte = rte
else:
raise PlatformIDsUnknownError("Unknown Slackware release rte = " + str(rte))
# here same as the default handler
return (
(_rte & 0xfc00) >> 10,
(_rte & 0x03e0) >> 5,
_rte & 0x001f,
)
#: registered callbacks for special handling of custom layout
custom_rte_distrel2tuple.update(
{
RTE_SLACK: my_distrel2tuple, #: the callback to be registered
}
)
|