Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Duplicated code detection tool (SDD)

Revision as of 13:10, 21 August 2006 by Iryoung.gmail.com (Talk | contribs)

Project Lead: Iryoung Jeong

Mentor: Pascal Rapicault

Implementing SDD for eclipse environment. SDD is an algorithm for detecting duplicated parts which are not just identical, but also similar ones in a large amount of source code in a reasonable time.

Motivation

When one is not really paying attention when to review other people's code, duplications can easily happen. Especially when there are many developers working on the same code base, such as in open source projects. But detecting duplications by people is very ineffective and previous algorithms to detect automatically are too slow for practical purposes or limited in its features. So implementing SDD can be a solution for the problem because SDD can find almost-duplicated (not exactly same) parts practically and Eclipse has a very good infrastructure for SDD UI.

SDD

  • The algorithm for detecting similar parts in large source.
  • No dependency on specific languages, Not exact parts, Fast

CVS, downloads

How to Use

  • Download plugin org.eclipse.soc.sdd_1.0.0.jar - http://sourceforge.net/project/showfiles.php?group_id=169741&package_id=193611&release_id=441043
  • Copy the org.eclipse.soc.sdd_1.0.0.jar into plugins folder of Eclipse
  • Run Eclipse
  • Choose a project, click right-button of a mouse, choose SDD -> extract similar parts
  • Wait a minute..2 minutes..or more? :)
  • A result will be appeared in SimilarPartsResultView
  • In SimilarPartsResultView
    • Double click "part - #" , then you can see the filenames
    • Double click the filename
    • You can see selected codes, which mean similar parts, in a editor

For changing properties for SDD

  • Open a properties page of a project in Package Explorer or Navigator
  • Choose SDD part
  • You can change 3 properties
    • Pattern for a file matching - a pattern of the target files for SDD
    • N-neighbor Length - 2 or 3 will be suitable
    • Minimum Chain Size - a minimulm size of similar parts. Normally 15 or more is good. CAUTION: A Eclipse could be suspended with values near 1.
  • Click OK

Screenshots

  • Sdd-1.jpg
  • Sdd-2.jpg

How it works

  • Using an Index, Inverted Index

Related Works

External Links

SDD in OOPSLA2005

Comments,Questions

  • feel free to comment, ask

Back to the top