modeling.mdt.ocl
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.mdt.ocl"), 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 2022-08-07
.
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.mdt.ocl.
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.
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 2241
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 53853
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 2265
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 683
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 1571
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 20
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 1
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 6913
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 |
---|---|---|---|
1853267 | Re: OCLinEcore. How the set a attribute of type java.lang.Locale | 2022-06-24 14:36:21 | 230154 |
1853255 | Re: OCLinEcore. How the set a attribute of type java.lang.Locale | 2022-06-24 09:51:14 | 8586 |
1853236 | OCLinEcore. How the set a attribute of type java.lang.Locale | 2022-06-23 17:27:20 | 230154 |
1853109 | Re: Check stereotype applications via static profile | 2022-06-18 10:28:23 | 8586 |
1852966 | Re: Check stereotype applications via static profile | 2022-06-13 09:55:55 | 8586 |
1852956 | Re: Check stereotype applications via static profile | 2022-06-13 07:51:31 | 82980 |
1852932 | Re: Check stereotype applications via static profile | 2022-06-11 10:49:07 | 8586 |
1852930 | Re: Check stereotype applications via static profile | 2022-06-11 10:15:13 | 8586 |
1852928 | Re: Check stereotype applications via static profile | 2022-06-10 21:23:05 | 8586 |
1852920 | Check stereotype applications via static profile | 2022-06-10 15:24:07 | 82980 |
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 1522
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 |
---|---|---|---|---|---|
1111052 | OCLinEcore. How the set a attribute of type java.lang.Locale | 2022-06-24 14:36:21 | 1853267 | 2 | 1746 |
1110949 | Check stereotype applications via static profile | 2022-06-18 10:28:23 | 1853109 | 6 | 3719 |
1110721 | OCL with Xtext Artifacts | 2022-05-04 04:46:55 | 1852182 | 1 | 1394 |
1110439 | How could I add org.eclipse.ocl as a dependency | 2022-03-30 09:22:08 | 1851190 | 6 | 1106 |
1110024 | Get annotations from type rather than instance | 2022-02-04 16:21:22 | 1849851 | 2 | 2536 |
1109644 | Getting invalid for the evaluation of OCL on XMI | 2021-12-09 18:42:38 | 1848617 | 1 | 450 |
1109615 | Can not gen emf-gen from ecore file based on generator (.mwe) of OCL open source | 2021-12-15 08:44:18 | 1848729 | 9 | 2602 |
1109453 | Calling an EMF Java function from OCL constraint | 2021-11-19 03:57:15 | 1848073 | 2 | 978 |
1108130 | OCL expression not evaluated | 2021-06-02 21:03:06 | 1841913 | 1 | 780 |
1106816 | Issue with mdt-ocl-Update sites | 2021-02-03 06:02:25 | 1837605 | 3 | 986 |
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 41
commits.
ID | Name | Time | Result |
---|---|---|---|
324 | ocl-branch-tests \#324 | 1.658341e+12 | SUCCESS |
119 | ocl-codegen-tests \#119 | 1.659267e+12 | SUCCESS |
122 | ocl-compatibility-2018-09 \#122 | 1.659285e+12 | SUCCESS |
121 | ocl-compatibility-2018-12 \#121 | 1.659289e+12 | SUCCESS |
118 | ocl-compatibility-2019-03 \#118 | 1.659291e+12 | SUCCESS |
117 | ocl-compatibility-2019-06 \#117 | 1.659297e+12 | SUCCESS |
116 | ocl-compatibility-2019-09 \#116 | 1.659300e+12 | SUCCESS |
124 | ocl-compatibility-2019-12 \#124 | 1.659304e+12 | SUCCESS |
90 | ocl-compatibility-2019-12 \#90 | 1.639350e+12 | SUCCESS |
120 | ocl-compatibility-2020-03 \#120 | 1.659308e+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 27
commits.
Name | Colour | Last build time | Health report |
---|---|---|---|
ocl-branch-tests | blue | 1.658341e+12 | 100 |
ocl-codegen-tests | blue | 1.659267e+12 | 100 |
ocl-compatibility-2018-09 | blue | 1.659285e+12 | 100 |
ocl-compatibility-2018-12 | blue | 1.659289e+12 | 100 |
ocl-compatibility-2019-03 | blue | 1.659291e+12 | 100 |
ocl-compatibility-2019-06 | blue | 1.659297e+12 | 100 |
ocl-compatibility-2019-09 | blue | 1.659300e+12 | 100 |
ocl-compatibility-2019-12 | blue | 1.659304e+12 | 100 |
ocl-compatibility-2020-03 | blue | 1.659308e+12 | 100 |
ocl-compatibility-2020-06 | blue | 1.659310e+12 | 100 |
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=OCL | 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=OCL&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/ocl/job/ocl-master/ | 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/mdt-ocl.dev | OK: Dev ML URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | http://download.eclipse.org/ocl/doc/6.4.0/ocl.pdf | OK: Documentation URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | http://www.eclipse.org/modeling/mdt/downloads/?project=ocl | OK: Download URL could be successfully fetched. |
Checks if the Forums URL can be fetched using a simple get query. | http://eclipse.org/forums/eclipse.modeling.mdt.ocl | OK. Forum \[Eclipse OCL Forum\] correctly defined.\\OK: Forum \[Eclipse OCL Forum\] URL could be successfully fetched. |
Checks if the URL can be fetched using a simple get query. | http://help.eclipse.org/oxygen/topic/org.eclipse.ocl.doc/help/GettingStarted.html | 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. | Failed: no URL defined for plan. |