|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
继承自相应的不可变类比如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.函数实行的信息和效力剖析
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[int(fields[0],10)]=fields
- defadd_one_method(line):
- fields=line.split("/t")
- all_methods[int(fields[0],16)]=fields
- defadd_one_record(one):
- thread_id,=struct.unpack("B",one[:1])
- if(thread_id==target_thread):
- tmp,=struct.unpack("L",one[1:5])
- method_id=(tmp/4)*4;
- method_action=tmp%4;
- time_offset,=struct.unpack("L",one[5:])
- all_records.append([thread_id,method_id,method_action,time_offset])
- defhandle_one_call(parent_method_id,method_id):
- ifnot(parent_methods.has_key(parent_method_id)):
- parent_methods[parent_method_id]=1
- ifnot(child_methods.has_key(method_id)):
- child_methods[method_id]=1
- ifmethod_calls.has_key(parent_method_id):
- ifmethod_calls[parent_method_id].has_key(method_id):
- method_calls[parent_method_id][method_id]+=1
- else:
- method_calls[parent_method_id][method_id]=1
- else:
- method_calls[parent_method_id]={}
- method_calls[parent_method_id][method_id]=1
- defgen_funcname(method_id):
- r1=re.compile(r[/{1}lt;>])
- str1=r1.sub("_",all_methods[method_id][1])
- str2=r1.sub("_",all_methods[method_id][2])
- 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)+"[shape=rectangle];/n")
- else:
- ifchild_methods.has_key(one):
- myoutfile.write(gen_funcname(one)+"[shape=ellipse];/n")
- foroneinmethod_calls.keys():
- fortwoinmethod_calls[one]:
- myoutfile.write(gen_funcname(one)+->+gen_funcname(two)+[label="+str(method_calls[one][two])+"fontsize="10"];/n)
- myoutfile.write("/n}/n");
- myoutfile.close
- ################################################################################
- ##########################Scriptstartsfromhere#############################
- ################################################################################
- iflen(sys.argv)<2:
- printNoinputfilespecified.
- sys.exit()
- ifnot(os.path.exists(sys.argv[1])):
- print"inputfilenotexists"
- sys.exit()
- #Nowhandlethetextpart
- current_section=0
- forlineinopen(sys.argv[1]):
- 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[1],"rb")
- alldata=mybinfile.read()
- mybinfile.close()
- pos=alldata.find("SLOW")
- offset,=struct.unpack("H",alldata[pos+6:pos+8])
- pos2=pos+offset#pos2iswheretherecordbegin
- numofrecords=len(alldata)-pos2
- numofrecords=numofrecords/9
- foriinxrange(numofrecords):
- add_one_record(alldata[pos2+i*9:pos2+i*9+9])
- my_stack=[0]
- foronerecordinall_records:
- thread_id=onerecord[0];
- method_id=onerecord[1];
- action=onerecord[2];
- time=onerecord[3];
- 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[int(fields[0],10)]=fieldsdefadd_one_method(line):fields=line.split("/t")all_methods[int(fields[0],16)]=fieldsdefadd_one_record(one):thread_id,=struct.unpack("B",one[:1])if(thread_id==target_thread):tmp,=struct.unpack("L",one[1:5])method_id=(tmp/4)*4;method_action=tmp%4;time_offset,=struct.unpack("L",one[5:])all_records.append([thread_id,method_id,method_action,time_offset])defhandle_one_call(parent_method_id,method_id):ifnot(parent_methods.has_key(parent_method_id)):parent_methods[parent_method_id]=1ifnot(child_methods.has_key(method_id)):child_methods[method_id]=1ifmethod_calls.has_key(parent_method_id):ifmethod_calls[parent_method_id].has_key(method_id):method_calls[parent_method_id][method_id]+=1else:method_calls[parent_method_id][method_id]=1else:method_calls[parent_method_id]={}method_calls[parent_method_id][method_id]=1defgen_funcname(method_id):r1=re.compile(r[/{1}lt;>])str1=r1.sub("_",all_methods[method_id][1])str2=r1.sub("_",all_methods[method_id][2])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)+"[shape=rectangle];/n")else:ifchild_methods.has_key(one):myoutfile.write(gen_funcname(one)+"[shape=ellipse];/n")foroneinmethod_calls.keys():fortwoinmethod_calls[one]:myoutfile.write(gen_funcname(one)+->+gen_funcname(two)+[label="+str(method_calls[one][two])+"fontsize="10"];/n)myoutfile.write("/n}/n");myoutfile.close##########################################################################################################Scriptstartsfromhere#############################################################################################################iflen(sys.argv)<2:printNoinputfilespecified.sys.exit()ifnot(os.path.exists(sys.argv[1])):print"inputfilenotexists"sys.exit()#Nowhandlethetextpartcurrent_section=0forlineinopen(sys.argv[1]):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[1],"rb")alldata=mybinfile.read()mybinfile.close()pos=alldata.find("SLOW")offset,=struct.unpack("H",alldata[pos+6:pos+8])pos2=pos+offset#pos2iswheretherecordbeginnumofrecords=len(alldata)-pos2numofrecords=numofrecords/9foriinxrange(numofrecords):add_one_record(alldata[pos2+i*9:pos2+i*9+9])my_stack=[0]foronerecordinall_records:thread_id=onerecord[0];method_id=onerecord[1];action=onerecord[2];time=onerecord[3];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的程序结构视图模型控制器简单说就是视图负责显示内容模型负责所有数据的保存结构或者一些其他数据操作控制器是用来协调视图和模型举车的发动机系统的例子 |
|