1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-19 13:20:10 +01:00
fdroidserver/fdroidserver/common.py

1825 lines
65 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
#
# common.py - part of the FDroid server tools
# Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
2014-01-28 14:07:19 +01:00
# Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
#
# 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 <http://www.gnu.org/licenses/>.
import os
import sys
import re
import shutil
import glob
import stat
import subprocess
import time
import operator
import Queue
import threading
import magic
2014-01-27 15:59:40 +01:00
import logging
from distutils.version import LooseVersion
import metadata
config = None
options = None
env = None
default_config = {
'sdk_path': "$ANDROID_HOME",
'ndk_path': "$ANDROID_NDK",
2014-10-22 15:01:01 +02:00
'build_tools': "21.0.2",
'ant': "ant",
'mvn3': "mvn",
'gradle': 'gradle',
'sync_from_local_copy_dir': False,
'update_stats': False,
'stats_ignore': [],
'stats_server': None,
'stats_user': None,
'stats_to_carbon': False,
'repo_maxage': 0,
'build_server_always': False,
'keystore': os.path.join("$HOME", '.local', 'share', 'fdroidserver', 'keystore.jks'),
'smartcardoptions': [],
'char_limits': {
'Summary': 50,
'Description': 1500
},
'keyaliases': {},
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",
'repo_name': "My First FDroid Repo Demo",
'repo_icon': "fdroid-icon.png",
'repo_description': '''
This is a repository of apps to be used with FDroid. Applications in this
repository are either official binaries built by the original application
developers, or are binaries built from source by the admin of f-droid.org
using the tools on https://gitlab.com/u/fdroid.
''',
'archive_older': 0,
}
def fill_config_defaults(thisconfig):
for k, v in default_config.items():
if k not in thisconfig:
thisconfig[k] = v
# Expand paths (~users and $vars)
for k in ['sdk_path', 'ndk_path', 'ant', 'mvn3', 'gradle', 'keystore', 'repo_icon']:
v = thisconfig[k]
orig = v
v = os.path.expanduser(v)
v = os.path.expandvars(v)
if orig != v:
thisconfig[k] = v
thisconfig[k + '_orig'] = orig
2013-11-04 10:22:22 +01:00
def read_config(opts, config_file='config.py'):
"""Read the repository config
2013-11-04 10:22:22 +01:00
The config is read from config_file, which is in the current directory when
any of the repo management commands are used.
"""
global config, options, env
if config is not None:
return config
2013-11-04 10:22:22 +01:00
if not os.path.isfile(config_file):
2014-01-27 15:59:40 +01:00
logging.critical("Missing config file - is this a repo directory?")
sys.exit(2)
options = opts
config = {}
2014-03-18 12:20:51 +01:00
logging.debug("Reading %s" % config_file)
execfile(config_file, config)
# smartcardoptions must be a list since its command line args for Popen
if 'smartcardoptions' in config:
config['smartcardoptions'] = config['smartcardoptions'].split(' ')
elif 'keystore' in config and config['keystore'] == 'NONE':
# keystore='NONE' means use smartcard, these are required defaults
config['smartcardoptions'] = ['-storetype', 'PKCS11', '-providerName',
'SunPKCS11-OpenSC', '-providerClass',
'sun.security.pkcs11.SunPKCS11',
'-providerArg', 'opensc-fdroid.cfg']
if any(k in config for k in ["keystore", "keystorepass", "keypass"]):
st = os.stat(config_file)
if st.st_mode & stat.S_IRWXG or st.st_mode & stat.S_IRWXO:
logging.warn("unsafe permissions on {0} (should be 0600)!".format(config_file))
fill_config_defaults(config)
if not test_sdk_exists(config):
sys.exit(3)
if not test_build_tools_exists(config):
sys.exit(3)
bin_paths = {
'aapt': [
os.path.join(config['sdk_path'], 'build-tools', config['build_tools'], 'aapt'),
2014-07-03 00:31:10 +02:00
],
'zipalign': [
os.path.join(config['sdk_path'], 'tools', 'zipalign'),
os.path.join(config['sdk_path'], 'build-tools', config['build_tools'], 'zipalign'),
],
'android': [
os.path.join(config['sdk_path'], 'tools', 'android'),
],
2014-07-03 18:21:33 +02:00
'adb': [
os.path.join(config['sdk_path'], 'platform-tools', 'adb'),
],
}
for b, paths in bin_paths.items():
config[b] = None
for path in paths:
if os.path.isfile(path):
config[b] = path
break
if config[b] is None:
logging.warn("Could not find %s in any of the following paths:\n%s" % (
b, '\n'.join(paths)))
# There is no standard, so just set up the most common environment
# variables
env = os.environ
for n in ['ANDROID_HOME', 'ANDROID_SDK']:
env[n] = config['sdk_path']
for n in ['ANDROID_NDK', 'NDK']:
env[n] = config['ndk_path']
for k in ["keystorepass", "keypass"]:
if k in config:
write_password_file(k)
for k in ["repo_description", "archive_description"]:
if k in config:
config[k] = clean_description(config[k])
if 'serverwebroot' in config:
if isinstance(config['serverwebroot'], basestring):
roots = [config['serverwebroot']]
elif all(isinstance(item, basestring) for item in config['serverwebroot']):
roots = config['serverwebroot']
else:
raise TypeError('only accepts strings, lists, and tuples')
rootlist = []
for rootstr in roots:
# since this is used with rsync, where trailing slashes have
# meaning, ensure there is always a trailing slash
if rootstr[-1] != '/':
rootstr += '/'
rootlist.append(rootstr.replace('//', '/'))
config['serverwebroot'] = rootlist
return config
def test_sdk_exists(thisconfig):
if thisconfig['sdk_path'] == default_config['sdk_path']:
logging.error('No Android SDK found!')
2014-07-03 00:43:03 +02:00
logging.error('You can use ANDROID_HOME to set the path to your SDK, i.e.:')
logging.error('\texport ANDROID_HOME=/opt/android-sdk')
return False
if not os.path.exists(thisconfig['sdk_path']):
logging.critical('Android SDK path "' + thisconfig['sdk_path'] + '" does not exist!')
return False
if not os.path.isdir(thisconfig['sdk_path']):
logging.critical('Android SDK path "' + thisconfig['sdk_path'] + '" is not a directory!')
return False
for d in ['build-tools', 'platform-tools', 'tools']:
if not os.path.isdir(os.path.join(thisconfig['sdk_path'], d)):
logging.critical('Android SDK path "%s" does not contain "%s/"!' % (
thisconfig['sdk_path'], d))
return False
return True
def test_build_tools_exists(thisconfig):
if not test_sdk_exists(thisconfig):
return False
build_tools = os.path.join(thisconfig['sdk_path'], 'build-tools')
versioned_build_tools = os.path.join(build_tools, thisconfig['build_tools'])
if not os.path.isdir(versioned_build_tools):
logging.critical('Android Build Tools path "'
+ versioned_build_tools + '" does not exist!')
return False
return True
def write_password_file(pwtype, password=None):
'''
writes out passwords to a protected file instead of passing passwords as
command line argments
'''
filename = '.fdroid.' + pwtype + '.txt'
fd = os.open(filename, os.O_CREAT | os.O_TRUNC | os.O_WRONLY, 0600)
if password is None:
os.write(fd, config[pwtype])
else:
os.write(fd, password)
os.close(fd)
config[pwtype + 'file'] = filename
# Given the arguments in the form of multiple appid:[vc] strings, this returns
# a dictionary with the set of vercodes specified for each package.
def read_pkg_args(args, allow_vercodes=False):
vercodes = {}
if not args:
return vercodes
for p in args:
2013-12-11 19:37:38 +01:00
if allow_vercodes and ':' in p:
package, vercode = p.split(':')
else:
package, vercode = p, None
if package not in vercodes:
vercodes[package] = [vercode] if vercode else []
continue
2013-12-11 19:37:38 +01:00
elif vercode and vercode not in vercodes[package]:
vercodes[package] += [vercode] if vercode else []
return vercodes
# On top of what read_pkg_args does, this returns the whole app metadata, but
# limiting the builds list to the builds matching the vercodes specified.
def read_app_args(args, allapps, allow_vercodes=False):
vercodes = read_pkg_args(args, allow_vercodes)
if not vercodes:
return allapps
apps = {}
for appid, app in allapps.iteritems():
if appid in vercodes:
apps[appid] = app
if len(apps) != len(vercodes):
for p in vercodes:
2014-08-25 00:27:46 +02:00
if p not in allapps:
2014-01-27 15:59:40 +01:00
logging.critical("No such package: %s" % p)
raise FDroidException("Found invalid app ids in arguments")
2014-02-15 00:40:25 +01:00
if not apps:
raise FDroidException("No packages specified")
error = False
for appid, app in apps.iteritems():
vc = vercodes[appid]
if not vc:
continue
app['builds'] = [b for b in app['builds'] if b['vercode'] in vc]
if len(app['builds']) != len(vercodes[appid]):
error = True
allvcs = [b['vercode'] for b in app['builds']]
for v in vercodes[appid]:
if v not in allvcs:
logging.critical("No such vercode %s for app %s" % (v, appid))
if error:
raise FDroidException("Found invalid vercodes for some apps")
return apps
def has_extension(filename, extension):
name, ext = os.path.splitext(filename)
ext = ext.lower()[1:]
return ext == extension
apk_regex = None
def clean_description(description):
'Remove unneeded newlines and spaces from a block of description text'
returnstring = ''
# this is split up by paragraph to make removing the newlines easier
for paragraph in re.split(r'\n\n', description):
paragraph = re.sub('\r', '', paragraph)
paragraph = re.sub('\n', ' ', paragraph)
paragraph = re.sub(' {2,}', ' ', paragraph)
paragraph = re.sub('^\s*(\w)', r'\1', paragraph)
returnstring += paragraph + '\n\n'
return returnstring.rstrip('\n')
def apknameinfo(filename):
global apk_regex
filename = os.path.basename(filename)
if apk_regex is None:
2013-12-22 12:27:26 +01:00
apk_regex = re.compile(r"^(.+)_([0-9]+)\.apk$")
m = apk_regex.match(filename)
try:
result = (m.group(1), m.group(2))
except AttributeError:
raise FDroidException("Invalid apk name: %s" % filename)
return result
def getapkname(app, build):
return "%s_%s.apk" % (app['id'], build['vercode'])
def getsrcname(app, build):
return "%s_%s_src.tar.gz" % (app['id'], build['vercode'])
def getappname(app):
if app['Name']:
return app['Name']
if app['Auto Name']:
return app['Auto Name']
return app['id']
def getcvname(app):
return '%s (%s)' % (app['Current Version'], app['Current Version Code'])
def getvcs(vcstype, remote, local):
if vcstype == 'git':
return vcs_git(remote, local)
if vcstype == 'git-svn':
return vcs_gitsvn(remote, local)
if vcstype == 'hg':
return vcs_hg(remote, local)
if vcstype == 'bzr':
return vcs_bzr(remote, local)
if vcstype == 'srclib':
if local != os.path.join('build', 'srclib', remote):
raise VCSException("Error: srclib paths are hard-coded!")
return getsrclib(remote, os.path.join('build', 'srclib'), raw=True)
if vcstype == 'svn':
raise VCSException("Deprecated vcs type 'svn' - please use 'git-svn' instead")
2012-01-02 12:51:14 +01:00
raise VCSException("Invalid vcs type " + vcstype)
def getsrclibvcs(name):
2014-05-28 09:33:14 +02:00
if name not in metadata.srclibs:
2013-05-31 08:50:47 +02:00
raise VCSException("Missing srclib " + name)
return metadata.srclibs[name]['Repo Type']
class vcs:
def __init__(self, remote, local):
# svn, git-svn and bzr may require auth
self.username = None
if self.repotype() in ('git-svn', 'bzr'):
if '@' in remote:
self.username, remote = remote.split('@')
if ':' not in self.username:
raise VCSException("Password required with username")
self.username, self.password = self.username.split(':')
self.remote = remote
self.local = local
2014-07-02 17:21:45 +02:00
self.clone_failed = False
2012-01-23 15:15:40 +01:00
self.refreshed = False
2012-01-30 22:11:50 +01:00
self.srclib = None
2012-01-08 19:13:15 +01:00
def repotype(self):
return None
2012-01-23 15:15:40 +01:00
# Take the local repository to a clean version of the given revision, which
# is specificed in the VCS's native format. Beforehand, the repository can
# be dirty, or even non-existent. If the repository does already exist
# locally, it will be updated from the origin, but only once in the
# lifetime of the vcs object.
2012-02-05 12:02:01 +01:00
# None is acceptable for 'rev' if you know you are cloning a clean copy of
# the repo - otherwise it must specify a valid revision.
2012-01-23 15:15:40 +01:00
def gotorevision(self, rev):
2014-07-02 17:21:45 +02:00
if self.clone_failed:
raise VCSException("Downloading the repository already failed once, not trying again.")
# The .fdroidvcs-id file for a repo tells us what VCS type
# and remote that directory was created from, allowing us to drop it
# automatically if either of those things changes.
fdpath = os.path.join(self.local, '..',
'.fdroidvcs-' + os.path.basename(self.local))
cdata = self.repotype() + ' ' + self.remote
writeback = True
2013-06-05 13:54:47 +02:00
deleterepo = False
if os.path.exists(self.local):
if os.path.exists(fdpath):
with open(fdpath, 'r') as f:
fsdata = f.read().strip()
if fsdata == cdata:
writeback = False
else:
2013-06-05 13:54:47 +02:00
deleterepo = True
logging.info(
2014-07-03 00:43:03 +02:00
"Repository details for %s changed - deleting" % (
self.local))
2013-06-05 13:54:47 +02:00
else:
deleterepo = True
2014-07-03 00:43:03 +02:00
logging.info("Repository details for %s missing - deleting" % (
self.local))
2013-06-05 13:54:47 +02:00
if deleterepo:
shutil.rmtree(self.local)
exc = None
try:
self.gotorevisionx(rev)
except FDroidException, e:
exc = e
# If necessary, write the .fdroidvcs file.
if writeback and not self.clone_failed:
with open(fdpath, 'w') as f:
f.write(cdata)
if exc is not None:
raise exc
# Derived classes need to implement this. It's called once basic checking
# has been performend.
def gotorevisionx(self, rev):
raise VCSException("This VCS type doesn't define gotorevisionx")
# Initialise and update submodules
def initsubmodules(self):
2012-01-23 15:15:40 +01:00
raise VCSException('Submodules not supported for this vcs type')
2012-08-23 15:25:39 +02:00
# Get a list of all known tags
def gettags(self):
raise VCSException('gettags not supported for this vcs type')
# Get a list of latest number tags
def latesttags(self, number):
raise VCSException('latesttags not supported for this vcs type')
2013-10-17 23:27:55 +02:00
# Get current commit reference (hash, revision, etc)
def getref(self):
raise VCSException('getref not supported for this vcs type')
2012-01-30 22:11:50 +01:00
# Returns the srclib (name, path) used in setting up the current
# revision, or None.
def getsrclib(self):
return self.srclib
class vcs_git(vcs):
def repotype(self):
return 'git'
2012-01-23 15:15:40 +01:00
# If the local directory exists, but is somehow not a git repository, git
# will traverse up the directory tree until it finds one that is (i.e.
# fdroidserver) and then we'll proceed to destroy it! This is called as
2012-01-23 15:15:40 +01:00
# a safety check.
2012-01-08 14:43:59 +01:00
def checkrepo(self):
2014-02-17 13:12:25 +01:00
p = SilentPopen(['git', 'rev-parse', '--show-toplevel'], cwd=self.local)
result = p.output.rstrip()
if not result.endswith(self.local):
2012-01-08 14:43:59 +01:00
raise VCSException('Repository mismatch')
def gotorevisionx(self, rev):
2012-01-23 15:15:40 +01:00
if not os.path.exists(self.local):
2014-01-27 15:59:40 +01:00
# Brand new checkout
p = FDroidPopen(['git', 'clone', self.remote, self.local])
if p.returncode != 0:
2014-07-02 17:21:45 +02:00
self.clone_failed = True
raise VCSException("Git clone failed", p.output)
2012-01-23 15:15:40 +01:00
self.checkrepo()
else:
self.checkrepo()
2014-01-27 15:59:40 +01:00
# Discard any working tree changes
p = SilentPopen(['git', 'reset', '--hard'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git reset failed", p.output)
2012-01-23 15:15:40 +01:00
# Remove untracked files now, in case they're tracked in the target
2014-01-27 15:59:40 +01:00
# revision (it happens!)
p = SilentPopen(['git', 'clean', '-dffx'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git clean failed", p.output)
2012-01-23 15:15:40 +01:00
if not self.refreshed:
2014-01-27 15:59:40 +01:00
# Get latest commits and tags from remote
p = FDroidPopen(['git', 'fetch', 'origin'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git fetch failed", p.output)
p = SilentPopen(['git', 'fetch', '--prune', '--tags', 'origin'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git fetch failed", p.output)
# Recreate origin/HEAD as git clone would do it, in case it disappeared
p = SilentPopen(['git', 'remote', 'set-head', 'origin', '--auto'], cwd=self.local)
if p.returncode != 0:
lines = p.output.splitlines()
if 'Multiple remote HEAD branches' not in lines[0]:
raise VCSException("Git remote set-head failed", p.output)
branch = lines[1].split(' ')[-1]
p2 = SilentPopen(['git', 'remote', 'set-head', 'origin', branch], cwd=self.local)
if p2.returncode != 0:
raise VCSException("Git remote set-head failed", p.output + '\n' + p2.output)
2012-01-23 15:15:40 +01:00
self.refreshed = True
# origin/HEAD is the HEAD of the remote, e.g. the "default branch" on
# a github repo. Most of the time this is the same as origin/master.
rev = rev or 'origin/HEAD'
p = SilentPopen(['git', 'checkout', '-f', rev], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git checkout of '%s' failed" % rev, p.output)
2014-01-27 15:59:40 +01:00
# Get rid of any uncontrolled files left behind
p = SilentPopen(['git', 'clean', '-dffx'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git clean failed", p.output)
def initsubmodules(self):
2012-01-08 14:43:59 +01:00
self.checkrepo()
submfile = os.path.join(self.local, '.gitmodules')
if not os.path.isfile(submfile):
raise VCSException("No git submodules available")
# fix submodules not accessible without an account and public key auth
with open(submfile, 'r') as f:
lines = f.readlines()
with open(submfile, 'w') as f:
for line in lines:
if 'git@github.com' in line:
line = line.replace('git@github.com:', 'https://github.com/')
f.write(line)
2014-02-17 13:12:25 +01:00
for cmd in [
['git', 'reset', '--hard'],
['git', 'clean', '-dffx'],
]:
p = SilentPopen(['git', 'submodule', 'foreach', '--recursive'] + cmd, cwd=self.local)
if p.returncode != 0:
raise VCSException("Git submodule reset failed", p.output)
2014-07-09 19:15:39 +02:00
p = SilentPopen(['git', 'submodule', 'sync'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git submodule sync failed", p.output)
p = FDroidPopen(['git', 'submodule', 'update', '--init', '--force', '--recursive'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git submodule update failed", p.output)
2012-08-23 15:25:39 +02:00
def gettags(self):
self.checkrepo()
2014-02-17 13:12:25 +01:00
p = SilentPopen(['git', 'tag'], cwd=self.local)
return p.output.splitlines()
2012-08-23 15:25:39 +02:00
def latesttags(self, alltags, number):
self.checkrepo()
2014-06-26 12:52:16 +02:00
p = SilentPopen(['echo "' + '\n'.join(alltags) + '" | '
+ 'xargs -I@ git log --format=format:"%at @%n" -1 @ | '
+ 'sort -n | awk \'{print $2}\''],
cwd=self.local, shell=True)
return p.output.splitlines()[-number:]
class vcs_gitsvn(vcs):
def repotype(self):
return 'git-svn'
# Damn git-svn tries to use a graphical password prompt, so we have to
# trick it into taking the password from stdin
def userargs(self):
if self.username is None:
return ('', '')
return ('echo "%s" | DISPLAY="" ' % self.password, ' --username "%s"' % self.username)
2012-01-23 15:15:40 +01:00
# If the local directory exists, but is somehow not a git repository, git
# will traverse up the directory tree until it finds one that is (i.e.
# fdroidserver) and then we'll proceed to destory it! This is called as
# a safety check.
2012-01-08 14:43:59 +01:00
def checkrepo(self):
2014-02-17 13:12:25 +01:00
p = SilentPopen(['git', 'rev-parse', '--show-toplevel'], cwd=self.local)
result = p.output.rstrip()
2012-01-08 15:16:42 +01:00
if not result.endswith(self.local):
2012-01-08 14:43:59 +01:00
raise VCSException('Repository mismatch')
def gotorevisionx(self, rev):
2012-01-23 15:15:40 +01:00
if not os.path.exists(self.local):
2014-01-27 15:59:40 +01:00
# Brand new checkout
gitsvn_cmd = '%sgit svn clone%s' % self.userargs()
if ';' in self.remote:
remote_split = self.remote.split(';')
for i in remote_split[1:]:
if i.startswith('trunk='):
2013-10-31 15:54:52 +01:00
gitsvn_cmd += ' -T %s' % i[6:]
elif i.startswith('tags='):
2013-10-31 15:54:52 +01:00
gitsvn_cmd += ' -t %s' % i[5:]
elif i.startswith('branches='):
2013-10-31 15:54:52 +01:00
gitsvn_cmd += ' -b %s' % i[9:]
p = SilentPopen([gitsvn_cmd + " %s %s" % (remote_split[0], self.local)], shell=True)
if p.returncode != 0:
2014-07-02 17:21:45 +02:00
self.clone_failed = True
raise VCSException("Git svn clone failed", p.output)
else:
p = SilentPopen([gitsvn_cmd + " %s %s" % (self.remote, self.local)], shell=True)
if p.returncode != 0:
2014-07-02 17:21:45 +02:00
self.clone_failed = True
raise VCSException("Git svn clone failed", p.output)
2012-01-23 15:15:40 +01:00
self.checkrepo()
else:
2012-01-23 15:15:40 +01:00
self.checkrepo()
2014-01-27 15:59:40 +01:00
# Discard any working tree changes
p = SilentPopen(['git', 'reset', '--hard'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git reset failed", p.output)
2012-01-23 15:15:40 +01:00
# Remove untracked files now, in case they're tracked in the target
2014-01-27 15:59:40 +01:00
# revision (it happens!)
p = SilentPopen(['git', 'clean', '-dffx'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git clean failed", p.output)
2012-01-23 15:15:40 +01:00
if not self.refreshed:
# Get new commits, branches and tags from repo
p = SilentPopen(['%sgit svn fetch %s' % self.userargs()], cwd=self.local, shell=True)
if p.returncode != 0:
raise VCSException("Git svn fetch failed")
p = SilentPopen(['%sgit svn rebase %s' % self.userargs()], cwd=self.local, shell=True)
if p.returncode != 0:
raise VCSException("Git svn rebase failed", p.output)
2012-01-23 15:15:40 +01:00
self.refreshed = True
rev = rev or 'master'
2012-02-05 12:02:01 +01:00
if rev:
nospaces_rev = rev.replace(' ', '%20')
# Try finding a svn tag
for treeish in ['origin/', '']:
p = SilentPopen(['git', 'checkout', treeish + 'tags/' + nospaces_rev],
cwd=self.local)
if p.returncode == 0:
break
if p.returncode != 0:
# No tag found, normal svn rev translation
# Translate svn rev into git format
2014-01-24 10:10:40 +01:00
rev_split = rev.split('/')
p = None
for treeish in ['origin/', '']:
if len(rev_split) > 1:
treeish += rev_split[0]
svn_rev = rev_split[1]
else:
# if no branch is specified, then assume trunk (i.e. 'master' branch):
treeish += 'master'
svn_rev = rev
2014-07-09 10:41:35 +02:00
svn_rev = svn_rev if svn_rev[0] == 'r' else 'r' + svn_rev
p = SilentPopen(['git', 'svn', 'find-rev', '--before', svn_rev, treeish],
cwd=self.local)
git_rev = p.output.rstrip()
2014-01-24 10:10:40 +01:00
if p.returncode == 0 and git_rev:
break
2014-01-24 10:10:40 +01:00
if p.returncode != 0 or not git_rev:
# Try a plain git checkout as a last resort
2014-02-17 13:12:25 +01:00
p = SilentPopen(['git', 'checkout', rev], cwd=self.local)
if p.returncode != 0:
raise VCSException("No git treeish found and direct git checkout of '%s' failed" % rev, p.output)
else:
# Check out the git rev equivalent to the svn rev
2014-02-17 13:12:25 +01:00
p = SilentPopen(['git', 'checkout', git_rev], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git checkout of '%s' failed" % rev, p.output)
2014-01-24 10:10:40 +01:00
2014-01-27 15:59:40 +01:00
# Get rid of any uncontrolled files left behind
p = SilentPopen(['git', 'clean', '-dffx'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Git clean failed", p.output)
def gettags(self):
self.checkrepo()
2014-07-18 12:12:16 +02:00
for treeish in ['origin/', '']:
d = os.path.join(self.local, '.git', 'svn', 'refs', 'remotes', treeish, 'tags')
if os.path.isdir(d):
return os.listdir(d)
2013-10-17 23:27:55 +02:00
def getref(self):
self.checkrepo()
2014-02-17 13:12:25 +01:00
p = SilentPopen(['git', 'svn', 'find-rev', 'HEAD'], cwd=self.local)
if p.returncode != 0:
return None
return p.output.strip()
2013-10-17 23:27:55 +02:00
class vcs_hg(vcs):
def repotype(self):
return 'hg'
def gotorevisionx(self, rev):
2012-01-23 15:15:40 +01:00
if not os.path.exists(self.local):
p = SilentPopen(['hg', 'clone', self.remote, self.local])
if p.returncode != 0:
2014-07-02 17:21:45 +02:00
self.clone_failed = True
raise VCSException("Hg clone failed", p.output)
else:
p = SilentPopen(['hg status -uS | xargs rm -rf'], cwd=self.local, shell=True)
if p.returncode != 0:
raise VCSException("Hg clean failed", p.output)
2012-01-23 15:15:40 +01:00
if not self.refreshed:
p = SilentPopen(['hg', 'pull'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Hg pull failed", p.output)
2012-01-23 15:15:40 +01:00
self.refreshed = True
rev = rev or 'default'
if not rev:
return
p = SilentPopen(['hg', 'update', '-C', rev], cwd=self.local)
if p.returncode != 0:
raise VCSException("Hg checkout of '%s' failed" % rev, p.output)
2014-02-17 13:12:25 +01:00
p = SilentPopen(['hg', 'purge', '--all'], cwd=self.local)
# Also delete untracked files, we have to enable purge extension for that:
if "'purge' is provided by the following extension" in p.output:
with open(os.path.join(self.local, '.hg', 'hgrc'), "a") as myfile:
2014-01-20 00:33:31 +01:00
myfile.write("\n[extensions]\nhgext.purge=\n")
p = SilentPopen(['hg', 'purge', '--all'], cwd=self.local)
if p.returncode != 0:
raise VCSException("HG purge failed", p.output)
2014-01-20 16:14:00 +01:00
elif p.returncode != 0:
raise VCSException("HG purge failed", p.output)
2013-09-06 20:33:47 +02:00
def gettags(self):
2014-02-17 13:12:25 +01:00
p = SilentPopen(['hg', 'tags', '-q'], cwd=self.local)
return p.output.splitlines()[1:]
2013-09-06 20:33:47 +02:00
class vcs_bzr(vcs):
def repotype(self):
return 'bzr'
def gotorevisionx(self, rev):
2012-01-23 15:15:40 +01:00
if not os.path.exists(self.local):
p = SilentPopen(['bzr', 'branch', self.remote, self.local])
if p.returncode != 0:
2014-07-02 17:21:45 +02:00
self.clone_failed = True
raise VCSException("Bzr branch failed", p.output)
else:
p = SilentPopen(['bzr', 'clean-tree', '--force', '--unknown', '--ignored'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Bzr revert failed", p.output)
2012-01-23 15:15:40 +01:00
if not self.refreshed:
p = SilentPopen(['bzr', 'pull'], cwd=self.local)
if p.returncode != 0:
raise VCSException("Bzr update failed", p.output)
2012-01-23 15:15:40 +01:00
self.refreshed = True
revargs = list(['-r', rev] if rev else [])
p = SilentPopen(['bzr', 'revert'] + revargs, cwd=self.local)
if p.returncode != 0:
raise VCSException("Bzr revert of '%s' failed" % rev, p.output)
2013-10-30 21:54:09 +01:00
def gettags(self):
2014-02-17 13:12:25 +01:00
p = SilentPopen(['bzr', 'tags'], cwd=self.local)
2013-10-30 21:54:09 +01:00
return [tag.split(' ')[0].strip() for tag in
p.output.splitlines()]
2013-10-30 21:54:09 +01:00
def retrieve_string(app_dir, string, xmlfiles=None):
2014-03-18 15:44:39 +01:00
res_dirs = [
os.path.join(app_dir, 'res'),
os.path.join(app_dir, 'src', 'main'),
]
if xmlfiles is None:
xmlfiles = []
2014-03-18 15:44:39 +01:00
for res_dir in res_dirs:
for r, d, f in os.walk(res_dir):
if os.path.basename(r) == 'values':
xmlfiles += [os.path.join(r, x) for x in f if x.endswith('.xml')]
string_search = None
if string.startswith('@string/'):
string_search = re.compile(r'.*name="' + string[8:] + '".*?>"?([^<]+?)"?<.*').search
elif string.startswith('&') and string.endswith(';'):
string_search = re.compile(r'.*<!ENTITY.*' + string[1:-1] + '.*?"([^"]+?)".*>').search
if string_search is not None:
for xmlfile in xmlfiles:
for line in file(xmlfile):
matches = string_search(line)
if matches:
return retrieve_string(app_dir, matches.group(1), xmlfiles)
return None
return string.replace("\\'", "'")
# Return list of existing files that will be used to find the highest vercode
def manifest_paths(app_dir, flavours):
2013-08-03 16:44:14 +02:00
possible_manifests = \
[os.path.join(app_dir, 'AndroidManifest.xml'),
os.path.join(app_dir, 'src', 'main', 'AndroidManifest.xml'),
os.path.join(app_dir, 'src', 'AndroidManifest.xml'),
os.path.join(app_dir, 'build.gradle')]
for flavour in flavours:
if flavour == 'yes':
continue
possible_manifests.append(
os.path.join(app_dir, 'src', flavour, 'AndroidManifest.xml'))
2013-12-30 17:04:16 +01:00
return [path for path in possible_manifests if os.path.isfile(path)]
2013-08-03 16:44:14 +02:00
# Retrieve the package name. Returns the name, or None if not found.
def fetch_real_name(app_dir, flavours):
app_search = re.compile(r'.*<application.*').search
name_search = re.compile(r'.*android:label="([^"]+)".*').search
app_found = False
for f in manifest_paths(app_dir, flavours):
if not has_extension(f, 'xml'):
continue
logging.debug("fetch_real_name: Checking manifest at " + f)
for line in file(f):
if not app_found:
if app_search(line):
app_found = True
if app_found:
matches = name_search(line)
if matches:
stringname = matches.group(1)
logging.debug("fetch_real_name: using string " + stringname)
2014-03-16 23:34:13 +01:00
result = retrieve_string(app_dir, stringname)
if result:
result = result.strip()
return result
return None
# Retrieve the version name
def version_name(original, app_dir, flavours):
for f in manifest_paths(app_dir, flavours):
if not has_extension(f, 'xml'):
continue
string = retrieve_string(app_dir, original)
if string:
return string
return original
def get_library_references(root_dir):
libraries = []
proppath = os.path.join(root_dir, 'project.properties')
if not os.path.isfile(proppath):
return libraries
with open(proppath) as f:
for line in f.readlines():
if not line.startswith('android.library.reference.'):
continue
path = line.split('=')[1].strip()
relpath = os.path.join(root_dir, path)
if not os.path.isdir(relpath):
continue
2014-07-03 00:43:03 +02:00
logging.debug("Found subproject at %s" % path)
libraries.append(path)
return libraries
def ant_subprojects(root_dir):
subprojects = get_library_references(root_dir)
for subpath in subprojects:
subrelpath = os.path.join(root_dir, subpath)
for p in get_library_references(subrelpath):
relp = os.path.normpath(os.path.join(subpath, p))
if relp not in subprojects:
subprojects.insert(0, relp)
return subprojects
def remove_debuggable_flags(root_dir):
# Remove forced debuggable flags
2014-07-05 15:25:39 +02:00
logging.debug("Removing debuggable flags from %s" % root_dir)
for root, dirs, files in os.walk(root_dir):
if 'AndroidManifest.xml' in files:
path = os.path.join(root, 'AndroidManifest.xml')
2014-07-09 19:15:39 +02:00
p = SilentPopen(['sed', '-i', 's/android:debuggable="[^"]*"//g', path])
if p.returncode != 0:
raise BuildException("Failed to remove debuggable flags of %s" % path)
2012-03-10 13:50:34 +01:00
# Extract some information from the AndroidManifest.xml at the given path.
# Returns (version, vercode, package), any or all of which might be None.
2012-08-23 15:25:39 +02:00
# All values returned are strings.
def parse_androidmanifests(paths, ignoreversions=None):
2013-08-14 15:07:26 +02:00
if not paths:
return (None, None, None)
vcsearch = re.compile(r'.*:versionCode="([0-9]+?)".*').search
vnsearch = re.compile(r'.*:versionName="([^"]+?)".*').search
2012-03-10 13:50:34 +01:00
psearch = re.compile(r'.*package="([^"]+)".*').search
vcsearch_g = re.compile(r'.*versionCode *=* *["\']*([0-9]+)["\']*').search
vnsearch_g = re.compile(r'.*versionName *=* *(["\'])((?:(?=(\\?))\3.)*?)\1.*').search
psearch_g = re.compile(r'.*packageName *=* *["\']([^"]+)["\'].*').search
ignoresearch = re.compile(ignoreversions).search if ignoreversions else None
max_version = None
max_vercode = None
max_package = None
for path in paths:
gradle = has_extension(path, 'gradle')
version = None
vercode = None
# Remember package name, may be defined separately from version+vercode
package = max_package
for line in file(path):
if not package:
if gradle:
matches = psearch_g(line)
else:
matches = psearch(line)
if matches:
package = matches.group(1)
if not version:
if gradle:
matches = vnsearch_g(line)
else:
matches = vnsearch(line)
if matches:
version = matches.group(2 if gradle else 1)
if not vercode:
if gradle:
matches = vcsearch_g(line)
else:
matches = vcsearch(line)
if matches:
vercode = matches.group(1)
2014-06-22 17:36:00 +02:00
# Always grab the package name and version name in case they are not
# together with the highest version code
if max_package is None and package is not None:
max_package = package
2014-06-22 17:36:00 +02:00
if max_version is None and version is not None:
max_version = version
if max_vercode is None or (vercode is not None and vercode > max_vercode):
if not ignoresearch or not ignoresearch(version):
2014-06-22 17:36:00 +02:00
if version is not None:
max_version = version
if vercode is not None:
max_vercode = vercode
if package is not None:
max_package = package
else:
max_version = "Ignore"
if max_version is None:
max_version = "Unknown"
return (max_version, max_vercode, max_package)
2012-03-10 13:50:34 +01:00
class FDroidException(Exception):
def __init__(self, value, detail=None):
2012-01-02 12:51:14 +01:00
self.value = value
self.detail = detail
2012-01-02 12:51:14 +01:00
2013-05-20 22:19:53 +02:00
def get_wikitext(self):
ret = repr(self.value) + "\n"
if self.detail:
ret += "=detail=\n"
2013-05-20 22:19:53 +02:00
ret += "<pre>\n"
txt = self.detail[-8192:] if len(self.detail) > 8192 else self.detail
ret += str(txt)
2013-05-20 22:19:53 +02:00
ret += "</pre>\n"
return ret
2012-01-02 12:51:14 +01:00
def __str__(self):
ret = self.value
if self.detail:
ret += "\n==== detail begin ====\n%s\n==== detail end ====" % self.detail.strip()
2012-01-08 19:13:15 +01:00
return ret
2012-01-02 12:51:14 +01:00
class VCSException(FDroidException):
pass
2012-01-02 12:51:14 +01:00
class BuildException(FDroidException):
pass
2012-01-02 12:51:14 +01:00
2013-05-20 13:16:06 +02:00
# Get the specified source library.
# Returns the path to it. Normally this is the path to be used when referencing
# it, which may be a subdirectory of the actual project. If you want the base
# directory of the project, pass 'basepath=True'.
def getsrclib(spec, srclib_dir, srclibpaths=[], subdir=None,
basepath=False, raw=False, prepare=True, preponly=False):
2013-03-01 18:59:01 +01:00
2013-11-18 22:31:52 +01:00
number = None
subdir = None
if raw:
name = spec
ref = None
else:
name, ref = spec.split('@')
2013-11-18 22:31:52 +01:00
if ':' in name:
number, name = name.split(':', 1)
if '/' in name:
name, subdir = name.split('/', 1)
2013-03-01 20:39:30 +01:00
2014-05-28 09:33:14 +02:00
if name not in metadata.srclibs:
raise VCSException('srclib ' + name + ' not found.')
2013-03-15 16:29:29 +01:00
srclib = metadata.srclibs[name]
2013-04-07 20:39:53 +02:00
sdir = os.path.join(srclib_dir, name)
2013-04-23 21:11:10 +02:00
2013-06-04 23:42:18 +02:00
if not preponly:
vcs = getvcs(srclib["Repo Type"], srclib["Repo"], sdir)
2013-11-18 22:31:52 +01:00
vcs.srclib = (name, number, sdir)
2013-10-23 16:57:02 +02:00
if ref:
vcs.gotorevision(ref)
2013-06-04 23:42:18 +02:00
if raw:
return vcs
2013-05-20 13:16:06 +02:00
libdir = None
if subdir:
2013-11-16 12:54:23 +01:00
libdir = os.path.join(sdir, subdir)
elif srclib["Subdir"]:
2013-05-20 13:16:06 +02:00
for subdir in srclib["Subdir"]:
libdir_candidate = os.path.join(sdir, subdir)
if os.path.exists(libdir_candidate):
libdir = libdir_candidate
break
2013-04-28 19:52:27 +02:00
2013-05-20 13:16:06 +02:00
if libdir is None:
libdir = sdir
2013-05-03 16:53:37 +02:00
if srclib["Srclibs"]:
n = 1
for lib in srclib["Srclibs"].replace(';', ',').split(','):
s_tuple = None
for t in srclibpaths:
if t[0] == lib:
s_tuple = t
break
if s_tuple is None:
raise VCSException('Missing recursive srclib %s for %s' % (
lib, name))
place_srclib(libdir, n, s_tuple[2])
n += 1
remove_signing_keys(sdir)
remove_debuggable_flags(sdir)
2013-06-04 23:42:18 +02:00
if prepare:
if srclib["Prepare"]:
cmd = replace_config_vars(srclib["Prepare"])
p = FDroidPopen(['bash', '-x', '-c', cmd], cwd=libdir)
2013-06-04 23:42:18 +02:00
if p.returncode != 0:
raise BuildException("Error running prepare command for srclib %s"
% name, p.output)
2013-12-30 17:04:16 +01:00
2013-05-20 13:16:06 +02:00
if basepath:
2013-11-20 19:00:22 +01:00
libdir = sdir
return (name, number, libdir)
2012-01-28 01:05:30 +01:00
# Prepare the source code for a particular build
# 'vcs' - the appropriate vcs object for the application
# 'app' - the application details from the metadata
# 'build' - the build details from the metadata
# 'build_dir' - the path to the build directory, usually
# 'build/app.id'
# 'srclib_dir' - the path to the source libraries directory, usually
# 'build/srclib'
# 'extlib_dir' - the path to the external libraries directory, usually
# 'build/extlib'
# Returns the (root, srclibpaths) where:
# 'root' is the root directory, which may be the same as 'build_dir' or may
# be a subdirectory of it.
# 'srclibpaths' is information on the srclibs being used
def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=False):
2014-01-27 15:59:40 +01:00
# Optionally, the actual app source can be in a subdirectory
if build['subdir']:
root_dir = os.path.join(build_dir, build['subdir'])
else:
root_dir = build_dir
2014-01-27 15:59:40 +01:00
# Get a working copy of the right revision
logging.info("Getting source for revision " + build['commit'])
2012-01-23 15:15:40 +01:00
vcs.gotorevision(build['commit'])
2014-01-27 15:59:40 +01:00
# Initialise submodules if requred
if build['submodules']:
2014-01-27 15:59:40 +01:00
logging.info("Initialising submodules")
vcs.initsubmodules()
# Check that a subdir (if we're using one) exists. This has to happen
# after the checkout, since it might not exist elsewhere
if not os.path.exists(root_dir):
raise BuildException('Missing subdir ' + root_dir)
2014-01-27 15:59:40 +01:00
# Run an init command if one is required
if build['init']:
cmd = replace_config_vars(build['init'])
2014-01-27 15:59:40 +01:00
logging.info("Running 'init' commands in %s" % root_dir)
p = FDroidPopen(['bash', '-x', '-c', cmd], cwd=root_dir)
if p.returncode != 0:
raise BuildException("Error running init command for %s:%s" %
(app['id'], build['version']), p.output)
2014-01-23 10:29:04 +01:00
# Apply patches if any
if build['patch']:
logging.info("Applying patches")
for patch in build['patch']:
2014-01-23 10:29:04 +01:00
patch = patch.strip()
2014-01-27 15:59:40 +01:00
logging.info("Applying " + patch)
2014-01-23 10:29:04 +01:00
patch_path = os.path.join('metadata', app['id'], patch)
p = FDroidPopen(['patch', '-p1', '-i', os.path.abspath(patch_path)], cwd=build_dir)
if p.returncode != 0:
2014-01-23 10:29:04 +01:00
raise BuildException("Failed to apply patch %s" % patch_path)
2014-01-27 15:59:40 +01:00
# Get required source libraries
2014-01-23 10:29:04 +01:00
srclibpaths = []
if build['srclibs']:
2014-01-27 15:59:40 +01:00
logging.info("Collecting source libraries")
for lib in build['srclibs']:
2014-01-23 10:29:04 +01:00
srclibpaths.append(getsrclib(lib, srclib_dir, srclibpaths,
preponly=onserver))
2014-01-23 10:29:04 +01:00
for name, number, libpath in srclibpaths:
place_srclib(root_dir, int(number) if number else None, libpath)
basesrclib = vcs.getsrclib()
# If one was used for the main source, add that too.
if basesrclib:
srclibpaths.append(basesrclib)
2014-01-27 15:59:40 +01:00
# Update the local.properties file
localprops = [os.path.join(build_dir, 'local.properties')]
if build['subdir']:
localprops += [os.path.join(root_dir, 'local.properties')]
for path in localprops:
props = ""
if os.path.isfile(path):
logging.info("Updating local.properties file at %s" % path)
f = open(path, 'r')
props += f.read()
f.close()
props += '\n'
else:
logging.info("Creating local.properties file at %s" % path)
# Fix old-fashioned 'sdk-location' by copying
2014-01-27 15:59:40 +01:00
# from sdk.dir, if necessary
if build['oldsdkloc']:
sdkloc = re.match(r".*^sdk.dir=(\S+)$.*", props,
re.S | re.M).group(1)
props += "sdk-location=%s\n" % sdkloc
else:
props += "sdk.dir=%s\n" % config['sdk_path']
props += "sdk-location=%s\n" % config['sdk_path']
if config['ndk_path']:
2014-01-27 15:59:40 +01:00
# Add ndk location
2014-01-26 21:28:09 +01:00
props += "ndk.dir=%s\n" % config['ndk_path']
props += "ndk-location=%s\n" % config['ndk_path']
2014-01-27 15:59:40 +01:00
# Add java.encoding if necessary
if build['encoding']:
props += "java.encoding=%s\n" % build['encoding']
f = open(path, 'w')
f.write(props)
f.close()
flavours = []
2014-01-10 20:39:39 +01:00
if build['type'] == 'gradle':
flavours = build['gradle']
version_regex = re.compile(r".*'com\.android\.tools\.build:gradle:([^\.]+\.[^\.]+).*'.*")
gradlepluginver = None
gradle_files = [os.path.join(root_dir, 'build.gradle')]
# Parent dir build.gradle
parent_dir = os.path.normpath(os.path.join(root_dir, '..'))
if parent_dir.startswith(build_dir):
gradle_files.append(os.path.join(parent_dir, 'build.gradle'))
for path in gradle_files:
if gradlepluginver:
break
if not os.path.isfile(path):
continue
with open(path) as f:
for line in f:
match = version_regex.match(line)
if match:
gradlepluginver = match.group(1)
break
if gradlepluginver:
build['gradlepluginver'] = LooseVersion(gradlepluginver)
else:
logging.warn("Could not fetch the gradle plugin version, defaulting to 0.11")
build['gradlepluginver'] = LooseVersion('0.11')
if build['target']:
2014-01-28 14:14:18 +01:00
n = build["target"].split('-')[1]
2014-07-09 19:15:39 +02:00
SilentPopen(['sed', '-i',
's@compileSdkVersion *[0-9]*@compileSdkVersion ' + n + '@g',
'build.gradle'],
cwd=root_dir)
# Remove forced debuggable flags
remove_debuggable_flags(root_dir)
2014-01-27 15:59:40 +01:00
# Insert version code and number into the manifest if necessary
if build['forceversion']:
2014-01-27 15:59:40 +01:00
logging.info("Changing the version name")
for path in manifest_paths(root_dir, flavours):
if not os.path.isfile(path):
continue
if has_extension(path, 'xml'):
p = SilentPopen(['sed', '-i',
's/android:versionName="[^"]*"/android:versionName="'
+ build['version'] + '"/g',
path])
if p.returncode != 0:
raise BuildException("Failed to amend manifest")
elif has_extension(path, 'gradle'):
p = SilentPopen(['sed', '-i',
's/versionName *=* *"[^"]*"/versionName = "'
+ build['version'] + '"/g',
path])
if p.returncode != 0:
raise BuildException("Failed to amend build.gradle")
if build['forcevercode']:
2014-01-27 15:59:40 +01:00
logging.info("Changing the version code")
for path in manifest_paths(root_dir, flavours):
if not os.path.isfile(path):
continue
if has_extension(path, 'xml'):
p = SilentPopen(['sed', '-i',
's/android:versionCode="[^"]*"/android:versionCode="'
+ build['vercode'] + '"/g',
path])
if p.returncode != 0:
raise BuildException("Failed to amend manifest")
elif has_extension(path, 'gradle'):
p = SilentPopen(['sed', '-i',
's/versionCode *=* *[0-9]*/versionCode = '
+ build['vercode'] + '/g',
path])
if p.returncode != 0:
raise BuildException("Failed to amend build.gradle")
2014-01-27 15:59:40 +01:00
# Delete unwanted files
if build['rm']:
logging.info("Removing specified files")
2014-04-15 23:58:12 +02:00
for part in getpaths(build_dir, build, 'rm'):
dest = os.path.join(build_dir, part)
logging.info("Removing {0}".format(part))
if os.path.lexists(dest):
if os.path.islink(dest):
SilentPopen(['unlink ' + dest], shell=True)
2013-11-24 11:29:28 +01:00
else:
SilentPopen(['rm -rf ' + dest], shell=True)
2013-11-24 11:29:28 +01:00
else:
2014-01-27 15:59:40 +01:00
logging.info("...but it didn't exist")
remove_signing_keys(build_dir)
2014-01-27 15:59:40 +01:00
# Add required external libraries
if build['extlibs']:
2014-01-27 15:59:40 +01:00
logging.info("Collecting prebuilt libraries")
libsdir = os.path.join(root_dir, 'libs')
if not os.path.exists(libsdir):
os.mkdir(libsdir)
for lib in build['extlibs']:
lib = lib.strip()
2014-01-27 15:59:40 +01:00
logging.info("...installing extlib {0}".format(lib))
libf = os.path.basename(lib)
libsrc = os.path.join(extlib_dir, lib)
if not os.path.exists(libsrc):
raise BuildException("Missing extlib file {0}".format(libsrc))
shutil.copyfile(libsrc, os.path.join(libsdir, libf))
2014-01-27 15:59:40 +01:00
# Run a pre-build command if one is required
if build['prebuild']:
logging.info("Running 'prebuild' commands in %s" % root_dir)
cmd = replace_config_vars(build['prebuild'])
2014-01-27 15:59:40 +01:00
# Substitute source library paths into prebuild commands
for name, number, libpath in srclibpaths:
2012-01-28 01:05:30 +01:00
libpath = os.path.relpath(libpath, root_dir)
cmd = cmd.replace('$$' + name + '$$', libpath)
p = FDroidPopen(['bash', '-x', '-c', cmd], cwd=root_dir)
if p.returncode != 0:
raise BuildException("Error running prebuild command for %s:%s" %
(app['id'], build['version']), p.output)
# Generate (or update) the ant build file, build.xml...
if build['update'] and build['update'] != ['no'] and build['type'] == 'ant':
parms = [config['android'], 'update', 'lib-project']
lparms = [config['android'], 'update', 'project']
if build['target']:
parms += ['-t', build['target']]
lparms += ['-t', build['target']]
if build['update'] == ['auto']:
update_dirs = ant_subprojects(root_dir) + ['.']
else:
update_dirs = build['update']
for d in update_dirs:
subdir = os.path.join(root_dir, d)
if d == '.':
2014-07-05 15:25:39 +02:00
logging.debug("Updating main project")
cmd = parms + ['-p', d]
else:
2014-07-05 15:25:39 +02:00
logging.debug("Updating subproject %s" % d)
cmd = lparms + ['-p', d]
p = FDroidPopen(cmd, cwd=root_dir)
# Check to see whether an error was returned without a proper exit
# code (this is the case for the 'no target set or target invalid'
# error)
if p.returncode != 0 or p.output.startswith("Error: "):
raise BuildException("Failed to update project at %s" % d, p.output)
# Clean update dirs via ant
2014-02-13 09:19:26 +01:00
if d != '.':
logging.info("Cleaning subproject %s" % d)
2014-02-13 09:19:26 +01:00
p = FDroidPopen(['ant', 'clean'], cwd=subdir)
return (root_dir, srclibpaths)
# Split and extend via globbing the paths from a field
def getpaths(build_dir, build, field):
paths = []
for p in build[field]:
p = p.strip()
full_path = os.path.join(build_dir, p)
full_path = os.path.normpath(full_path)
paths += [r[len(build_dir) + 1:] for r in glob.glob(full_path)]
return paths
2012-02-02 23:13:31 +01:00
# Scan the source code in the given directory (and all subdirectories)
# and return the number of fatal problems encountered
def scan_source(build_dir, root_dir, thisbuild):
count = 0
2012-02-02 23:13:31 +01:00
2013-10-09 10:43:02 +02:00
# Common known non-free blobs (always lower case):
usual_suspects = [
re.compile(r'flurryagent', re.IGNORECASE),
re.compile(r'paypal.*mpl', re.IGNORECASE),
2014-07-09 18:17:28 +02:00
re.compile(r'google.*analytics', re.IGNORECASE),
re.compile(r'admob.*sdk.*android', re.IGNORECASE),
2014-07-09 18:17:28 +02:00
re.compile(r'google.*ad.*view', re.IGNORECASE),
re.compile(r'google.*admob', re.IGNORECASE),
re.compile(r'google.*play.*services', re.IGNORECASE),
re.compile(r'crittercism', re.IGNORECASE),
re.compile(r'heyzap', re.IGNORECASE),
re.compile(r'jpct.*ae', re.IGNORECASE),
2014-07-09 18:17:28 +02:00
re.compile(r'youtube.*android.*player.*api', re.IGNORECASE),
re.compile(r'bugsense', re.IGNORECASE),
re.compile(r'crashlytics', re.IGNORECASE),
re.compile(r'ouya.*sdk', re.IGNORECASE),
re.compile(r'libspen23', re.IGNORECASE),
]
2012-03-06 20:50:19 +01:00
scanignore = getpaths(build_dir, thisbuild, 'scanignore')
scandelete = getpaths(build_dir, thisbuild, 'scandelete')
try:
ms = magic.open(magic.MIME_TYPE)
ms.load()
except AttributeError:
ms = None
def toignore(fd):
for i in scanignore:
if fd.startswith(i):
return True
return False
def todelete(fd):
for i in scandelete:
if fd.startswith(i):
return True
return False
def removeproblem(what, fd, fp):
2014-01-27 15:59:40 +01:00
logging.info('Removing %s at %s' % (what, fd))
os.remove(fp)
2013-12-30 17:04:16 +01:00
def warnproblem(what, fd):
logging.warn('Found %s at %s' % (what, fd))
def handleproblem(what, fd, fp):
if toignore(fd):
logging.info('Ignoring %s at %s' % (what, fd))
elif todelete(fd):
removeproblem(what, fd, fp)
else:
logging.error('Found %s at %s' % (what, fd))
return True
return False
2014-01-27 15:59:40 +01:00
# Iterate through all files in the source code
for r, d, f in os.walk(build_dir, topdown=True):
# It's topdown, so checking the basename is enough
for ignoredir in ('.hg', '.git', '.svn', '.bzr'):
if ignoredir in d:
d.remove(ignoredir)
for curfile in f:
2014-01-27 15:59:40 +01:00
# Path (relative) to the file
fp = os.path.join(r, curfile)
fd = fp[len(build_dir) + 1:]
try:
mime = magic.from_file(fp, mime=True) if ms is None else ms.file(fp)
except UnicodeError:
warnproblem('malformed magic number', fd)
if mime == 'application/x-sharedlib':
count += handleproblem('shared library', fd, fp)
elif mime == 'application/x-archive':
count += handleproblem('static library', fd, fp)
elif mime == 'application/x-executable':
2014-04-12 00:14:05 +02:00
count += handleproblem('binary executable', fd, fp)
elif mime == 'application/x-java-applet':
2014-04-12 00:14:05 +02:00
count += handleproblem('Java compiled class', fd, fp)
elif mime in (
'application/jar',
2014-03-16 23:38:00 +01:00
'application/zip',
'application/java-archive',
'application/octet-stream',
2014-03-16 23:38:00 +01:00
'binary',
):
if has_extension(fp, 'apk'):
removeproblem('APK file', fd, fp)
elif has_extension(fp, 'jar'):
if any(suspect.match(curfile) for suspect in usual_suspects):
count += handleproblem('usual supect', fd, fp)
else:
warnproblem('JAR file', fd)
elif has_extension(fp, 'zip'):
warnproblem('ZIP file', fd)
else:
warnproblem('unknown compressed or binary file', fd)
elif has_extension(fp, 'java'):
for line in file(fp):
if 'DexClassLoader' in line:
count += handleproblem('DexClassLoader', fd, fp)
2013-10-15 23:24:20 +02:00
break
if ms is not None:
ms.close()
2012-02-02 23:13:31 +01:00
# Presence of a jni directory without buildjni=yes might
2014-01-27 15:59:40 +01:00
# indicate a problem (if it's not a problem, explicitly use
# buildjni=no to bypass this check)
2013-12-30 17:04:16 +01:00
if (os.path.exists(os.path.join(root_dir, 'jni')) and
not thisbuild['buildjni']):
2014-06-24 22:31:39 +02:00
logging.error('Found jni directory, but buildjni is not enabled. Set it to \'no\' to ignore.')
count += 1
2012-02-02 23:13:31 +01:00
return count
2012-02-02 23:13:31 +01:00
class KnownApks:
def __init__(self):
self.path = os.path.join('stats', 'known_apks.txt')
self.apks = {}
if os.path.exists(self.path):
for line in file(self.path):
t = line.rstrip().split(' ')
if len(t) == 2:
self.apks[t[0]] = (t[1], None)
else:
self.apks[t[0]] = (t[1], time.strptime(t[2], '%Y-%m-%d'))
self.changed = False
def writeifchanged(self):
if self.changed:
if not os.path.exists('stats'):
os.mkdir('stats')
f = open(self.path, 'w')
lst = []
for apk, app in self.apks.iteritems():
appid, added = app
line = apk + ' ' + appid
if added:
line += ' ' + time.strftime('%Y-%m-%d', added)
lst.append(line)
for line in sorted(lst):
f.write(line + '\n')
f.close()
# Record an apk (if it's new, otherwise does nothing)
# Returns the date it was added.
def recordapk(self, apk, app):
2014-05-28 09:33:14 +02:00
if apk not in self.apks:
self.apks[apk] = (app, time.gmtime(time.time()))
self.changed = True
_, added = self.apks[apk]
return added
# Look up information - given the 'apkname', returns (app id, date added/None).
# Or returns None for an unknown apk.
def getapp(self, apkname):
if apkname in self.apks:
return self.apks[apkname]
return None
# Get the most recent 'num' apps added to the repo, as a list of package ids
# with the most recent first.
def getlatest(self, num):
apps = {}
for apk, app in self.apks.iteritems():
appid, added = app
if added:
if appid in apps:
if apps[appid] > added:
apps[appid] = added
else:
apps[appid] = added
sortedapps = sorted(apps.iteritems(), key=operator.itemgetter(1))[-num:]
lst = [app for app, _ in sortedapps]
lst.reverse()
return lst
def isApkDebuggable(apkfile, config):
2013-04-15 16:07:23 +02:00
"""Returns True if the given apk file is debuggable
2013-07-31 19:35:57 +02:00
:param apkfile: full path to the apk to check"""
2013-04-15 14:04:13 +02:00
p = SilentPopen([os.path.join(config['sdk_path'], 'build-tools',
config['build_tools'], 'aapt'),
'dump', 'xmltree', apkfile, 'AndroidManifest.xml'])
2013-04-15 14:04:13 +02:00
if p.returncode != 0:
2014-01-27 15:59:40 +01:00
logging.critical("Failed to get apk manifest information")
2013-04-15 14:04:13 +02:00
sys.exit(1)
for line in p.output.splitlines():
2013-12-20 09:34:03 +01:00
if 'android:debuggable' in line and not line.endswith('0x0'):
2013-04-15 14:04:13 +02:00
return True
return False
class AsynchronousFileReader(threading.Thread):
'''
Helper class to implement asynchronous reading of a file
in a separate thread. Pushes read lines on a queue to
be consumed in another thread.
'''
2013-12-30 17:04:16 +01:00
def __init__(self, fd, queue):
assert isinstance(queue, Queue.Queue)
assert callable(fd.readline)
threading.Thread.__init__(self)
self._fd = fd
self._queue = queue
2013-12-30 17:04:16 +01:00
def run(self):
'''The body of the tread: read lines and put them on the queue.'''
for line in iter(self._fd.readline, ''):
self._queue.put(line)
2013-12-30 17:04:16 +01:00
def eof(self):
'''Check whether there is no more content to expect.'''
return not self.is_alive() and self._queue.empty()
class PopenResult:
returncode = None
output = ''
def SilentPopen(commands, cwd=None, shell=False):
return FDroidPopen(commands, cwd=cwd, shell=shell, output=False)
2014-02-17 13:12:25 +01:00
def FDroidPopen(commands, cwd=None, shell=False, output=True):
2014-02-17 13:12:25 +01:00
"""
Run a command and capture the possibly huge output.
:param commands: command and argument list like in subprocess.Popen
:param cwd: optionally specifies a working directory
:returns: A PopenResult.
"""
global env
2014-06-25 10:25:47 +02:00
if cwd:
cwd = os.path.normpath(cwd)
logging.debug("Directory: %s" % cwd)
logging.debug("> %s" % ' '.join(commands))
result = PopenResult()
p = None
try:
p = subprocess.Popen(commands, cwd=cwd, shell=shell, env=env,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except OSError, e:
raise BuildException("OSError while trying to execute " + ' '.join(commands) + ': ' + str(e))
2013-12-30 17:04:16 +01:00
stdout_queue = Queue.Queue()
stdout_reader = AsynchronousFileReader(p.stdout, stdout_queue)
stdout_reader.start()
2013-12-30 17:04:16 +01:00
# Check the queue for output (until there is no more to get)
while not stdout_reader.eof():
while not stdout_queue.empty():
line = stdout_queue.get()
if output and options.verbose:
# Output directly to console
sys.stderr.write(line)
sys.stderr.flush()
result.output += line
time.sleep(0.1)
2014-08-10 12:28:19 +02:00
result.returncode = p.wait()
return result
def remove_signing_keys(build_dir):
comment = re.compile(r'[ ]*//')
signing_configs = re.compile(r'^[\t ]*signingConfigs[ \t]*{[ \t]*$')
line_matches = [
re.compile(r'^[\t ]*signingConfig [^ ]*$'),
re.compile(r'.*android\.signingConfigs\.[^{]*$'),
re.compile(r'.*variant\.outputFile = .*'),
re.compile(r'.*\.readLine\(.*'),
]
for root, dirs, files in os.walk(build_dir):
if 'build.gradle' in files:
path = os.path.join(root, 'build.gradle')
with open(path, "r") as o:
lines = o.readlines()
2013-12-30 17:04:16 +01:00
changed = False
opened = 0
2013-11-16 12:54:35 +01:00
with open(path, "w") as o:
for line in lines:
if comment.match(line):
continue
if opened > 0:
opened += line.count('{')
opened -= line.count('}')
continue
if signing_configs.match(line):
changed = True
opened += 1
continue
if any(s.match(line) for s in line_matches):
changed = True
continue
if opened == 0:
o.write(line)
if changed:
logging.info("Cleaned build.gradle of keysigning configs at %s" % path)
for propfile in [
'project.properties',
'build.properties',
'default.properties',
'ant.properties',
]:
if propfile in files:
path = os.path.join(root, propfile)
2013-11-16 12:54:35 +01:00
with open(path, "r") as o:
lines = o.readlines()
changed = False
2013-11-16 12:54:35 +01:00
with open(path, "w") as o:
for line in lines:
if any(line.startswith(s) for s in ('key.store', 'key.alias')):
changed = True
continue
o.write(line)
if changed:
logging.info("Cleaned %s of keysigning configs at %s" % (propfile, path))
def replace_config_vars(cmd):
cmd = cmd.replace('$$SDK$$', config['sdk_path'])
cmd = cmd.replace('$$NDK$$', config['ndk_path'])
cmd = cmd.replace('$$MVN3$$', config['mvn3'])
return cmd
def place_srclib(root_dir, number, libpath):
if not number:
return
relpath = os.path.relpath(libpath, root_dir)
proppath = os.path.join(root_dir, 'project.properties')
lines = []
if os.path.isfile(proppath):
with open(proppath, "r") as o:
lines = o.readlines()
with open(proppath, "w") as o:
placed = False
for line in lines:
if line.startswith('android.library.reference.%d=' % number):
o.write('android.library.reference.%d=%s\n' % (number, relpath))
placed = True
else:
o.write(line)
if not placed:
o.write('android.library.reference.%d=%s\n' % (number, relpath))
def compare_apks(apk1, apk2, tmp_dir):
"""Compare two apks
Returns None if the apk content is the same (apart from the signing key),
otherwise a string describing what's different, or what went wrong when
trying to do the comparison.
"""
thisdir = os.path.join(tmp_dir, 'this_apk')
thatdir = os.path.join(tmp_dir, 'that_apk')
for d in [thisdir, thatdir]:
if os.path.exists(d):
shutil.rmtree(d)
os.mkdir(d)
if subprocess.call(['jar', 'xf',
os.path.abspath(apk1)],
cwd=thisdir) != 0:
return("Failed to unpack " + apk1)
if subprocess.call(['jar', 'xf',
os.path.abspath(apk2)],
cwd=thatdir) != 0:
return("Failed to unpack " + apk2)
p = FDroidPopen(['diff', '-r', 'this_apk', 'that_apk'], cwd=tmp_dir,
output=False)
lines = p.output.splitlines()
if len(lines) != 1 or 'META-INF' not in lines[0]:
return("Unexpected diff output - " + p.output)
# If we get here, it seems like they're the same!
return None