5a9fae1c922447728b1d6d23a5f7fddba15ea455
[rusty/samba.git] / source4 / scripting / python / samba / common.py
1 #!/usr/bin/env python
2 #
3 # Samba common functions
4 #
5 # Copyright (C) Matthieu Patou <mat@matws.net>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 def confirm(msg, forced = False, allow_all=False):
22     """confirm an action with the user
23         :param msg: A string to print to the user
24         :param forced: Are the answer forced
25     """
26     if forced:
27         print("%s [YES]" % msg)
28         return True
29
30     mapping = {
31         'Y': True,
32         'YES': True,
33         '': False,
34         'N': False,
35         'NO': False,
36         }
37
38     prompt = '[y/N]'
39
40     if allow_all:
41         mapping['ALL'] = 'ALL'
42         mapping['NONE'] = 'NONE'
43         prompt = '[y/N/all/none]'
44
45     while True:
46         v = raw_input(msg + ' %s ' % prompt)
47         v = v.upper()
48         if v in mapping:
49             return mapping[v]
50         print("Unknown response '%s'" % v)
51
52
53 def normalise_int32(ivalue):
54     '''normalise a ldap integer to signed 32 bit'''
55     if int(ivalue) & 0x80000000 and int(ivalue) > 0:
56         return str(int(ivalue) - 0x100000000)
57     return str(ivalue)