chiark / gitweb /
Use OptionError exceptions
[fdroidserver.git] / fdroidserver / install.py
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # verify.py - part of the FDroid server tools
5 # Copyright (C) 2013, Ciaran Gultnieks, ciaran@ciarang.com
6 # Copyright (C) 2013 Daniel Martí <mvdan@mvdan.cc>
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU Affero General Public License for more details.
17 #
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 import sys
22 import os
23 import glob
24 from optparse import OptionParser, OptionError
25
26 import common
27 from common import FDroidPopen
28
29 options = None
30 config = None
31
32 def devices():
33     p = FDroidPopen(["adb", "devices"])
34     if p.returncode != 0:
35         raise Exception("An error occured when finding devices: %s" % p.stderr)
36     return [l.split()[0] for l in p.stdout.splitlines()[1:-1]]
37
38
39 def main():
40
41     global options, config
42
43     # Parse command line...
44     parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
45     parser.add_option("-v", "--verbose", action="store_true", default=False,
46                       help="Spew out even more information than normal")
47     parser.add_option("-a", "--all", action="store_true", default=False,
48                       help="Install all signed applications available")
49     (options, args) = parser.parse_args()
50
51     if not args and not options.all:
52         raise OptionError("If you really want to install all the signed apps, use --all", "all")
53
54     config = common.read_config(options)
55
56     output_dir = 'repo'
57     if not os.path.isdir(output_dir):
58         print "No signed output directory - nothing to do"
59         sys.exit(0)
60
61     if args:
62
63         vercodes = common.read_pkg_args(args, True)
64         apks = { appid : None for appid in vercodes }
65
66         # Get the signed apk with the highest vercode
67         for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
68
69             appid, vercode = common.apknameinfo(apkfile)
70             if appid not in apks:
71                 continue
72             if vercodes[appid] and vercode not in vercodes[appid]:
73                 continue
74             apks[appid] = apkfile
75
76         for appid, apk in apks.iteritems():
77             if not apk:
78                 raise Exception("No signed apk available for %s" % appid)
79
80     else:
81
82         apks = { common.apknameinfo(apkfile)[0] : apkfile for apkfile in
83                 sorted(glob.glob(os.path.join(output_dir, '*.apk'))) }
84     
85     for appid, apk in apks.iteritems():
86         # Get device list each time to avoid device not found errors
87         devs = devices()
88         if not devs:
89             raise Exception("No attached devices found")
90         print "Installing %s..." % apk
91         for dev in devs:
92             print "Installing %s on %s..." % (apk, dev)
93             p = FDroidPopen(["adb", "-s", dev, "install", apk ])
94             fail= ""
95             for line in p.stdout.splitlines():
96                 if line.startswith("Failure"):
97                     fail = line[9:-1]
98             if fail:
99                 if fail == "INSTALL_FAILED_ALREADY_EXISTS":
100                     print "%s is already installed on %s." % (apk, dev)
101                 else:
102                     raise Exception("Failed to install %s on %s: %s" % (
103                         apk, dev, fail))
104
105     print "\nFinished"
106
107 if __name__ == "__main__":
108     main()
109