IOS编程之Android代码调试工具traceview和dmtracedump的妨害归纳仓酷云
继承自相应的不可变类比如NSMutableArray继承自NSArray他们都添加了可以改变对象内容的方法比如-(void)addObject:(id)anObject添加对象-(void)removeObject:(id)anObject删除对象上面只是一个大概的总结Android程序调试工具Google为我们供应的代码调试工具的亮点:traceview和dmtracedump。有了这两个工具,我们调试程序剖析bug就十分轻车熟路了。traceview匡助我们剖析程序功能,dmtracedump天生函数挪用图。遗憾的是,google供应的dmtracedump是个失利的工具,其实不能画图,本文会具体先容办理计划,完成画图。
天生.trace文件
android.os.Debug类,个中主要的两个办法Debug.startMethodTracing()和Debug.stopMethodTracing()。这两个办法用来创立.trace文件,将从Debug.startMethodTracing()入手下手,到Debug.stopMethodTracing()停止,时代一切的挪用历程保留在.trace文件中,包含挪用的函数称号和实行的工夫等信息。
把上面代码分离在加在调试肇端代码的地位,和停止地位。
[*]Debug.startMethodTracing(“test”);
[*]Debug.stopMethodTracing();
Debug.startMethodTracing(“test”);Debug.stopMethodTracing();
个中参数test是要创立的trace文件的称号,test.trace。默许路径是/sdcard/test.trace,也能够本人制订/data/log/test,暗示文件在/data/log/test.trace。
traceview
在SDK中实行:
./traceviewtest.trace
我们能够失掉
1.程序中每一个线程挪用办法的启动和中断工夫
<br>
2.函数实行的信息和效力剖析
<br>
dmtracedump
dmtracedump底本的意图是将全部挪用历程和工夫剖析分离,以函数挪用图的情势体现出来。但是google这个项目一向处于broken形态,迟迟不克不及失掉完美。如今的dmtracdump只要-o选项可使用,在终端上列出函数挪用信息,和traceview功效类似,假如实行./dmtracedump–gtest.pngtest.trace就会卡住不动。后来我觉得是test.trace文件的成绩,对文件的停止符稍作修正,画出了一副雷人的图片:
<br>
厥后,搜到了收集上有牛人供应了dmtracedump的替换(这是原文链接),是一个python剧本,借助dot来绘制矢量图。python剧本必定要注重对齐格局,对齐缩进就是他的逻辑布局。
[*]#!/usr/bin/envpython
[*]"""
[*]turnthetraceviewdataintoajpgpic,showingmethodscallrelationship
[*]"""
[*]importsys
[*]importos
[*]importstruct
[*]importre
[*]################################################################################
[*]########################GlobalVariable#####################################
[*]################################################################################
[*]target_thread=1#thethreadthatwewanttotrack,filtoutotherthreads
[*]#all_actions=["enter","exit","exception","reserved"]
[*]all_threads={}
[*]all_methods={}
[*]all_records=[]
[*]parent_methods={}
[*]child_methods={}
[*]method_calls={}
[*]################################################################################
[*]##############################Methods#####################################
[*]################################################################################
[*]defadd_one_thread(line):
[*]fields=line.split("/t")
[*]all_threads,10)]=fields
[*]defadd_one_method(line):
[*]fields=line.split("/t")
[*]all_methods,16)]=fields
[*]defadd_one_record(one):
[*]thread_id,=struct.unpack("B",one[:1])
[*]if(thread_id==target_thread):
[*]tmp,=struct.unpack("L",one)
[*]method_id=(tmp/4)*4;
[*]method_action=tmp%4;
[*]time_offset,=struct.unpack("L",one)
[*]all_records.append()
[*]defhandle_one_call(parent_method_id,method_id):
[*]ifnot(parent_methods.has_key(parent_method_id)):
[*]parent_methods=1
[*]ifnot(child_methods.has_key(method_id)):
[*]child_methods=1
[*]ifmethod_calls.has_key(parent_method_id):
[*]ifmethod_calls.has_key(method_id):
[*]method_calls+=1
[*]else:
[*]method_calls=1
[*]else:
[*]method_calls={}
[*]method_calls=1
[*]defgen_funcname(method_id):
[*]r1=re.compile(r[/{1}lt;>])
[*]str1=r1.sub("_",all_methods)
[*]str2=r1.sub("_",all_methods)
[*]returnstr1+"_"+str2
[*]defgen_dot_script_file():
[*]myoutfile=open("graph.dot","w")
[*]myoutfile.write("digraphvanzo{/n/n");
[*]foroneinall_methods.keys():
[*]ifparent_methods.has_key(one):
[*]myoutfile.write(gen_funcname(one)+";/n")
[*]else:
[*]ifchild_methods.has_key(one):
[*]myoutfile.write(gen_funcname(one)+";/n")
[*]foroneinmethod_calls.keys():
[*]fortwoinmethod_calls:
[*]myoutfile.write(gen_funcname(one)+->+gen_funcname(two)+)+"fontsize="10"];/n)
[*]myoutfile.write("/n}/n");
[*]myoutfile.close
[*]
[*]################################################################################
[*]##########################Scriptstartsfromhere#############################
[*]################################################################################
[*]iflen(sys.argv)<2:
[*]printNoinputfilespecified.
[*]sys.exit()
[*]ifnot(os.path.exists(sys.argv)):
[*]print"inputfilenotexists"
[*]sys.exit()
[*]#Nowhandlethetextpart
[*]current_section=0
[*]forlineinopen(sys.argv):
[*]line2=line.strip()
[*]if(line2.startswith("*")):
[*]if(line2.startswith("*version")):
[*]current_section=1
[*]else:
[*]if(line2.startswith("*threads")):
[*]current_section=2
[*]else:
[*]if(line2.startswith("*methods")):
[*]current_section=3
[*]else:
[*]if(line2.startswith("*end")):
[*]current_section=4
[*]break
[*]continue
[*]ifcurrent_section==2:
[*]add_one_thread(line2)
[*]ifcurrent_section==3:
[*]add_one_method(line2)
[*]
[*]#Nowhandlethebinarypart
[*]mybinfile=open(sys.argv,"rb")
[*]alldata=mybinfile.read()
[*]mybinfile.close()
[*]pos=alldata.find("SLOW")
[*]offset,=struct.unpack("H",alldata)
[*]pos2=pos+offset#pos2iswheretherecordbegin
[*]numofrecords=len(alldata)-pos2
[*]numofrecords=numofrecords/9
[*]foriinxrange(numofrecords):
[*]add_one_record(alldata)
[*]my_stack=
[*]foronerecordinall_records:
[*]thread_id=onerecord;
[*]method_id=onerecord;
[*]action=onerecord;
[*]time=onerecord;
[*]if(action==0):
[*]if(len(my_stack)>1):
[*]parent_method_id=my_stack[-1]
[*]handle_one_call(parent_method_id,method_id)
[*]my_stack.append(method_id)
[*]else:
[*]if(action==1):
[*]if(len(my_stack)>1):
[*]my_stack.pop()
[*]gen_dot_script_file()
[*]os.system("dot-Tjpggraph.dot-ooutput.jpg;rm-fgraph.dot");
#!/usr/bin/envpython"""turnthetraceviewdataintoajpgpic,showingmethodscallrelationship"""importsysimportosimportstructimportre########################################################################################################GlobalVariable#####################################################################################################################target_thread=1#thethreadthatwewanttotrack,filtoutotherthreads#all_actions=["enter","exit","exception","reserved"]all_threads={}all_methods={}all_records=[]parent_methods={}child_methods={}method_calls={}##############################################################################################################Methods#####################################################################################################################defadd_one_thread(line):fields=line.split("/t")all_threads,10)]=fieldsdefadd_one_method(line):fields=line.split("/t")all_methods,16)]=fieldsdefadd_one_record(one):thread_id,=struct.unpack("B",one[:1])if(thread_id==target_thread):tmp,=struct.unpack("L",one)method_id=(tmp/4)*4;method_action=tmp%4;time_offset,=struct.unpack("L",one)all_records.append()defhandle_one_call(parent_method_id,method_id):ifnot(parent_methods.has_key(parent_method_id)):parent_methods=1ifnot(child_methods.has_key(method_id)):child_methods=1ifmethod_calls.has_key(parent_method_id):ifmethod_calls.has_key(method_id):method_calls+=1else:method_calls=1else:method_calls={}method_calls=1defgen_funcname(method_id):r1=re.compile(r[/{1}lt;>])str1=r1.sub("_",all_methods)str2=r1.sub("_",all_methods)returnstr1+"_"+str2defgen_dot_script_file():myoutfile=open("graph.dot","w")myoutfile.write("digraphvanzo{/n/n");foroneinall_methods.keys():ifparent_methods.has_key(one):myoutfile.write(gen_funcname(one)+";/n")else:ifchild_methods.has_key(one):myoutfile.write(gen_funcname(one)+";/n")foroneinmethod_calls.keys():fortwoinmethod_calls:myoutfile.write(gen_funcname(one)+->+gen_funcname(two)+)+"fontsize="10"];/n)myoutfile.write("/n}/n");myoutfile.close##########################################################################################################Scriptstartsfromhere#############################################################################################################iflen(sys.argv)<2:printNoinputfilespecified.sys.exit()ifnot(os.path.exists(sys.argv)):print"inputfilenotexists"sys.exit()#Nowhandlethetextpartcurrent_section=0forlineinopen(sys.argv):line2=line.strip()if(line2.startswith("*")):if(line2.startswith("*version")):current_section=1else:if(line2.startswith("*threads")):current_section=2else:if(line2.startswith("*methods")):current_section=3else:if(line2.startswith("*end")):current_section=4breakcontinueifcurrent_section==2:add_one_thread(line2)ifcurrent_section==3:add_one_method(line2)#Nowhandlethebinarypartmybinfile=open(sys.argv,"rb")alldata=mybinfile.read()mybinfile.close()pos=alldata.find("SLOW")offset,=struct.unpack("H",alldata)pos2=pos+offset#pos2iswheretherecordbeginnumofrecords=len(alldata)-pos2numofrecords=numofrecords/9foriinxrange(numofrecords):add_one_record(alldata)my_stack=foronerecordinall_records:thread_id=onerecord;method_id=onerecord;action=onerecord;time=onerecord;if(action==0):if(len(my_stack)>1):parent_method_id=my_stack[-1]handle_one_call(parent_method_id,method_id)my_stack.append(method_id)else:if(action==1):if(len(my_stack)>1):my_stack.pop()gen_dot_script_file()os.system("dot-Tjpggraph.dot-ooutput.jpg;rm-fgraph.dot");
修正,/t变成 ,/n变成
。
在盘算器的源码onCreate中增加
[*]Debug.startMethodTracing(“calc”);
[*]Log.v(LOG_TAGS”+++++++++++++++++++++++++test++++++++++++++++”);
[*]Debug.stopMethodTracing();
Debug.startMethodTracing(“calc”);Log.v(LOG_TAGS”+++++++++++++++++++++++++test++++++++++++++++”);Debug.stopMethodTracing();运转剧本失掉calc.trace,画出out.jpg
<br>
可当失掉的trace文件对照庞大时绘图就会溃散。修正剧本最初实行dot命令时的参数,jpg格局太年夜简单溃散,-Tjpg改成-Tpng:gd,画年夜幅png。
我拿camera做了个实行,失掉的png甚年夜,这是个中一角:
<br>
除了在程序加载的时候把我的view加载到他上目前我还没用到过其他的苹果一直很推崇MVC的程序结构视图模型控制器简单说就是视图负责显示内容模型负责所有数据的保存结构或者一些其他数据操作控制器是用来协调视图和模型举车的发动机系统的例子 众多研发人员积极参与到iOS平台的开发中来也就不足为奇了。 看完这个你就可以有多种选择来踏入做应用的阶段 才在自己的Windows电脑上安装配置成功了一个完美的Mac OS X Lion(10.7.4)系统,而且下载了Xcode4.5的最新版本。虽然不能实机调试,但是作为iOS开发学习已经非常完美了。 培训的时候很痛苦,每天要待12个小时,上午讲课,下午和晚自习解决作业,看文档,学习的时候感觉就是资料太少,而且看着资料也不明所以,非常痛苦, 开始的时候甚至想放弃,不过想想自己的未来,只能咬牙坚持,课下就不停的缠着老师。放学就补基础,这些基础的东西没有速成的,只有刻苦努力。我是后来发现的,转变自己的心态,不要读书看资料当成一种痛苦 因为我们老师也是自学的,给我们讲课说的最多的就是百度,谷歌,查文档。 培训时可以选择安卓,iOS,Java,因为实习的时候我选了安卓,当时实习时间只有三周,学的晕头转向,而java我也没学过,iOS的基础是C语言,这个大学里还是学过的,于是选择了iOS。 在百度搜索你想要了解的类名(苹果的cocoa和cocoatouch框架的类名很有特点很容易搜到,前缀都是NS or UI),看别人写的博客详解 培训时可以选择安卓,iOS,Java,因为实习的时候我选了安卓,当时实习时间只有三周,学的晕头转向,而java我也没学过,iOS的基础是C语言,这个大学里还是学过的,于是选择了iOS。 在百度搜索你想要了解的类名(苹果的cocoa和cocoatouch框架的类名很有特点很容易搜到,前缀都是NS or UI),看别人写的博客详解 其实在培训的过程中,学习到最多的就是查资料的方式,当时感觉老师好坑,什么都不告诉我们,让我们自己去查,但是现在觉得还是要自己解决问题,这样才能理解的更加深入。 down下code4app网站的每个分类的代码挨着看 培训时可以选择安卓,iOS,Java,因为实习的时候我选了安卓,当时实习时间只有三周,学的晕头转向,而java我也没学过,iOS的基础是C语言,这个大学里还是学过的,于是选择了iOS。 重要的是,放眼全球也的确找不到第二个如苹果iOS平台这样健壮、完整、先进而且为开发者带来真实收益的开发平台来。 其实在培训的过程中,学习到最多的就是查资料的方式,当时感觉老师好坑,什么都不告诉我们,让我们自己去查,但是现在觉得还是要自己解决问题,这样才能理解的更加深入。 学习ios没什么捷径,关键在于多动手敲,曾看到前辈开玩笑说怎么快速学会某技术,答案是:“提高打字速度,快点写代码就能快点学会了”。 每个行业都一样,想要一天学有所成是不可能的,一定要做好努力的准备,做ios不是简单的学会oc语言。不怕多走弯路,就怕不肯动手。 有办法利用自己手头的电脑立刻开始这个美妙旅程的。 要学会通过各种方法将面前的事情变成自己感兴趣的,那专研起来就不会是无聊和折磨了。
页:
[1]