Originally legacy code meant code 'inherited' from authors or from a previous program/system version. Since Michael Feathers published his "Working Effectively with Legacy Code" book, new definition came to be, where code without tests is legacy code.
-2
votes
0answers
26 views
Advice for working with a very large C++ code base (VS Solution with 99 projects), as new developer [closed]
I started my first job with this company that builds legal applications. The VS solution I work on contains 99 projects with many 3rd party libraries including MFC, Win32 API, OLE DB, SQL, Boost, ...
2
votes
1answer
44 views
C++ Testing Framework Recommendations
I am new to unit testing and trying to set up a unit testing framework for a legacy C++ project. There are several older questions on SO about unit testing frameworks for C++ but they seem to be at ...
0
votes
0answers
95 views
Problems with Selenium WebDriver executeScript (using watir-webdriver in Ruby)
I am having trouble executing a particular javascript snippet using Watir WebDriver's browser.execute_script command:
Here is the Javascript in question:
var bodyFrame = ...
0
votes
0answers
19 views
Convert old USB Driver to new Linux Kernel
I am trying to compile igotu2gpx for Ubuntu 12.10. It was only compiled until Ubuntu 10.04. I got it to compile but there is a driver module which won't compile.
It won't compile because the ...
0
votes
1answer
9 views
unbind BindAsLegacyV2Runtime
So we have an application launcher which can (should) run new apps created in clickOnce and older apps that use a remoting type of logic
When trying to run the apps I received the following message
...
0
votes
1answer
50 views
resurrecting a project written in Visual studio 6 [closed]
I've been given the source code to an image classification application that was written in
visual studio 6. I've tried to see if any of the projects can be compiled. There is a project file with a ...
2
votes
4answers
90 views
Generics in java - interoperating with legacy code
I am reading this tutorial from Oracle http://docs.oracle.com/javase/tutorial/extra/generics/legacy.html
But I can't figure out what this line means
As a result, the type safety and integrity of ...
0
votes
0answers
38 views
how to expose legacy application in java (JAR) using Mule ESB
I am new to Mule ESB.
I have a scenario where I have a JAR file or an application installed on the system. I want to expose this JAR file or legacy application as a web service. How can I do this ...
0
votes
1answer
10 views
Drawing Effect Sketches - any tools support it?
Could anybody tell me if there are any tools could help to draw Effect Sketches described in Michael Feathers' book "Working Effectively with Legacy Code"??
The purpose of Effect Sketches is to show ...
3
votes
1answer
81 views
How do I unit test a class with nasty dependencies without a mock framework?
I am working in a legacy C++ codebase and I want to test some methods on a class, DependsOnUgly, that has a dependency which is not easily broken on a big class (Ugly) with lots of external ...
1
vote
2answers
94 views
How to change method behaviour through reflection?
I have a a static method in some legacy code, which is called by multiple clients. I obviously have no options to override it, or change behaviour through dependency injection. I am not allowed to ...
0
votes
1answer
75 views
Rails: ActiveRecord associations saving issue
Have a problem regarding saving ActiveRecord associations and need your help :)
I need to add articles merging functionality to legacy code.
It's expected to work the following way:
Merge ...
1
vote
1answer
41 views
Rails 3: Can't add correct route to legacy code
Believe you can help me.
I'm trying to add new functionality to legacy code (Typo). But it seems that there is some problem about routing.
In the project routes are generated the following way:
...
0
votes
1answer
68 views
Cant figure out why Classic ASP script is skipping first record in set
What I have here is part of a quite hacky Classic ASP (VBscript) script I need to pull data out so I can move it into another source. I am having trouble with it in that it appears to be skipping the ...
1
vote
1answer
35 views
Explain this IE event binding mechanism using dynamically generated DOM properties
There's an extremely nasty-looking event-binding wrapper I've inherited whose rationale eludes me. All I know is the IE implementation of the plugin that uses it breaks if I try to replace it with a ...
1
vote
3answers
57 views
how can I validate two ASP.NET pages have the same output HTML?
I am working on legacy code for an ASP.NET website, and I want to refactor.
I've come to the conclusion that the easiest way to test for breaks is to compare the final HTML with the old page, ...
1
vote
0answers
43 views
J2EE-compliance error when packaging EAR file - AppClientArchiveClassesLoadable + AppClientEjbReferencesElement (J2SE 1.4.2)
Using the Deployment Tool for Sun Java Application Server PE 8 (using J2SE 1.4.2) under Windows XP SP3 (x86), I've encountered the following errors when trying to package the EAR file for a simple EJB ...
0
votes
1answer
358 views
cvSetImageData and cvCreateImage c++ equivalent interface
Is there any c++ opencv interface that can do the same operation of these two functions?
Hi, I'm actually using these two functions in this way
IplImage *image;
ARUint8 *dataPtr; // unsigned chars, ...
2
votes
1answer
143 views
Is there an open source tool that automatically generates test cases for legacy code?
I recently stumbled over this (aged) article:
http://imranontech.com/2007/01/04/unit-testing-the-final-frontier-legacy-code/
where the author allegedly wrote a perl script to automatically generate ...
0
votes
0answers
57 views
How to use a typedef from (legacy) C source file in a unit test source file?
I have a legacy C source file which defines an enum.
//source.c
typedef enum
{
ENUM_0,
ENUM_1,
ENUM_2
} my_enum;
How can I use this enum inside my unit test's source code?
I can think ...
0
votes
1answer
87 views
How to test legacy C code and check which branches where hit
I have a DLL which contains many large (1000+ line) functions. This code has lots of complex logic which I want to ensure doesn't get broken when its maintained so I created a test harness which ...
1
vote
4answers
75 views
How can I handle exit() calls in 3rd party library code?
I'm working on a C++ application which uses a library written in C by another team. The writers of the library like to call exit() when errors happen, which ends the program immediately without ...
2
votes
1answer
130 views
Any value gained in converting a legacy code base from VB to C#?
Quick searches on the topic result in articles such as:
10 Reasons Why Visual Basic is Better Than C#
Top 10 reasons VB.NET is better than C# (old article)
This thread over at the programmers ...
0
votes
1answer
162 views
Upgrading POST request from HttpClient to HttpComponents. What's going wrong here?
I inherited some old code that uses the now-deprecated Apache Commons HttpClient. I was tasked with upgrading it to use the newer Apache HttpComponents. However, I can't seem to get this POST request ...
0
votes
1answer
24 views
advice on note keeping and navigating legacy code
I"m having to work with legacy code (mostly CFML) with very little or no documentation, no domain model of any sort to follow either.
To start building some sense out of it, I though 'start keeping ...
3
votes
2answers
79 views
View the members of a C++ DLL
I have a C++ DLL which was written in 1998, and I want to view the members (properties, fields, methods, constructors etc). I am of the understanding that the company who wrote the DLL is no longer ...
15
votes
3answers
662 views
Data Migration from Legacy Data Structure to New Data Structure
Ok So here is the problem we are facing.
Currently:
We have a ton of Legacy Applications that have direct database access
The data structure in the database is not normalized
The current process / ...
1
vote
2answers
158 views
Dynamic dead code elimination tools for complex C++ projects
We have a project with a lot of code, part of it is legacy.
As part of the work flow, every once in a while, all the functionality of the product is checked.
I wonder if there is a way to use this ...
0
votes
2answers
72 views
Unit testing legacy PHP class with heavy DB dependency
I am trying to implement some unit tests into a legacy PHP application.
There have been a number of challenges with this, but in particular for this question, I am currently looking at a small class ...
8
votes
5answers
254 views
Where is it better to put the initialization code, before the loop or inside it?
Sorry if this is a silly question :-)
Background
I have legacy code that looks like this:
struct {
int field1;
int field2;
int field3;
int field4;
... many many fields
} myStruct;
while ...
1
vote
2answers
130 views
How to extract functions call graph from a visual basic file?
I'm currently facing a large piece of legacy code which I have to understand and rewrite to make it more maintainable.
Is there a tool that would show let me explore easily the graph of the function ...
2
votes
1answer
80 views
DI Container and custom-scoped state in legacy system
I believe I understand the basic concepts of DI / IoC containers having written a couple of applications using them and reading a lot of stack overflow answers as well as Mark Seeman's book. There are ...
0
votes
1answer
35 views
How do I render JS in Rails 1.2.6
I have the following code as a controller action:
def create
render :js => "alert('hello')"
end
But when I go to this view, I get a missing template error – 'create.rhtml'. What is the correct ...
7
votes
3answers
2k views
Reset class static variable during unit test
I am trying to write a unit test for a legacy code. The class which I'm testing has several static variables. My test case class has a few @Test methods. Hence all of them share the same state.
Is ...
0
votes
0answers
81 views
Maven for deployement for a client/server app?
We're currently moving from a quite old Perl + Ant build system to maven.
The software itself is a client/server app using RMI as main communication system and the build produces a (large) number of ...
0
votes
0answers
74 views
OO design for time series data and view
I'm trying to move part of a C legacy product into c#, with the goal of simplifying maintenance. I'm also learning c#, and I'm trying to figure out whether I am thinking about the design correctly in ...
0
votes
1answer
92 views
Advice on refactoring large JavaScript methods
In this case, the site is an internal website that is only able to be viewed on IE6. The goal is get it viewable in IE9. There are several IE only propriety scripting such as using xml data islands, ...
0
votes
1answer
278 views
How to cancel this Queued BackGroundworker
I have this bit of legacy code that's been sitting in the code-base and being used for the last couple of years, recently we found that its method StopImmediately() doesn't stop it at all. I cant make ...
0
votes
1answer
57 views
Rails: create system needed records if they don't exist
I'm working on an app that must integrate with an existing database and other legacy apps. Throughout the legacy apps, implicit assumptions are made that certain records in certain tables exist.
For ...
2
votes
0answers
166 views
CQRS with Legacy Systems
I'm looking to convert a relatively new web-based application with a clear domain model over to more of a CQRS style system. My new application is essentially an enhanced replacement of an older ...
0
votes
1answer
129 views
spring 3.1: out of memory when loading beans.
i have the following xml.
legacy: xml (can't change because it is externalize).
<bean id="oracleLobHandler" ...
1
vote
1answer
133 views
Verify Ibatis Procedures Called in Java
I am working on legacy code which has a number of defunct database calls in it's ibatis mapping files. I am hoping to connect the ibatis mappings back to the java class files - or more accurately find ...
1
vote
2answers
111 views
Create wrapper Objects to de-convolute terrible Fortran code?
I have to work on some legacy Fortran, although I can use the latest compilers.
The code stores enormous amounts of data in one-dimensional arrays.
For example,
PROGRAM horrible_coding
IMPLICIT ...
0
votes
0answers
62 views
Communicating with SQL server 2008 with C
I posted a question here the other day but didn't come to a solution yet. Basically I need make a dll in C that will act as a plugin for another application (Teamcenter).
Said application needs to be ...
1
vote
1answer
1k views
Can I use a *.tlb file without using Regasm to register it on the computer
We are supporting an aging VB6 system that we have written new code for in .Net, put the code into assemblies and then exported *.tlb files for use with the VB6 codebase.
My question is, on every ...
6
votes
1answer
184 views
Preprocessor macros as parameters to other macros
The following C++ code compiles and works as the programmer intended on GCC (4.0.4)
#define FOO(x,y,z) ((x)*(y)*(z))
#define BAR(x) FOO(x,1)
#define BAZ 3,7
int main()
{
return BAR(BAZ); /* ...
1
vote
3answers
5k views
Installation of VB6 on Windows 7 [duplicate]
Possible Duplicate:
Has anyone had success with Visual Studio 6 on Windows 7?
Does the VB6 IDE run on Windows 7 64-bit?
I have been having problems installing VB6 on Windows 7. I realize ...
3
votes
4answers
134 views
Legacy Character Encoding
I'm messing around with the source code for an old Java game written in the early nineties. If I remember correctly, it's written for JDK 1.1.
Somewhere in the code, int primitives (in the range of 0 ...
1
vote
1answer
68 views
Flowing from a thin client (web browser) to an installed and running application
So I am working an a large scale application. We are in the process of moving from an installed java application to a web based application. During the transition release(s) we need the ability to ...
4
votes
2answers
141 views
Need some advice about migrating from Motif to Gtk
I'm doing a project about migrating a legacy GUI program from Motif to Gtk.
The source code is quite long (about 80k lines).
Now I have two plans:
Simply find the corresponding relationships ...





