It's all about the answers!

Ask a question

How to find number of lines delivered to a stream in RTC?


Anil Joseph (111) | asked May 27 '18, 1:18 p.m.

 Hi Team,


I'm trying to get a matrix out of the number of lines of code delivered to RTC in a given duration (Let's say 1 month).

Any body have any idea, how I can accomplish it?

I thought, there will be some REST APIs already available to get this data. It seems like it's not available.

Any help on this, is greatly appreciated.

Thanks,

Anil

2 answers



permanent link
Luca Martinucci (1.0k294112) | answered May 28 '18, 3:32 a.m.

I had a similar requirement (see https://jazz.net/forum/questions/226204/rtc-report-displaying-total-lines-of-code), and, as I figured out that there were no out-of-the-box RTC features that calculated LOC, I developed a custom solution using RTC Plain Java API.

Basically, you must retrieve a stream's history, cycle over the delivered change sets, and, for each change set, retrieve its changes (i.e. the modified or added files).
For each change, extract its contents locally in a temporary file and then count its lines.
If you want to count just the added or modified lines as compared to the previous version, retrieve the file history and extract both the current and the previous version, then compare them.


permanent link
Ralph Schoon (63.1k33646) | answered May 28 '18, 2:20 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

Your answer


Register or to post your answer.


Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.