forked from P1sec/MCC_MNC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conv_pc_383.py
executable file
·72 lines (59 loc) · 1.92 KB
/
conv_pc_383.py
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
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
# /**
# * Software Name : MCC_MNC
# * Version : 0.2
# *
# * Copyright 2021. Benoit Michau. P1 Security.
# *
# * This program is free software: you can redistribute it and/or modify
# * it under the terms of the GNU Affero General Public License as
# * published by the Free Software Foundation, either version 3 of the
# * License, or (at your option) any later version.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# * GNU Affero General Public License for more details.
# *
# * You should have received a copy of the GNU Affero General Public License
# * along with this program. If not, see <https://www.gnu.org/licenses/>.
# *
# *--------------------------------------------------------
# * File Name : conv_pc_383.py
# * Created : 2021-04-08
# * Authors : Benoit Michau
# *--------------------------------------------------------
# */
__all__ = ['conv_pc_383']
import sys
def conv_pc_383(pcval):
if '-' in pcval:
pc_comps = pcval.split('-')
return (int(pc_comps[0])<<11) + \
(int(pc_comps[1])<<3) + \
int(pc_comps[2])
else:
pcint = int(pcval)
return '%i-%.3i-%i' % (
((pcint>>11) & 0x7),
((pcint>>3) & 0xff),
(pcint & 0x7) )
def help():
print('convert Point Code from 3-8-3 format to uint, and the opposite')
print('just pass your value in X-Y-Z format or plain integer as argument')
def main():
if len(sys.argv) < 2 or sys.argv[1] in ('-h', '--help'):
help()
return 0
#
try:
pcconv = conv_pc_383(sys.argv[1])
except Exception:
print('invalid arg')
help()
else:
print(pcconv)
return 0
if __name__ == '__main__':
sys.exit(main())