modeling.emfcompare
About this document
This document is a R notebook, dynamically created from the numbers extracted on the project. It lists all datasets published for the project, providing basic numbers, figures and a quick summary, and serves as a test case to make sure that all the required data is present and roughly consistent with requirements. All plots and tables are computed from the actual data as provided in the downloads.
To re-execute the document, simply start a R session, load rmarkdown
and render
the page with the project ID as a parameter:
require('rmarkdown')
render("datasets_report.Rmarkdown", params = list(project_id = "modeling.emfcompare"), output_format="html_document")
This website uses the blogdown R package, which provides a different output_format for the hugo framework.
This report was generated on 2021-04-25
.
Downloads
All data is retrieved from Alambic, an open-source framework for development data extraction and processing.
This project’s analysis page can be found on the Alambic instance for the Eclipse forge, at https://eclipse.alambic.io/projects/modeling.emfcompare.
Downloads are composed of gzip’d CSV and JSON files. CSV files always have a header to name the fields, which makes it easy to import in analysis software like R:
data <- read.csv(file='myfile.csv', header=T)
names(data)
List of datasets generated for the project:
- Git
- Git Commits (CSV) – Full list of commits with id, message, time, author, committer, and added, deleted and modifed lines.
- Git Commits Evol (CSV) – Evolution of number of commits and authors by day.
- Git Log (TXT) – the raw export of git log.
- Bugzilla
- Bugzilla issues (CSV) – list of all issues.
- Bugzilla open issues (CSV) – list of issues in an open state.
- Bugzilla evolution (CSV) – weekly time series of issues created.
- Bugzilla components (CSV) – list of components declared for the project.
- Bugzilla versions (CSV) – list of versions declared for the project.
- Eclipse Forums
- Forums Posts (CSV) – list of all forum posts for this project.
- Forums threads (CSV) – list of all forum threads for this project.
- Jenkins CI
- Jenkins CI Builds (CSV) – list of all builds on the Jenkins CI instance.
- Jenkins CI Jobs (CSV) – list of all jobs on the Jenkins CI instance.
- Eclipse PMI
- PMI Checks (CSV) – list of all checks applied to the Project Management Infrastructure entries for the project.
- ScanCode
- ScanCode files (CSV) – list of files identified in the codebase by ScanCode.
- ScanCode authors (CSV) – list of authors identified in the codebase by ScanCode.
- ScanCode copyrights (CSV) – list of copyrights identified in the codebase by ScanCode.
- ScanCode holders (CSV) – list of copyright holders identified in the codebase by ScanCode.
- ScanCode licences (CSV) – list of licences identified in the codebase by ScanCode.
- ScanCode packages (CSV) – list of packages identified in the codebase by ScanCode.
- ScanCode programming languages (CSV) – list of programming languages identified in the codebase by ScanCode.
Git
Git commits
Download: git_commits_evol.csv.gz
data <- read.csv(file=file_git_commits_evol, header=T)
File is git_commits_evol.csv
, and has 3
columns for 1289
entries.
data$commits_sum <- cumsum(data$commits)
data.xts <- xts(x = data[,c('commits_sum', 'commits', 'authors')], order.by=as.POSIXct(as.character(data[,c('date')]), format="%Y-%m-%d"))
time.min <- index(data.xts[1,])
time.max <- index(data.xts[nrow(data.xts)])
all.dates <- seq(time.min, time.max, by="days")
empty <- xts(order.by = all.dates)
merged.data <- merge(empty, data.xts, all=T)
merged.data[is.na(merged.data) == T] <- 0
p <-dygraph(merged.data[,c('commits')],
main = paste('Daily commits for ', project_id, sep=''),
width = 800, height = 250 ) %>%
dyRangeSelector()
p
Git log
Download: git_log.txt.gz
File is git_log.txt
, and full log has 39642
lines.
Bugzilla
Bugzilla issues
Download: bugzilla_issues.csv.gz
data <- read.csv(file=file_bz_issues, header=T)
File is bugzilla_issues.csv
, and has 17
columns for 1295
issues.
Bugzilla open issues
Download: bugzilla_issues_open.csv.gz
data <- read.csv(file=file_bz_issues_open, header=T)
File is bugzilla_issues_open.csv
, and has 17
columns for 171
issues (all open).
Bugzilla evolution
Download: bugzilla_evol.csv.gz
data <- read.csv(file=file_bz_evol, header=T)
File is bugzilla_evol.csv
, and has 3
columns for 846
weeks.
Let’s try to plot the monthly number of submissions for the project:
Versions
Download: bugzilla_versions.csv.gz
data <- read.csv(file=file_bz_versions, header=T)
File is bugzilla_versions.csv
, and has 2
columns for 19
weeks.
Components
Download: bugzilla_components.csv.gz
data <- read.csv(file=file_bz_components, header=T)
File is bugzilla_components.csv
, and has 2
columns for 5
weeks.
data.sorted <- data[order(data$Bugs, decreasing = T),]
g <- gvisColumnChart(data.sorted, options=list(title='List of product components', legend="{position: 'none'}", width="automatic", height="300px"))
plot(g)
Eclipse Forums
Forums posts
Download: eclipse_forums_posts.csv.gz
data <- read.csv(file=file_forums_posts, header=T)
File is eclipse_forums_posts.csv
, and has 6
columns for 1116
posts. The evolution of posts
data$created.date <- as.POSIXct(data$created_date, origin="1970-01-01")
posts.xts <- xts(data, order.by = data$created.date)
time.min <- index(posts.xts[1,])
time.max <- index(posts.xts[nrow(posts.xts)])
all.dates <- seq(time.min, time.max, by="weeks")
empty <- xts(order.by = all.dates)
merged.data <- merge(empty, posts.xts$id, all=T)
merged.data[is.na(merged.data) == T] <- 0
posts.weekly <- apply.weekly(x=merged.data, FUN = nrow)
names(posts.weekly) <- c("posts")
p <- dygraph(
data = posts.weekly[-1,],
main = paste('Weekly forum posts for ', project_id, sep=''),
width = 800, height = 250 ) %>%
dyAxis("x", drawGrid = FALSE) %>%
dySeries("posts", label = "Weekly posts") %>%
dyOptions(stepPlot = TRUE) %>%
dyRangeSelector()
p
The list of the 10 last active posts on the forums:
data$created.date <- as.POSIXct(data$created_date, origin="1970-01-01")
posts.table <- head(data[,c('id', 'subject', 'created.date', 'author_id')], 10)
posts.table$subject <- paste('<a href="', posts.table$html_url, '">', posts.table$subject, '</a>', sep='')
posts.table$created.date <- as.character(posts.table$created.date)
names(posts.table) <- c('ID', 'Subject', 'Post date', 'Post author')
print(
xtable(head(posts.table, 10),
caption = paste('10 most recent posts on', project_id, 'forum.', sep=" "),
digits=0, align="lllll"), type="html",
html.table.attributes='class="table table-striped"',
caption.placement='bottom',
include.rownames=FALSE,
sanitize.text.function=function(x) { x }
)
ID | Subject | Post date | Post author |
---|---|---|---|
1837864 | Overriding the Model Resolver: impossible? | 2021-02-09 00:22:04 | 110161 |
1836469 | Re: Load resources from revision control | 2021-01-05 08:14:56 | 38891 |
1836325 | AbstractChangeFactory.fillRequiredDifferences() may cause circular dependencies | 2020-12-29 02:41:11 | 230050 |
1835821 | Load resources from revision control | 2020-12-14 10:55:42 | 219381 |
1834990 | Re: Crossover operation by EMF Compare | 2020-11-23 08:25:34 | 38891 |
1834707 | Re: equalityHelperExtensionProvider extension point ignored \[SOLVED\] | 2020-11-16 16:05:53 | 110161 |
1834706 | Re: Crossover operation by EMF Compare | 2020-11-16 15:26:02 | 230619 |
1834695 | Re: equalityHelperExtensionProvider extension point ignored | 2020-11-16 10:02:10 | 38891 |
1834691 | Re: Crossover operation by EMF Compare | 2020-11-16 08:22:36 | 38891 |
1834507 | Crossover operation by EMF Compare | 2020-11-11 15:10:50 | 230619 |
Forums threads
Download: eclipse_forums_threads.csv.gz
data <- read.csv(file=file_forums_threads, header=T)
File is eclipse_forums_threads.csv
, and has 8
columns for 314
threads. A wordcloud with the main words used in threads is presented below.
The list of the 10 last active threads on the forums:
data$last.post.date <- as.POSIXct(data$last_post_date, origin="1970-01-01")
threads.table <- head(data[,c('id', 'subject', 'last.post.date', 'last_post_id', 'replies', 'views')], 10)
threads.table$subject <- paste('<a href="', threads.table$html_url, '">', threads.table$subject, '</a>', sep='')
threads.table$last.post.date <- as.character(threads.table$last.post.date)
names(threads.table) <- c('ID', 'Subject', 'Last post date', 'Last post author', 'Replies', 'Views')
print(
xtable(threads.table,
caption = paste('10 last active threads on', project_id, 'forum.', sep=" "),
digits=0, align="lllllll"), type="html",
html.table.attributes='class="table table-striped"',
caption.placement='bottom',
include.rownames=FALSE,
sanitize.text.function=function(x) { x }
)
ID | Subject | Last post date | Last post author | Replies | Views |
---|---|---|---|---|---|
1106908 | Overriding the Model Resolver: impossible? | 2021-02-09 00:22:04 | 1837864 | 0 | 13883 |
1106454 | AbstractChangeFactory.fillRequiredDifferences() may cause circular dependencies | 2020-12-29 02:41:11 | 1836325 | 0 | 1220 |
1106277 | Load resources from revision control | 2021-01-05 08:14:56 | 1836469 | 1 | 1899 |
1105870 | Crossover operation by EMF Compare | 2020-11-23 08:25:34 | 1834990 | 3 | 1170 |
1105864 | equalityHelperExtensionProvider extension point ignored | 2020-11-16 16:05:53 | 1834707 | 2 | 1053 |
1105743 | Maven for EMF Compare | 2020-11-09 18:26:37 | 1834401 | 2 | 2805 |
1105700 | CDO comparison | 2020-11-09 07:59:07 | 1834367 | 1 | 862 |
1104007 | Retrieving the “match of value” in an ADD Diff computed by EMF Compare | 2020-06-09 06:30:01 | 1828390 | 2 | 1896 |
1103779 | Distinguishing various references inside Diff with same name | 2020-06-04 14:24:01 | 1828233 | 2 | 1672 |
1103699 | Problem with compare editor | 2020-05-07 12:27:31 | 1827114 | 0 | 1378 |
Jenkins
Builds
Download: jenkins_builds.csv.gz
data <- read.csv(file=file_jenkins_builds, header=T)
File is jenkins_builds.csv
, and has 7
columns for 314
commits.
ID | Name | Time | Result |
---|---|---|---|
920 | clean-nightly \#920 | 1.609903e+12 | SUCCESS |
919 | clean-nightly \#919 | 1.606229e+12 | SUCCESS |
918 | clean-nightly \#918 | 1.605877e+12 | SUCCESS |
917 | clean-nightly \#917 | 1.604110e+12 | SUCCESS |
916 | clean-nightly \#916 | 1.601814e+12 | SUCCESS |
915 | clean-nightly \#915 | 1.598880e+12 | SUCCESS |
914 | clean-nightly \#914 | 1.595439e+12 | SUCCESS |
913 | clean-nightly \#913 | 1.593656e+12 | SUCCESS |
912 | clean-nightly \#912 | 1.593224e+12 | SUCCESS |
911 | clean-nightly \#911 | 1.593138e+12 | SUCCESS |
Jobs
Download: jenkins_jobs.csv.gz
data <- read.csv(file=file_jenkins_jobs, header=T)
File is jenkins_jobs.csv
, and has 15
columns for 34
commits.
Name | Colour | Last build time | Health report |
---|---|---|---|
clean-nightly | blue | 1.609903e+12 | 100 |
cli-master-gerrit | blue | 1.432289e+12 | 100 |
cli-master-nightly | disabled | 1.432440e+12 | 100 |
collaborative.modeling.luna-master-nightly | disabled | 1.477505e+12 | 100 |
collaborative.modeling.mars-master-nightly | disabled | 1.550995e+12 | 0 |
collaborative.modeling.neon-master-nightly | disabled | 1.550992e+12 | 0 |
egit.logical-master-nightly | disabled | 1.489637e+12 | 100 |
jgit.hooks-master-nighly | disabled | 1.467097e+12 | 100 |
maintenance-1.1 | disabled | 0.000000e+00 | 0 |
maintenance-1.2 | disabled | 0.000000e+00 | 0 |
PMI
PMI Checks
Download: eclipse_pmi_checks.csv.gz
data <- read.csv(file=file_pmi_checks, header=T)
File is eclipse_pmi_checks.csv
, and has 3
columns for 17
commits.
checks.table <- head(data[,c('Description', 'Value', 'Results')], 10)
print(
xtable(checks.table,
caption = paste('Extract of the 10 first PMI checks for ',
project_id, '.', sep=" "),
digits=0, align="llll"), type="html",
html.table.attributes='class="table table-striped"',
caption.placement='bottom',
include.rownames=FALSE,
sanitize.text.function=function(x) { x }
)
Description | Value | Results |
---|---|---|
Checks if the URL can be fetched using a simple get query. | https://bugs.eclipse.org/bugs/enter\_bug.cgi?product=EMFCompare | OK: Create URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | https://bugs.eclipse.org/bugs/buglist.cgi?product=EMFCompare&component=Core | OK: Query URL could be successfully fetched. |
Sends a get request to the given CI URL and looks at the headers in the response (200 404..). Also checks if the URL is really a Hudson instance (through a call to its API). | https://ci.eclipse.org/emfcompare/job/master-nightly/ | OK. Fetched CI URL.\\Failed: CI URL is not the root of a Hudson instance. |
Checks if the Dev ML URL can be fetched using a simple get query. | https://dev.eclipse.org/mailman/listinfo/emf-dev | OK: Dev ML URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | http://wiki.eclipse.org/EMF\_Compare | OK: Documentation URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | https://www.eclipse.org/emf/compare/download.html | OK: Download URL could be successfully fetched. |
Checks if the Forums URL can be fetched using a simple get query. | http://www.eclipse.org/forums/eclipse.tools.emf | OK. Forum \[EMF Compare forum / newsgroup\] correctly defined.\\OK: Forum \[EMF Compare forum / newsgroup\] URL could be successfully fetched.\\OK. Forum \[EMF forum / newsgroup\] correctly defined.\\OK: Forum \[EMF forum / newsgroup\] URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | http://wiki.eclipse.org/EMF\_Compare/User\_Guide | OK: Documentation URL could be successfully fetched. |
Checks if the Mailing lists URL can be fetched using a simple get query. | Failed: no mailing list defined. | |
Checks if the URL can be fetched using a simple get query. | http://www.eclipse.org/emf/compare/project-info/plan-kepler.xml | OK: Plan URL could be successfully fetched. |
ScanCode
Authors
Download: scancode_authors.csv.gz
data <- read.csv(file=file_sc_authors, header=T)
File is scancode_authors.csv
, and has 2
columns for 21
commits.
Author | Count |
---|---|
unknown | 13595 |
Philip Langer |
55 |
Stefan Dirix |
30 |
Martin Fleck |
26 |
Michael Borkowski |
13 |
Alexandra Buzila | 6 |
Alexandra Buzila |
3 |
Laurent Goubet |
3 |
<a href mailto:odVkqXaZXqbJAD2G@VdXOQ53N36043IU1’> Ibm Corporation | 2 |
Christian W. Damus | 2 |
suppressPackageStartupMessages(library(googleVis))
options(gvis.plot.tag='chart')
data.sorted <- data[order(data$count, decreasing = T),]
p <- gvisPieChart(data.sorted,
options = list(
title=paste("Authors for project ", project_id, " ", sep=""),
sliceVisibilityThreshold=0, height=280,
pieHole= 0.4))
print(p, 'chart')
Copyrights
Download: scancode_copyrights.csv.gz
data <- read.csv(file=file_sc_copyrights, header=T)
File is scancode_copyrights.csv
, and has 2
columns for 29
commits.
Copyrights | Count |
---|---|
unknown | 12021 |
Copyright (c) Obeo | 1244 |
Copyright (c) Obeo and others | 296 |
Copyright (c) EclipseSource Muenchen GmbH and others | 84 |
Copyright (c) EclipseSource Services GmbH and others | 77 |
Copyright (c) IBM Corporation and others | 66 |
Copyright Twitter, Inc | 26 |
Copyright (c) EclipseSource GmbH. | 9 |
Copyright (c) Obeo, France | 8 |
|
6 |
suppressPackageStartupMessages(library(googleVis))
options(gvis.plot.tag='chart')
data.sorted <- data[order(data$count, decreasing = T),]
p <- gvisPieChart(data.sorted,
options = list(
title=paste("Copyrights for project ", project_id, " ", sep=""),
sliceVisibilityThreshold=0, height=280,
pieHole= 0.4))
print(p, 'chart')
Holders
Download: scancode_holders.csv.gz
data <- read.csv(file=file_sc_holders, header=T)
File is scancode_holders.csv
, and has 2
columns for 27
commits.
Holders | Count |
---|---|
unknown | 12021 |
Obeo | 1246 |
Obeo and others | 302 |
EclipseSource Muenchen GmbH and others | 84 |
EclipseSource Services GmbH and others | 77 |
IBM Corporation and others | 66 |
Twitter, Inc | 26 |
EclipseSource GmbH. | 9 |
Obeo, France | 8 |
EclipseSource Munich and others | 6 |
suppressPackageStartupMessages(library(googleVis))
options(gvis.plot.tag='chart')
data.sorted <- data[order(data$count, decreasing = T),]
p <- gvisPieChart(data.sorted,
options = list(
title=paste("Holders for project ", project_id, " ", sep=""),
sliceVisibilityThreshold=0, height=280,
pieHole= 0.4))
print(p, 'chart')
Licences
Download: scancode_licences.csv.gz
data <- read.csv(file=file_sc_licences, header=T)
File is scancode_licences.csv
, and has 2
columns for 14
commits.
Licence | Count |
---|---|
unknown | 11951 |
epl-1.0 | 1874 |
apache-2.0 | 92 |
cpl-1.0 | 65 |
eclipse-sua-2010 | 65 |
mpl-1.1 | 65 |
cpl-1.0 AND other-permissive | 3 |
bsd-new | 2 |
epl-2.0 OR apache-2.0 | 2 |
other-permissive | 2 |
suppressPackageStartupMessages(library(googleVis))
options(gvis.plot.tag='chart')
p <- gvisPieChart(data,
options = list(
title=paste("Licences for project ", project_id, " ", sep=""),
sliceVisibilityThreshold=0, height=280,
pieHole= 0.4))
print(p, 'chart')
Programming Languages
Download: scancode_programming_languages.csv.gz
data <- read.csv(file=file_sc_pl, header=T)
File is scancode_licences.csv
, and has 2
columns for 10
commits.
Programming Language | Count |
---|---|
unknown | 12021 |
Java | 1565 |
HTML | 71 |
Objective-C | 51 |
PHP | 15 |
Bash | 6 |
CSS | 4 |
JavaScript | 3 |
Python | 3 |
VB.net | 1 |
suppressPackageStartupMessages(library(googleVis))
options(gvis.plot.tag='chart')
p <- gvisPieChart(data,
options = list(
title=paste("Programming languages for project ", project_id, " ", sep=""),
sliceVisibilityThreshold=0, height=280,
pieHole= 0.4))
print(p, 'chart')
Special files
Download: scancode_special_files.csv.gz
data <- read.csv(file=file_sc_sf, header=T)
File is scancode_special_files.csv
, and has 2
columns for 127
commits.
Holders | Type |
---|---|
README.textile | readme |
org.eclipse.emf.compare-parent/pom.xml | manifest |
org.eclipse.emf.compare-parent/bundle-parent/pom.xml | manifest |
org.eclipse.emf.compare-parent/feature-parent/pom.xml | manifest |
org.eclipse.emf.compare-parent/targetPlatforms/fragments/licence.tpd | legal |
org.eclipse.emf.compare-parent/test-parent/pom.xml | manifest |
packaging/org.eclipse.emf.compare-feature/copyright.txt | legal |
packaging/org.eclipse.emf.compare-feature/pom.xml | manifest |
packaging/org.eclipse.emf.compare-feature/sourceTemplateFeature/copyright.txt | legal |
packaging/org.eclipse.emf.compare.diagram.ecoretools-feature/copyright.txt | legal |