GenericLogcatEventParser
  public
  
  
  
  class
  GenericLogcatEventParser
  
    extends Object
  
  
  
  
  
  
| java.lang.Object | |
| ↳ | com.android.tradefed.util.GenericLogcatEventParser<LogcatEventType> | 
Parse logcat input for events.
This class interprets logcat messages and can inform the listener of events in both a blocking and polling fashion.
Summary
Nested classes | |
|---|---|
        
        
        
        
        class | 
      
        GenericLogcatEventParser.LogcatEvent
        Struct to hold a logcat event with the event type and triggering logcat message  | 
    
Public constructors | |
|---|---|
      
      GenericLogcatEventParser(ITestDevice device)
      
      
        Instantiates a new LogcatEventParser  | 
  |
Public methods | |
|---|---|
        
        
        
        
        
        void
     | 
  
    
      
      close()
      
      
        Stop listening to logcat.  | 
  
        
        
        
        
        
        void
     | 
  
    
      
      parseEvents(String[] lines)
      
      
        Parse logcat lines and add any captured events (that were registered with   | 
  
        
        
        
        
        
        GenericLogcatEventParser.LogcatEvent
     | 
  
    
      
      pollForEvent()
      
      
        Polls the event queue.  | 
  
        
        
        
        
        
        void
     | 
  
    
      
      registerEventTrigger(String tag, String msg, LogcatEventType response)
      
      
        Register an event of given logcat tag and message with the desired response.  | 
  
        
        
        
        
        
        void
     | 
  
    
      
      registerEventTrigger(Log.LogLevel logLevel, String tag, String msg, LogcatEventType response)
      
      
        Register an event of given logcat level, tag and message with the desired response.  | 
  
        
        
        
        
        
        void
     | 
  
    
      
      start()
      
      
        Start listening to logcat and parsing events.  | 
  
        
        
        
        
        
        GenericLogcatEventParser.LogcatEvent
     | 
  
    
      
      waitForEvent(long timeoutMs)
      
      
        Blocks until it receives an event.  | 
  
Public constructors
GenericLogcatEventParser
public GenericLogcatEventParser (ITestDevice device)
Instantiates a new LogcatEventParser
| Parameters | |
|---|---|
device | 
        
          ITestDevice: to read logcat from | 
      
Public methods
close
public void close ()
Stop listening to logcat.
parseEvents
public void parseEvents (String[] lines)
Parse logcat lines and add any captured events (that were registered with registerEventTrigger(String, String, LogcatEventType)) to the event queue.
| Parameters | |
|---|---|
lines | 
        
          String  | 
      
pollForEvent
public GenericLogcatEventParser.LogcatEvent pollForEvent ()
Polls the event queue. Returns immediately.
| Returns | |
|---|---|
GenericLogcatEventParser.LogcatEvent | 
        The event or null if no matching event is found | 
      
registerEventTrigger
public void registerEventTrigger (String tag, 
                String msg, 
                LogcatEventType response)Register an event of given logcat tag and message with the desired response. Message may be partial.
| Parameters | |
|---|---|
tag | 
        
          String  | 
      
msg | 
        
          String  | 
      
response | 
        
          LogcatEventType  | 
      
registerEventTrigger
public void registerEventTrigger (Log.LogLevel logLevel, 
                String tag, 
                String msg, 
                LogcatEventType response)Register an event of given logcat level, tag and message with the desired response. Message may be partial.
| Parameters | |
|---|---|
logLevel | 
        
          Log.LogLevel  | 
      
tag | 
        
          String  | 
      
msg | 
        
          String  | 
      
response | 
        
          LogcatEventType  | 
      
start
public void start ()
Start listening to logcat and parsing events.
waitForEvent
public GenericLogcatEventParser.LogcatEvent waitForEvent (long timeoutMs)
Blocks until it receives an event.
| Parameters | |
|---|---|
timeoutMs | 
        
          long: Time to wait in milliseconds | 
      
| Returns | |
|---|---|
GenericLogcatEventParser.LogcatEvent | 
        The event or null if the timeout is reached | 
      
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2023-04-28 UTC.