SlideShare a Scribd company logo
Hackathon
Diff+
Content
1.
2.
3.
4.

Diff+
Mercurial API
Mercurial Extensions
Results
Diff+
Analyzes java source files
It is a mercurial extension
Get two revisions
Prints diff of class and method numbers
Mercurial API
http://mercurial.selenic.com/wiki/MercurialApi

You can easily get a repo and revision
from mercurial import ui, hg
repo = hg.repository(ui.ui(), repoName)
cctx = repo[revision]

Change context has files
File Context has actual data
Mercurial Extension
http://mercurial.selenic.com/wiki/WritingExtensions
cmdtable = {
"analyze-java": (analyzeJava,
#[('r', 'revision', None, 'Other
revision to be compared')],
[],
"hg analyze-java [options] REV REV2")
}
def analyzeJava(ui, repo, revision, revisionDiff, **opts):
Mercurial Extension
How to use?
[extensions]
analyze-java= /home/POZITRON/erkin.unlu/setups/hganalyze/analyzer_ext.py
Results
hg analyze-java tip 2a80266f6adf
revision to get:

tip

total class count in project: 828
total method count in project: 4834
revision to get:

2a80266f6adf

total class count in project: 784
total method count in project: 4600
class diff between revisions: 44
method diff between revisions: 234
Repo
https://bitbucket.org/lost_mohican/changeset_analyzer

More Related Content

PPTX
EX-6-Implement Matrix Multiplication with Hadoop Map Reduce.pptx
PDF
Apache FTP Server Integration
PDF
Custom deployments with sbt-native-packager
PDF
Sbt Concepts - Tips, Tricks, Sandbox, ... 02/2013
ODP
Java 7 Features and Enhancements
TXT
Codigo java
PPTX
Spring & Hibernate
TXT
EX-6-Implement Matrix Multiplication with Hadoop Map Reduce.pptx
Apache FTP Server Integration
Custom deployments with sbt-native-packager
Sbt Concepts - Tips, Tricks, Sandbox, ... 02/2013
Java 7 Features and Enhancements
Codigo java
Spring & Hibernate

What's hot (14)

PDF
CertiFUNcation 2017 Best Practices Extension Development for TYPO3 8 LTS
PDF
Easy REST APIs with Jersey and RestyGWT
DOC
PDF
Source Code for Dpilot
PDF
Dpilot Source Code With ScreenShots
PDF
Python Google Cloud Function with CORS
DOCX
Code red SUM
PDF
Using Fuzzy Code Search to Link Code Fragments in Discussions to Source Code
ODP
Sql lite android
PDF
PPTX
Apache Solr Workshop
PDF
Java EE 6 CDI Integrates with Spring & JSF
PPTX
Harmony first step
PDF
Android Data Persistence
CertiFUNcation 2017 Best Practices Extension Development for TYPO3 8 LTS
Easy REST APIs with Jersey and RestyGWT
Source Code for Dpilot
Dpilot Source Code With ScreenShots
Python Google Cloud Function with CORS
Code red SUM
Using Fuzzy Code Search to Link Code Fragments in Discussions to Source Code
Sql lite android
Apache Solr Workshop
Java EE 6 CDI Integrates with Spring & JSF
Harmony first step
Android Data Persistence

Similar to Hackathon (8)

PPT
How to start your open source project
PPTX
Mercurial presentation
PDF
Introduction to mercurial
PDF
GTALUG Short Talk On Mercurial
PDF
Mercurial The Definitive Guide 1st Edition Bryan O'Sullivan
ZIP
Mercurial Distributed Version Control
PDF
JavaDiff - Java source code diff tool
PDF
Mercurial The Definitive Guide 1st Edition Bryan O'Sullivan
How to start your open source project
Mercurial presentation
Introduction to mercurial
GTALUG Short Talk On Mercurial
Mercurial The Definitive Guide 1st Edition Bryan O'Sullivan
Mercurial Distributed Version Control
JavaDiff - Java source code diff tool
Mercurial The Definitive Guide 1st Edition Bryan O'Sullivan

Recently uploaded (20)

PDF
cuic standard and advanced reporting.pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
KodekX | Application Modernization Development
PDF
Modernizing your data center with Dell and AMD
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
cuic standard and advanced reporting.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Review of recent advances in non-invasive hemoglobin estimation
Advanced methodologies resolving dimensionality complications for autism neur...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Building Integrated photovoltaic BIPV_UPV.pdf
MYSQL Presentation for SQL database connectivity
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Digital-Transformation-Roadmap-for-Companies.pptx
KodekX | Application Modernization Development
Modernizing your data center with Dell and AMD
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Reach Out and Touch Someone: Haptics and Empathic Computing
20250228 LYD VKU AI Blended-Learning.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Bridging biosciences and deep learning for revolutionary discoveries: a compr...

Hackathon