1#!/usr/bin/env python3 2# 3# Copyright 2018 - The Android Open Source Project 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16 17from acts.event.event import Event 18 19 20class AndroidEvent(Event): 21 """The base class for AndroidDevice-related events.""" 22 23 def __init__(self, android_device): 24 self.android_device = android_device 25 26 @property 27 def ad(self): 28 return self.android_device 29 30 31class AndroidStartServicesEvent(AndroidEvent): 32 """The event posted when an AndroidDevice begins its services.""" 33 34 35class AndroidStopServicesEvent(AndroidEvent): 36 """The event posted when an AndroidDevice ends its services.""" 37 38 39class AndroidRebootEvent(AndroidEvent): 40 """The event posted when an AndroidDevice has rebooted.""" 41 42 43class AndroidDisconnectEvent(AndroidEvent): 44 """The event posted when an AndroidDevice has disconnected.""" 45 46 47class AndroidReconnectEvent(AndroidEvent): 48 """The event posted when an AndroidDevice has disconnected.""" 49 50 51class AndroidBugReportEvent(AndroidEvent): 52 """The event posted when an AndroidDevice captures a bugreport.""" 53 54 def __init__(self, android_device, bugreport_dir): 55 super().__init__(android_device) 56 self.bugreport_dir = bugreport_dir 57