chiark / gitweb /
Remove trailing spaces and tabs
[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     lines = p.stdout.splitlines()
37     if len(lines) < 3:
38         return []
39     lines = lines[1:-1]
40     return [l.split()[0] for l in lines]
41
42
43 def main():
44
45     global options, config
46
47     # Parse command line...
48     parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
49     parser.add_option("-v", "--verbose", action="store_true", default=False,
50                       help="Spew out even more information than normal")
51     parser.add_option("-a", "--all", action="store_true", default=False,
52                       help="Install all signed applications available")
53     (options, args) = parser.parse_args()
54
55     if not args and not options.all:
56         raise OptionError("If you really want to install all the signed apps, use --all", "all")
57
58     config = common.read_config(options)
59
60     output_dir = 'repo'
61     if not os.path.isdir(output_dir):
62         print "No signed output directory - nothing to do"
63         sys.exit(0)
64
65     if args:
66
67         vercodes = common.read_pkg_args(args, True)
68         apks = { appid : None for appid in vercodes }
69
70         # Get the signed apk with the highest vercode
71         for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
72
73             appid, vercode = common.apknameinfo(apkfile)
74             if appid not in apks:
75                 continue
76             if vercodes[appid] and vercode not in vercodes[appid]:
77                 continue
78             apks[appid] = apkfile
79
80         for appid, apk in apks.iteritems():
81             if not apk:
82                 raise Exception("No signed apk available for %s" % appid)
83
84     else:
85
86         apks = { common.apknameinfo(apkfile)[0] : apkfile for apkfile in
87                 sorted(glob.glob(os.path.join(output_dir, '*.apk'))) }
88
89     for appid, apk in apks.iteritems():
90         # Get device list each time to avoid device not found errors
91         devs = devices()
92         if not devs:
93             raise Exception("No attached devices found")
94         print "Installing %s..." % apk
95         for dev in devs:
96             print "Installing %s on %s..." % (apk, dev)
97             p = FDroidPopen(["adb", "-s", dev, "install", apk ])
98             fail= ""
99             for line in p.stdout.splitlines():
100                 if line.startswith("Failure"):
101                     fail = line[9:-1]
102             if fail:
103                 if fail == "INSTALL_FAILED_ALREADY_EXISTS":
104                     print "%s is already installed on %s." % (apk, dev)
105                 else:
106                     raise Exception("Failed to install %s on %s: %s" % (
107                         apk, dev, fail))
108
109     print "\nFinished"
110
111 if __name__ == "__main__":
112     main()
113