Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ssh.py
Go to the documentation of this file.
1# Copyright 2016 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.
4
5
6from recipe_engine import recipe_api
7
8from . import default
9
10
11"""SSH flavor, used for running code on a remote device via SSH.
12
13Must be subclassed to set self.device_dirs. The default implementation assumes
14a Linux-based device.
15"""
16
17
19
20 def __init__(self, m, app_name):
21 super(SSHFlavor, self).__init__(m, app_name)
22 self._user_ip = ''
23
24 @property
25 def user_ip(self):
26 if not self._user_ip:
27 path = '/tmp/ssh_machine.json'
28 ssh_info = self.m.file.read_json('read ssh_machine.json', path,
29 test_data={'user_ip':'foo@127.0.0.1'})
30 self._user_ip = ssh_info.get(u'user_ip')
31 return self._user_ip
32
33 def ssh(self, title, *cmd, **kwargs):
34 if 'infra_step' not in kwargs:
35 kwargs['infra_step'] = True
36
37 ssh_cmd = ['ssh', '-oConnectTimeout=15', '-oBatchMode=yes',
38 '-t', '-t', self.user_ipuser_ip] + list(cmd)
39
40 return self._run(title, ssh_cmd, **kwargs)
41
42 def ensure_device_dir(self, path):
43 self.ssh('mkdir %s' % path, 'mkdir', '-p', path)
44
45 def install(self):
46 self.ensure_device_dir(self.device_dirs.resource_dir)
47 if self.app_nameapp_name:
49 host_path = self.host_dirs.bin_dir.join(self.app_nameapp_name)
50 device_path = self.device_path_join(self.device_dirs.bin_dir, self.app_nameapp_name)
51 self.copy_file_to_devicecopy_file_to_device(host_path, device_path)
52 self.ssh('make %s executable' % self.app_nameapp_name, 'chmod', '+x', device_path)
53
54 def create_clean_device_dir(self, path):
55 # use -f to silently return if path doesn't exist
56 self.ssh('rm %s' % path, 'rm', '-rf', path)
57 self.ensure_device_dir(path)
58
59 def read_file_on_device(self, path, **kwargs):
60 rv = self.ssh('read %s' % path,
61 'cat', path, stdout=self.m.raw_io.output(),
62 **kwargs)
63 return rv.stdout.decode('utf-8').rstrip() if rv and rv.stdout else None
64
65 def remove_file_on_device(self, path):
66 # use -f to silently return if path doesn't exist
67 self.ssh('rm %s' % path, 'rm', '-f', path)
68
69 def scp_device_path(self, device_path):
70 return '%s:%s' % (self.user_ipuser_ip, device_path)
71
72 def copy_file_to_device(self, host_path, device_path):
73 device_path = self.scp_device_path(device_path)
74 self._run('scp %s %s' % (host_path, device_path),
75 ['scp', host_path, device_path], infra_step=True)
76
77 # TODO(benjaminwagner): implement with rsync
78 #def copy_directory_contents_to_device(self, host_path, device_path):
79
80 # TODO(benjaminwagner): implement with rsync
81 #def copy_directory_contents_to_host(self, device_path, host_path):
82
83 def step(self, name, cmd, **kwargs):
84 # Run cmd (installed above)
85 cmd[0] = self.device_path_join(self.device_dirs.bin_dir, cmd[0])
86 self.ssh(str(name), *cmd)
copy_file_to_device(self, host_path, device_path)
Definition default.py:80
_run(self, title, cmd, infra_step=False, **kwargs)
Definition default.py:116
device_path_join(self, *args)
Definition default.py:56
create_clean_device_dir(self, path)
Definition default.py:90
ensure_device_dir(self, path)
Definition ssh.py:42
read_file_on_device(self, path, **kwargs)
Definition ssh.py:59
copy_file_to_device(self, host_path, device_path)
Definition ssh.py:72
scp_device_path(self, device_path)
Definition ssh.py:69
create_clean_device_dir(self, path)
Definition ssh.py:54
__init__(self, m, app_name)
Definition ssh.py:20
ssh(self, title, *cmd, **kwargs)
Definition ssh.py:33
step(self, name, cmd, **kwargs)
Definition ssh.py:83