Files
pidcat-repl/pidcat.py
T

208 lines
6.0 KiB
Python
Raw Normal View History

2013-06-11 22:59:50 -07:00
#!/usr/bin/python
'''
Copyright 2009, The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
# Script to highlight adb logcat output for console
# Written by Jeff Sharkey, http://jsharkey.org/
# Piping detection and popen() added by other Android team members
# Package name restriction by Jake Wharton, http://jakewharton.com
2013-06-12 08:34:23 -07:00
import argparse
import os
import sys
import re
import fcntl
import termios
import struct
2013-06-11 22:59:50 -07:00
2013-06-12 08:34:23 -07:00
parser = argparse.ArgumentParser(description='Filter logcat by package name')
parser.add_argument('package', help='Application package name')
parser.add_argument('--tag-width', metavar='N', dest='tag_width', type=int, default=22, help='Width of log tag')
args = parser.parse_args()
2013-06-12 10:13:27 -07:00
header_size = args.tag_width + 1 + 3 + 1 # space, level, space
2013-06-11 22:59:50 -07:00
# unpack the current terminal width/height
data = fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, '1234')
HEIGHT, WIDTH = struct.unpack('hh',data)
BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
def colorize(message, fg=None, bg=None):
ret = ''
codes = []
if fg is not None: codes.append('3%d' % fg)
if bg is not None: codes.append('10%d' % bg)
if codes:
ret += '\033[%sm' % ';'.join(codes)
ret += message
if codes:
ret += '\033[0m'
return ret
def indent_wrap(message):
2013-06-12 08:34:23 -07:00
wrap_area = WIDTH - header_size
2013-06-12 08:18:53 -07:00
messagebuf = ''
2013-06-11 22:59:50 -07:00
current = 0
while current < len(message):
next = min(current + wrap_area, len(message))
2013-06-12 08:18:53 -07:00
messagebuf += message[current:next]
2013-06-11 22:59:50 -07:00
if next < len(message):
2013-06-12 08:18:53 -07:00
messagebuf += '\n'
2013-06-12 08:34:23 -07:00
messagebuf += ' ' * header_size
2013-06-11 22:59:50 -07:00
current = next
2013-06-12 08:18:53 -07:00
return messagebuf
2013-06-11 22:59:50 -07:00
LAST_USED = [RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN]
KNOWN_TAGS = {
'dalvikvm': WHITE,
'Process': WHITE,
'ActivityManager': WHITE,
'ActivityThread': WHITE,
'AndroidRuntime': CYAN,
'jdwp': WHITE,
}
def allocate_color(tag):
# this will allocate a unique format for the given tag
# since we dont have very many colors, we always keep track of the LRU
if tag not in KNOWN_TAGS:
KNOWN_TAGS[tag] = LAST_USED[0]
color = KNOWN_TAGS[tag]
if color in LAST_USED:
LAST_USED.remove(color)
LAST_USED.append(color)
return color
RULES = {
#re.compile(r"([\w\.@]+)=([\w\.@]+)"): r"%s\1%s=%s\2%s" % (format(fg=BLUE), format(fg=GREEN), format(fg=BLUE), format(reset=True)),
}
TAGTYPES = {
'V': colorize(' V ', fg=WHITE, bg=BLACK),
'D': colorize(' D ', fg=BLACK, bg=BLUE),
'I': colorize(' I ', fg=BLACK, bg=GREEN),
'W': colorize(' W ', fg=BLACK, bg=YELLOW),
'E': colorize(' E ', fg=BLACK, bg=RED),
}
PID_START = re.compile(r'^Start proc ([a-zA-Z0-9._:]+) for ([a-z]+ [^:]+): pid=(\d+) uid=(\d+) gids=(.*)\r?$')
2013-06-11 22:59:50 -07:00
PID_KILL = re.compile(r'^Killing (\d+):([a-zA-Z0-9._]+)/[^:]+: (.*)\r?$')
2013-06-12 08:18:53 -07:00
PID_LEAVE = re.compile(r'^No longer want ([a-zA-Z0-9._]+) \(pid (\d+)\): .*\r?$')
2013-06-12 10:09:30 -07:00
PID_DEATH = re.compile(r'^Process ([a-zA-Z0-9._]+) \(pid (\d+)\) has died.?\r$')
2013-06-11 22:59:50 -07:00
LOG_LINE = re.compile(r'^([A-Z])/([^\(]+)\( *(\d+)\): (.*)\r?$')
2013-06-12 13:30:58 -06:00
BUG_LINE = re.compile(r'^(?!.*(nativeGetEnabledTags)).*$')
2013-06-11 22:59:50 -07:00
input = os.popen('adb logcat')
2013-06-12 09:38:00 -07:00
pids = set()
2013-06-12 10:17:22 -07:00
last_tag = None
2013-06-11 22:59:50 -07:00
2013-06-12 10:09:30 -07:00
def parse_death(tag, message):
if tag != 'ActivityManager':
return None
kill = PID_KILL.match(message)
if kill:
pid = kill.group(1)
if kill.group(2).find(args.package) != -1 and pid in pids:
2013-06-12 10:09:30 -07:00
return pid
leave = PID_LEAVE.match(message)
if leave:
pid = leave.group(2)
if leave.group(1).find(args.package) != -1 and pid in pids:
2013-06-12 10:09:30 -07:00
return pid
death = PID_DEATH.match(message)
if death:
pid = death.group(2)
if death.group(1).find(args.package) != -1 and pid in pids:
2013-06-12 10:09:30 -07:00
return pid
return None
2013-06-11 22:59:50 -07:00
while True:
try:
line = input.readline()
except KeyboardInterrupt:
break
2013-06-12 09:31:26 -07:00
if len(line) == 0:
break
2013-06-11 22:59:50 -07:00
2013-06-12 13:30:58 -06:00
bug_line = BUG_LINE.match(line)
if bug_line is None:
continue
2013-06-11 22:59:50 -07:00
log_line = LOG_LINE.match(line)
if not log_line is None:
level, tag, owner, message = log_line.groups()
start = PID_START.match(message)
if start is not None:
line_package, target, line_pid, line_uid, line_gids = start.groups()
if line_package.find(args.package) != -1:
2013-06-12 09:38:00 -07:00
pids.add(line_pid)
2013-06-11 22:59:50 -07:00
2013-06-12 10:10:12 -07:00
linebuf = colorize(' ' * (header_size - 1), bg=WHITE)
2013-06-12 08:18:53 -07:00
linebuf += indent_wrap(' Process created for %s\n' % target)
2013-06-12 08:34:23 -07:00
linebuf += colorize(' ' * (header_size - 1), bg=WHITE)
2013-06-12 08:18:53 -07:00
linebuf += ' PID: %s UID: %s GIDs: %s' % (line_pid, line_uid, line_gids)
linebuf += '\n'
print linebuf
2013-06-12 10:17:22 -07:00
last_tag = None # Ensure next log gets a tag printed
else:
print line_package
2013-06-11 22:59:50 -07:00
2013-06-12 10:09:30 -07:00
dead_pid = parse_death(tag, message)
if dead_pid:
pids.remove(dead_pid)
linebuf = '\n'
linebuf += colorize(' ' * (header_size - 1), bg=RED)
2013-06-12 10:24:31 -07:00
linebuf += ' Process %s ended' % dead_pid
2013-06-12 10:10:12 -07:00
linebuf += '\n'
2013-06-12 10:09:30 -07:00
print linebuf
2013-06-12 10:17:22 -07:00
last_tag = None # Ensure next log gets a tag printed
2013-06-11 22:59:50 -07:00
2013-06-12 09:38:00 -07:00
if owner not in pids:
2013-06-11 22:59:50 -07:00
continue
2013-06-12 08:18:53 -07:00
linebuf = ''
2013-06-11 22:59:50 -07:00
# right-align tag title and allocate color if needed
tag = tag.strip()
2013-06-12 10:21:07 -07:00
if tag != last_tag:
2013-06-12 10:17:22 -07:00
last_tag = tag
color = allocate_color(tag)
tag = tag[-args.tag_width:].rjust(args.tag_width)
linebuf += colorize(tag, fg=color)
else:
linebuf += ' ' * args.tag_width
2013-06-12 08:18:53 -07:00
linebuf += ' '
2013-06-11 22:59:50 -07:00
# write out level colored edge
if level not in TAGTYPES: break
2013-06-12 08:18:53 -07:00
linebuf += TAGTYPES[level]
linebuf += ' '
2013-06-11 22:59:50 -07:00
# format tag message using rules
for matcher in RULES:
replace = RULES[matcher]
message = matcher.sub(replace, message)
2013-06-12 08:18:53 -07:00
linebuf += indent_wrap(message)
2013-06-12 09:31:26 -07:00
print linebuf