1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 """ A simple device interface for build steps.
14 from util
import build_utils
16 BUILD_ANDROID_DIR
= os
.path
.join(os
.path
.dirname(__file__
), '..', '..')
17 sys
.path
.append(BUILD_ANDROID_DIR
)
19 from pylib
import android_commands
20 from pylib
.device
import device_errors
21 from pylib
.device
import device_utils
23 GetAttachedDevices
= android_commands
.GetAttachedDevices
26 class BuildDevice(object):
27 def __init__(self
, configuration
):
28 self
.id = configuration
['id']
29 self
.description
= configuration
['description']
30 self
.install_metadata
= configuration
['install_metadata']
31 self
.device
= device_utils
.DeviceUtils(self
.id)
33 def RunShellCommand(self
, *args
, **kwargs
):
34 return self
.device
.RunShellCommand(*args
, **kwargs
)
36 def PushChangedFiles(self
, *args
, **kwargs
):
37 return self
.device
.PushChangedFiles(*args
, **kwargs
)
39 def GetSerialNumber(self
):
42 def Install(self
, *args
, **kwargs
):
43 return self
.device
.Install(*args
, **kwargs
)
45 def InstallSplitApk(self
, *args
, **kwargs
):
46 return self
.device
.InstallSplitApk(*args
, **kwargs
)
48 def GetInstallMetadata(self
, apk_package
):
49 """Gets the metadata on the device for the apk_package apk."""
51 # -rw-r--r-- system system 7376582 2013-04-19 16:34 \
52 # org.chromium.chrome.shell.apk
53 # -rw-r--r-- system system 7376582 2013-04-19 16:34 \
54 # org.chromium.chrome.shell-1.apk
55 apk_matcher
= lambda s
: re
.match('.*%s(-[0-9]*)?.apk$' % apk_package
, s
)
56 matches
= filter(apk_matcher
, self
.install_metadata
)
57 return matches
[0] if matches
else None
60 def GetConfigurationForDevice(device_id
):
61 device
= device_utils
.DeviceUtils(device_id
)
64 is_online
= device
.IsOnline()
66 cmd
= 'ls -l /data/app; getprop ro.build.description'
67 cmd_output
= device
.RunShellCommand(cmd
)
68 has_root
= not 'Permission denied' in cmd_output
[0]
70 # Disable warning log messages from EnableRoot()
71 logging
.getLogger().disabled
= True
75 except device_errors
.CommandFailedError
:
78 logging
.getLogger().disabled
= False
79 cmd_output
= device
.RunShellCommand(cmd
)
83 'description': cmd_output
[-1],
84 'install_metadata': cmd_output
[:-1],
86 return configuration
, is_online
, has_root
89 def WriteConfigurations(configurations
, path
):
90 # Currently we only support installing to the first device.
91 build_utils
.WriteJson(configurations
[:1], path
, only_if_changed
=True)
94 def ReadConfigurations(path
):
95 return build_utils
.ReadJson(path
)
98 def GetBuildDevice(configurations
):
99 assert len(configurations
) == 1
100 return BuildDevice(configurations
[0])
103 def GetBuildDeviceFromPath(path
):
104 configurations
= ReadConfigurations(path
)
105 if len(configurations
) > 0:
106 return GetBuildDevice(ReadConfigurations(path
))