本文整理汇总了Python中Trace.read_rtp_trace方法的典型用法代码示例。如果您正苦于以下问题:Python Trace.read_rtp_trace方法的具体用法?Python Trace.read_rtp_trace怎么用?Python Trace.read_rtp_trace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Trace
的用法示例。
在下文中一共展示了Trace.read_rtp_trace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: load_trace
# 需要导入模块: import Trace [as 别名]
# 或者: from Trace import read_rtp_trace [as 别名]
def load_trace(self, trace_name, trace_id):
filepath = os.path.join(Config.TRACES_DIR, trace_name)
self.logger.debug('reading trace file %s' % filepath)
try:
with open(filepath) as f:
trace = Trace.read_rtp_trace(f)
if trace[0]['id'] != trace_id:
raise ValueError('trace id mismatch (%s instead of %s) for trace %s'
% (trace_id, trace[0]['id'], trace_name))
return trace
except (IOError, ValueError) as e:
self.logger.error('failed to read trace file %s (%s)' % (filepath, e))
raise