Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
基于AST的代码优化
flyerhzm
October 10, 2015
Programming
10
530
基于AST的代码优化
flyerhzm
October 10, 2015
Tweet
Share
More Decks by flyerhzm
See All by flyerhzm
Rails Performance Tips
flyerhzm
0
1k
Refactor ruby code based on AST
flyerhzm
4
2.8k
Write ruby code to change ruby code
flyerhzm
5
3.1k
Building Asynchronous APIs
flyerhzm
25
8.8k
构建异步API服务
flyerhzm
19
6.7k
JRuby @ OpenFeint
flyerhzm
23
2.8k
Other Decks in Programming
See All in Programming
Independently together: better developer experience & App performance
bcinarli
0
190
模組化的Swift架構(二) DDD速成
haifengkao
0
390
こそこそアジャイル導入しようぜ!
ichimichi
0
1.3k
短納期でローンチした新サービスをJavaで開発した話/launched new service using Java
eichisanden
6
2k
競プロのすすめ
uya116
0
680
Springin‘でみんなもクリエイターに!
ueponx
0
220
データ分析やAIの "運用" について考える
mmorito
0
150
Jetpack Composeでの画面遷移
iwata_n
0
190
開発速度を5倍早くするVSCodeの拡張機能を作った
purp1eeeee
2
160
JSのウェブフレームワークで高速なルーターを実装する方法
usualoma
1
1.9k
大規模プロダクトにLinterを導入し運用している話
hirokiotsuka
0
240
Terraform Plan/Apply結果の自動通知
ymmy02
0
280
Featured
See All Featured
In The Pink: A Labor of Love
frogandcode
131
21k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
269
11k
Visualization
eitanlees
125
11k
Reflections from 52 weeks, 52 projects
jeffersonlam
337
17k
The World Runs on Bad Software
bkeepers
PRO
57
5.3k
The Language of Interfaces
destraynor
148
20k
Mobile First: as difficult as doing things right
swwweet
213
7.5k
Art, The Web, and Tiny UX
lynnandtonic
280
17k
We Have a Design System, Now What?
morganepeng
35
3k
Stop Working from a Prison Cell
hatefulcrawdad
261
17k
How GitHub Uses GitHub to Build GitHub
holman
465
280k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
181
15k
Transcript
基于 AST 的代码优化 ⻩黄志敏
⾃自我介绍 • Xinmin Labs 创始⼈人 • 前 OpenFeint 资深⼯工程师 •
开源社区贡献者 • 半⻢马完赛者 • @flyerhzm
遇到的问题
代码审查
None
None
重复重复重复
None
None
解决⽅方案
CodeClimate
None
None
PullReview
None
如何做到的
开源⼯工具!
flay 分析代码结构相似度
None
flog 分析代码复杂度
None
reek 检查代码类、模块和⽅方法,报告Code Smell
None
roodi 分析并报告代码设计问题
None
rails_best_practices 针对 rails 项⺫⽬目代码检查 code smell
None
如何实现的呢
ruby 代码解析库 => AST
ParseTree • 最早的 ruby 代码解析库 • 不⽀支持 ruby 1.9 和后续版本
ruby_parser • 最流⾏行的 ruby 代码解析库 • 输出结果和 ParseTree ⼀一致
None
None
ActiveRecord::Base belongs_to :user touch :archived_at def archive
ripper • ruby 内置的解析库 • ⽀支持 ruby 的新语法
None
ActiveRecord::Base belongs_to :user def archive touch :archived_at
parser • 新的 ruby 代码解析库 • ⽀支持代码重写
None
ActiveRecord::Base belongs_to :user def archive touch :archived_at
满⾜足需求?
⾃自动修改!
transpec ⾃自动将 rspec 2 的语法转换成 rspec 3 的语法
None
None
None
rubocop 基于社区版的 ruby style guide 的代码分析和重写⼯工具
None
None
None
None
Synvert ruby 语法转换⼯工具
None
None
None
演⽰示
内部项⺫⽬目
None
None
奖励 • seeing_is_believing • method_log
参考资料 CodeClimate - https://codeclimate.com/ PullReview - https://www.pullreview.com/ flay - https://github.com/seattlerb/flay
flog - https://github.com/seattlerb/flog reek - https://github.com/troessner/reek roodi - https://github.com/roodi/roodi rails_best_practices - https://github.com/railsbp/rails_best_practices
参考资料 parsetree - https://github.com/seattlerb/parsetree ruby_parser - https://github.com/seattlerb/ruby_parser parser - https://github.com/whitequark/parser
rubocop - https://github.com/bbatsov/rubocop transpec - https://github.com/yujinakayama/transpec synvert - https://github.com/xinminlabs/synvert
招聘 flyerhzm@xinminlabs.com
谢谢 提问