Tagged Questions
The legacy-code tag has no wiki summary.
61
votes
17answers
2k views
how to survive maintaining a monster you created [closed]
You've worked somewhere for 3 years.
At the beginning of the second year you were involved in what you thought would be a small project.
You foolishly decided to take some risks with the choice of ...
37
votes
2answers
1k views
Coding Katas for practicing the refactoring of legacy code
I've gotten quite interested in coding katas in recent months. I believe they are a great way to hone my programming skills and improve the quality of the code I write on the job.
There are numerous ...
26
votes
8answers
5k views
Dead code detection in legacy C/C++ project
How would you go about dead code detection in C/C++ code? I have a pretty large code base to work with and at least 10-15% is dead code. Is there any Unix based tool to identify this areas? Some ...
21
votes
10answers
859 views
What can you do to a legacy codebase that will have the greatest impact on improving the quality?
As you work in a legacy codebase what will have the greatest impact over time that will improve the quality of the codebase?
Remove unused code
Remove duplicated code
Add unit tests to improve test ...
19
votes
14answers
849 views
Code refactoring on bad system design
I am a junior software engineer who've been given a task to take over a old system. This system has several problems, based on my preliminary assessment.
spaghetti code
repetitive code
classes with ...
17
votes
13answers
1k views
Dead languages
At which point should you (or your company) ditch the language used for many years, for which you have the workforce, simply because it became irrelevant or much better alternatives came into the ...
15
votes
6answers
22k views
Will Windows 7 support the VB6 runtime?
I can't seem to find a straight answer on this. It appears that Visual Studio 6 won't be supported, but I'm only concerned with the runtime. We have some legacy apps that we'd rather not rewrite, but ...
14
votes
11answers
884 views
I'm maintaining a Java class that's 40K lines long.. problem?
This may be a subjective question leading to deletion but I would really like some feedback.
Recently, I moved to another very large enterprise project where I work as a developer. I was aghast to ...
14
votes
13answers
1k views
Legacy Code Nightmare
I've inherited a project where the class diagrams closely resemble a spider web on a plate of spaghetti. I've written about 300 unit tests in the past two months to give myself a safety net covering ...
12
votes
5answers
910 views
Adding unit tests to legacy code
Have you ever added unit tests, after the fact, to legacy code? How complicated was code and how difficult to stub and mock everything? Was the end result worthwhile?
11
votes
11answers
494 views
How to motivate team to work on legacy products
We are a team working on legacy code which is pretty old and written in languages of initial programming days. As the team members are trained in latest technology and are now put to work on legacy ...
10
votes
6answers
139 views
How to implement large number of complex wrappers for legacy API/framework (C++ Macros vs. C++ Templates vs. Code generator)?
We work with very old legacy system implemented in C++ with VC6 compiler. Now we are in the process of refactoring the code. We also switched to VC9 compiler.
We use an external proprietary ...
10
votes
7answers
1k views
Dead code detection in PHP
I have a project with very messy code - lots of duplication and dead code here and there.
Some time ago there was zero code coverage by unit-tests but now we're trying to write all new code in T.D.D. ...
9
votes
7answers
139 views
No require, no include, no url rewriting, yet the script is executed without being in the url
I am trying to trace the flow of execution in some legacy code. We have a report being accessed with
http://site.com/?nq=showreport&action=view
This is the puzzle:
in index.php there is no ...
9
votes
21answers
818 views
When do i need to stop using design patterns?
My colleagues are going crazy because i keep on wanting to rewrite code that already works because i would like to replace some legacy design with design pattern. Although i feel like it will help ...
8
votes
12answers
417 views
What effects does legacy code cause on a developer’s skills?
Edsger Dijkstra once said that "the use of COBOL cripples the mind...". How about working on legacy software? Do you, as a developer, get crippled by that?
As an employed programmer, I have spent ...
8
votes
1answer
274 views
How can I mark Perl code as deprecated?
In my project I'm currently preparing a step-by-step move from legacy code to new, properly-designed and tested modules. Since not every fellow programmer follows closely what I do, I would like to ...
8
votes
16answers
815 views
Getting your head around other people's code
I'm occasionally unfortunate enough to have to make alterations to very old, poorly not documented and poorly not designed code.
It often takes a long time to make a simple change because there is ...
7
votes
3answers
6k views
Redirect both cout and stdout to a string in C++ for Unit Testing
I'm working on getting some legacy code under unit tests and sometimes the only way to sense an existing program behavior is from the console output.
I see lots of examples online for how to redirect ...
7
votes
12answers
344 views
What code don't you test? [closed]
Possible Duplicate:
How deep are your unit tests?
Ok, so it's common wisdom that it's impractical (and maybe not even preferable) to get 100% test coverage. In my experience, there's some ...
7
votes
10answers
383 views
How to start modification with big projects
I have to do enhancements to an existing C++ project with above 100k lines of code.
My question is How and where to start with such projects ?
The problem increases further if the code is not well ...
7
votes
4answers
476 views
How do you start with FxCop on legacy code?
Does anyone have any experience of introducing FxCop to legacy code? We would like to have our build fail if anyone introduces code that violates rules. But for the time being, this is impossible, as ...
7
votes
7answers
493 views
Practical refactoring using unit tests
Having just read the first four chapters of Refactoring: Improving the Design of Existing Code, I embarked on my first refactoring and almost immediately came to a roadblock. It stems from the ...
7
votes
8answers
966 views
NHibernate on legacy DB
I'm ashamed to say it, but I have to. I have not worked with ORM's. I'm really considering NHibernate as it seems to be the most mature product for .Net out there (please correct me if I'm wrong). ...
6
votes
1answer
63 views
How do you refactor static classes to use dependency injection?
I've inherited some code that has a class AuthenticationManager with all static methods.
Im introducing DI and wanted to add a constructor that took a dependency UserController
UserController ...
6
votes
2answers
227 views
How can you implement test driven development with legacy code?
The situation: millions of lines of code, more than one hundred developers and frequent defects. We want to avoid repeating defects and we want to improve code design (who doesn't?).
Test Driven ...
6
votes
17answers
513 views
Inheriting applications at a new job
When inheriting applications at a new job do you tend to stick to the original developers coding practices or do you start applying your own?
I work in a small shop with no guidelines and always ...
6
votes
5answers
382 views
Generics in legacy code
We've got a fairly large amount of code that just made the jump to Java 5. We've been using generics in those components targeted at being released in the Java 5 version, but the remaining code is, of ...
6
votes
3answers
560 views
How to go about mocking a class with final methods?
Say I have class A with
class A {
final String foo() {
// .. computing result, contacting database, whatever ..
return "some computed value";
}
// ... and a bazillion other methods, ...
5
votes
2answers
72 views
Unit testing C++ code using Java
I have inherited a huge c++ codebase with some integration tests. This is a critical system which feeds data to a lot of downstream systems. As the tests are very unreliable our team is not able to ...
5
votes
5answers
364 views
Suggest a simple ORM on .NET - design for maintaining legacy apps
I am assigned to maintain a bunch of legacy apps with heavy stored procedure usage built before '05 when there was no ORM. The developers who work with me don't know Entity Framework nor LINQ and are ...
5
votes
1answer
476 views
Sharing session between two ASP.NET applications, where one is nested within the other
So, before you ask "what the heck do you mean, one is nested within the other?" I'll explain it as simply as I can.
A .NET web application (A) existed. A supplementary application (B) was built that ...
5
votes
2answers
233 views
Unusual use of new in historical code. What does it mean?
I am just porting some old code:
#define NewArrayOnHeap(TYPE, COUNT, HEAP, NEWPTR, ERROR) \
((*(NEWPTR) = new ( #TYPE "[" #COUNT "]", __alignof(TYPE), (HEAP), &hr, (ERROR)) TYPE[COUNT] ), hr)
...
5
votes
6answers
1k views
Method for finding memory leak in large Java heap dumps
I have to find a memory leak in a Java application. I have some experience with this but would like advice on a methodology/strategy for this. Any reference and advice is welcome.
About our ...
5
votes
2answers
252 views
Any good literature on join performance vs systematic denormalization?
As a corollary to this question I was wondering if there was good comparative studies I could consult and pass along about the advantages of using the RDMBS do the join optimization vs systematically ...
5
votes
2answers
323 views
How to go about organizing a unit test harness for legacy Visual C++ code?
I have a Visual Studio 2005 C++ project, it is a console application.
I want to start getting bits of the code under a test harness but I've run into some issues that I don't know how to best handle.
...
5
votes
6answers
675 views
How best to integrate several systems?
Ok where I work we have a fairly substantial number of systems written over the last couple of decades that we maintain.
The systems are diverse in that multiple operating systems (Linux, Solaris, ...
4
votes
1answer
97 views
Dealing with legacy django project in new localized projects
I am right now in the situation to plan the internationalization of a django project that contains mainly legacy code. The old project itself has different applications which have a strong dependency ...
4
votes
2answers
121 views
testing legacy codes with phpunit
To, PHPUnit user, I have a legacy codes here. my obligation is to make the testing with PHPUnit for those codes. So I am asking suggestion based on your experiences. Which classes I should test first? ...
4
votes
2answers
301 views
Spring : Injecting the object that launches the ApplicationContext into the ApplicationContext
I want to use Spring inside a legacy application.
The core piece is a class, let's call it LegacyPlugin, that represents a sort of pluggable piece in the application. The problem is that this class ...
4
votes
1answer
121 views
Preventing COM Name Mangling
I am trying to write a replacement for a VB6 dll that is referenced by another VB6 in c#.net.
For now we can only work on the later and I am having some success with this. Except I have run into a ...
4
votes
1answer
139 views
What's the equivalent in Delphi 3 of Supports for Interfaces?
I support an application written in Delphi 3 and I would like to put in some improvements to the source code while waiting for the opportunity to upgrade it to a newer version of Delphi. One of the ...
4
votes
2answers
222 views
UnitTesting a class that returns a complex dataset
After months of frustration and of time spent in inserting needles in voodoo dolls of previous developers I decided that it is better try to refactor the legacy code.
I already ordered Micheal ...
4
votes
3answers
249 views
Is there a way to translate C code to Ruby?
I'm sitting with massive amounts of legacy C code that needs to be converted to Ruby for a project.
I've seen Ruby to C translators online, but not the other way around. Would there be a simple way ...
4
votes
2answers
93 views
Link seams in .NET
I just recently finished Michael Feathers' book Working Effectively with Legacy Code. It was a great book on how to effectively create test seams and exploit them to get existing code under test.
...
4
votes
1answer
608 views
Separate threads for socket input and output
I got assigned to work on some performance and random crashing issues of a multi-threaded java server. Even though threads and thread-safety are not really new topics for me, I found out designing a ...
4
votes
5answers
396 views
Modula-2 Developer?
Guess no new project is implemented in languages like Modula, Ada , Oberon .. anymore (right?). But still there are legacy systems floating around, popping out here and there looking for their ...
4
votes
2answers
135 views
Is the 'synchronized' keyword in a classic enterprise application suspicious?
I am talking about classic enterprise applications. Typically hosted in some kind of application-server or container. Nothing fancy, just entities, services, Presentation/UI and relational storage.
...
4
votes
11answers
1k views
Cleaning up Legacy Code “header spaghetti”
Any recommended practices for cleaning up "header spaghetti" which is causing extremely
slow compilation times (Linux/Unix)?
Is there any equvalent to "#pragma once" with GCC?
(found conflicting ...
3
votes
1answer
60 views
Is there a tool that would replace passing Excel files back and forth and merging them?
Some legacy software relies on downloading multiple Excel files, merging the contents, sending it back out, someone far away making some changes to it, and then sending the modified Excel file back, ...