English 中文(简体)
代码量计算器(不用于版本控制系统)
原标题:Code churn calculator (not for a version control system)

鉴于两个项目版本,我想计算代码量度。

举个例子:

Input: Two folders containing C and Header files of two versions of the project


产出:每个文件中添加/修改/移动的行数列表

我尝试了一些工具, 即 < a href=" "http://www.scooter software.com/" rel="nofollow" > Beyoundcompare 和 < a href="http://winmerge.org/?? lang=de" rel="nofollow" >WinMeorge 。 问题是, 首先要求所有文件都在同一目录中, 否则您只能比较它们, 却得不到衡量标准, 第二个主要是视觉化工具, 也没有给我量度。

问题回答

你可能考虑的工具之一是WebDiff

对于.NET 代码, 可以通过 NDepend < a href="http://www.ndepend.com/Features.aspx#CQL" rel = “nofollown norefererr” > Code Query LINQ (CQLinq)

from t in JustMyCode.Types
where t.IsPresentInBothBuilds() &&
      t.CodeWasChanged() // Only match types where code has been changed 
                         // between the two versions
let tOld = t.OlderVersion()
select new { t,
  newLoc = t.NbLinesOfCode,
  oldLoc = tOld.NbLinesOfCode,
  newNbMethods =t.Methods.Count(),
  oldNbMethods =t.Methods.Count(),
  newNbFields =t.Fields.Count(),
  oldNbFields =t.Fields.Count(),
}

""https://i.sstatic.net/CSlRX.png" alt="此处输入图像描述"/ >

您的版本是否存储在版本控制系统( 如 SVN、 Git) 中? 如果有, 那么您可以通过查看版本控制系统日志来计算您的粗略度量值( 该日志已经给出了添加/ 修改/ 移动的行), 即使这两个版本不是连续运行的 。





相关问题
Field comparison in excel sheet

I have an excel sheet with two columns. Eg. ---------------------- A B outputColumn C ---------------------- xxyy dd/mm/yy xxyy Y ---------------------- NA #N/A ...

Image comparison algorithm

I m trying to compare images to each other to find out whether they are different. First I tried to make a Pearson correleation of the RGB values, which works also quite good unless the pictures are a ...

C# Comparing Two Custom Lists

I have run into a situation where I need to compare two different lists to each other and I am wondering what the best method is for doing this? I thought something like this would work but it doesn ...

Using jQuery to compare two arrays of Javascript objects

I have two arrays of JavaScript Objects that I d like to compare to see if they are the same. The objects may not (and most likely will not) be in the same order in each array. Each array shouldn t ...

Compare XML ignoring order of child elements

Does anybody know of a tool that will compare two XML documents. Belay that mocking… there’s more. I need something that will make sure each node in file 1 is also in file 2 regardless of order. I ...

Check a field in MySql from a php md5 string

I m trying to validate a pair of data columns on mysql from my php page across md5 function. I ve encrypted the string "helloworld" with php md5 function and attempted to compare it with MYSQL MD5 ...

Case insensitive comparison of strings in shell script

The == operator is used to compare two strings in shell script. However, I want to compare two strings ignoring case, how can it be done? Is there any standard command for this?

sort vector by more than 1 field

How do I sort the below code by name, age and score... all three fields #include <string> #include <vector> #include <algorithm> struct student_t { std::string name; ...

热门标签