| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 class SystemProperties(dict): | 6 class SystemProperties(dict): |
| 7 | 7 |
| 8 """A dict interface to interact with device system properties. | 8 """A dict interface to interact with device system properties. |
| 9 | 9 |
| 10 System properties are key/value pairs as exposed by adb shell getprop/setprop. | 10 System properties are key/value pairs as exposed by adb shell getprop/setprop. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 if self._IsStatic(key): | 22 if self._IsStatic(key): |
| 23 if key not in self._cached_static_properties: | 23 if key not in self._cached_static_properties: |
| 24 self._cached_static_properties[key] = self._GetProperty(key) | 24 self._cached_static_properties[key] = self._GetProperty(key) |
| 25 return self._cached_static_properties[key] | 25 return self._cached_static_properties[key] |
| 26 return self._GetProperty(key) | 26 return self._GetProperty(key) |
| 27 | 27 |
| 28 def __setitem__(self, key, value): | 28 def __setitem__(self, key, value): |
| 29 # TODO(tonyg): This can fail with no root. Verify that it succeeds. | 29 # TODO(tonyg): This can fail with no root. Verify that it succeeds. |
| 30 self._adb.SendShellCommand('setprop %s "%s"' % (key, value), retry_count=3) | 30 self._adb.SendShellCommand('setprop %s "%s"' % (key, value), retry_count=3) |
| 31 | 31 |
| 32 @staticmethod | 32 def _IsStatic(self, key): |
| 33 def _IsStatic(key): | |
| 34 # TODO(tonyg): This list is conservative and could be expanded as needed. | 33 # TODO(tonyg): This list is conservative and could be expanded as needed. |
| 35 return (key.startswith('ro.boot.') or | 34 return (key.startswith('ro.boot.') or |
| 36 key.startswith('ro.build.') or | 35 key.startswith('ro.build.') or |
| 37 key.startswith('ro.product.')) | 36 key.startswith('ro.product.')) |
| 38 | 37 |
| 39 def _GetProperty(self, key): | 38 def _GetProperty(self, key): |
| 40 return self._adb.SendShellCommand('getprop %s' % key, retry_count=3).strip() | 39 return self._adb.SendShellCommand('getprop %s' % key, retry_count=3).strip() |
| OLD | NEW |