我自己写的时间戳差值,好像有好多问题。。老师能帮忙指出来吗?包含语法和类的用法上面的问题
来源:2-6 【启动时间】时间戳差值监控方法概要介绍

pocketsun
2016-12-10
import os
import time
class LaunchApp(object):
def __init__(self):
self.content = ''
def launch(self):
cmd = 'adb shell am start -W -n com.android.browser/.BrowserActivity'
self.content = os.popen(cmd)
def launchTime(self):
currentTime = time.strftime("%Y-%m-%d %H%M%S",time.localtime())
return currentTime
class StopApp(object):
def __init__(self):
self.content = ''
def stop(self):
cmd = 'adb shell input keyboard 3'
self.content = os.popen(cmd)
def stopTime(self):
currentTime = time.strftime("%Y-%m-%d %H%M%S",time.localtime())
return currentTime
class CalculateTime(object):
def __init__(self):
self.timestamp = 0
def calculate(self):
time = self.timestamp = StopApp.stopTime() - LaunchApp.launchTime()
print time
if __name__ == "__main__":
LaunchApp.launch()
StopApp.stop()
CalculateTime.calculate()
改了几次,好多都是这种报错:
TypeError: unbound method stopTime() must be called with StopApp instance as first argument (got nothing instead)
2回答
-
我大概是个单身狗
2017-07-27
#/usr/bin/python
#encoding:utf-8
import csv
import os
import time
import datetime
#方法一:去命令执行后的返回值#方法二:取命令执行前后的时间差
class App(object):
def __init__(self):
self.content = ""
self.startTime = 0
#启动App
def LaunchApp(self):
cmd = 'adb shell am start -W -n com.firevale.coclua.device/com.firevale.coclua.Main'
self.content=os.popen(cmd)
#停止App
def StopApp(self):
cmd = 'adb shell am force-stop com.firevale.coclua.device'
#cmd = 'adb shell input keyevent 3'
os.popen(cmd)
''' #获取启动时间
def GetLaunchedTime(self):
for line in self.content.readlines():
if "ThisTime" in line:
self.startTime = line.split(":")[1]
break
return self.startTime
'''
#控制类
class Controller(object):
def __init__(self, count):
self.app = App()
self.counter = count
self.alldata = [("startTime", "endTime","elapsedtime")]
#单次测试过程
def testprocess(self):
self.app.LaunchApp()
startTime = time.strftime("%Y-%m-%d %H%M%S", time.localtime())
startTime = datetime.datetime.strptime(startTime, "%Y-%m-%d %H%M%S")
time.sleep(10)
#elpasedtime = self.app.GetLaunchedTime()
self.app.StopApp()
endTime = time.strftime("%Y-%m-%d %H%M%S", time.localtime())
endTime = datetime.datetime.strptime(endTime, "%Y-%m-%d %H%M%S")
time.sleep(5)
elapsedtime = (endTime - startTime).seconds
#currenttime = self.getCurrentTime()
self.alldata.append((startTime, endTime,elapsedtime))
#多次执行测试过程
def run(self):
while self.counter >0:
self.testprocess()
self.counter = self.counter - 1
''' #获取当前的时间戳
def getCurrentTime(self):
currentTime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
return currentTime
'''
#数据的存储
def SaveDataToCSV(self):
csvfile = file('startTime2.csv', 'wb')
writer = csv.writer(csvfile)
writer.writerows(self.alldata)
csvfile.close()
if __name__ == "__main__":
controller = Controller(1)
controller.run()
controller.SaveDataToCSV()012017-07-27 -
pocketsun
提问者
2016-12-11
https://segmentfault.com/a/1190000004278331
好吧,我自己解决了,这些class都是实例,调用它们里边的方法时加()就解决了还有个问题,时间戳的减法怎么写?现在提示我 str - str不能运行,有知道的吗???
00
相似问题