vote up 10 vote down star

We plan on changing our company name starting October 1st. All of our namespaces, projects etc use XYZ.ComponentName.

My question to you would be, on October 1st, what would you do? Change all the old components to ABC.ComponentName? Leave the old ones but any new development becomes ABC.ComponentName? Just stick with the old name?

flag
What languages or environments are these namespaces in? Is XYZ easily searched for without (many) false positives? Is your code all internal or would this affect other people? How much work are you willing to put in over this? – David Thornley Sep 4 at 18:58
You know this is a good question, and of interest to S/O "members." But - it's not programming-related. Why is that some folks out here close questions like this? I'm 1) trying to understand the mindset of certain, uh, people, and 2) understand how I can get my quasi-programming-related questions answered instead of closed. Food for thought. To wit: stackoverflow.com/questions/1364304/…. Someone tell me what my mistake is. – Don Branson Sep 4 at 19:29
@Don: The one you link is debatable. However, this one isn't even close. It is a concern totally unique to programming. There might be some other internal documents with an old company name in them, but with a flat document nothing breaks if you only switch some of the references. – T.E.D. Sep 4 at 19:37
Perhaps. I'm thinking that ROWE would be a great pgmng env, and I'd like to find one, while making the question of broader interest than just hey, where is one in the midwest. – Don Branson Sep 4 at 20:15

9 Answers

vote up 12 vote down check

It Depends.

Some things to consider: If changing the namespace means moving files in CVS, then there is a penalty because you lose the history. If changing the namespace means manual work, you're going to miss places and cause bugs.

Also, do you have external users of the code/libraries? If they have to change their code because you've renamed the company, they will be annoyed.

I'd be inclined to leave the code the way it is. Namespaces are meaningless except to prevent collisions; at this point it's only marketing. But for new products I'd for sure use a new namesapce.

Where I used to work we had a few company-name or app-name changes and it was always problematic. One application was delayed by a couple weeks while they ironed out the bugs from a global namespace change at the last minute. Another application never adopted the new names and was always internally referred-to by the obsolete name, potentially confusing for new users. Imagine if everything in Java was still called 'Oak'.

link|flag
1  
FYI: If you use Perforce for version control, you don't lose that history. It tracks a file's history even across branches (a rename actually consists of a branch and delete operations). They added that very helpful functionality within the last year or two. – raven Sep 4 at 19:38
@Raven .. strike one also for VSS - for a change .. lol – Peter M Sep 7 at 20:39
@raven: Yeah, CVS is the worst offender about tracking file revisions across renames. But it's very common still. We're stuck with it at my work for now... sigh. – Mr. Shiny and New Sep 8 at 12:30
vote up 1 vote down

Mixing and matching namespaces is often very troublesome and confusing from a maintenance standpoint. I would say that it really depends on the number of components you're dealing with and how many applications are dependent on them.

Perhaps it would make sense to map out the dependencies and get a feel for how much work you've got on your hands.

link|flag
vote up 0 vote down

That depends on if the components are stable, much used, if it doesn't to to much time to change, if there is time money and developers to change it...

Lots of if's.

link|flag
vote up 0 vote down

I would probably just leave them as is. Changing them creates a nightmare in work, testing, and verification, and if somebody externally uses your library they also have to change their bindings to accommodate this change.

When Next was bought by Apple, they left the NS prefix as is, you can see this today with Apple's development frameworks. It won't kill you to leave them as is.

For new Namespaces you could change it to ABC but then you would break consistency, which could confuse people - especially new developers.

Just leave it as is and worry about other things :)

link|flag
vote up 0 vote down

Also, watch out if you're doing any sort of dependency injection that uses reflection as that can then break.

Another problem is 3rd party code or other projects that use your project if there are any, as changing the namespace would break them.

The safest option is to leave the namespaces as they are.

link|flag
vote up 2 vote down

Whichever choice you make, don't mix the two namespaces on new development. Be consistent. If you choose to stick with the old one, new development should use that too. If you move to a new one, move everything.

It may require some more analysis of the work involved with your particular scenario to decide if its worth it to switch or not.

link|flag
3  
We mix our namespaces ... it causes absolutely no problems. It is a great way to distinguish legacy architectures from newer architectures :) – Precipitous Sep 4 at 19:08
+1 for Precip, only because it points out a benefit of doing that. As I mentioned below, I think you shouldn't be using namespaces for this in the first place, and this situation shows why. – T.E.D. Sep 4 at 19:41
vote up 4 vote down

Are you selling those components to 3rd parties? If not, then it's not worth the effort. If you are, then the namespace is part of your marketing and therefore should be changed.

link|flag
vote up 0 vote down

It has been my experience in scenarios like this, that it is best to leave the namespace as it currently is. Any new libraries developed can use the new company name in the namespace.

link|flag
vote up 3 vote down

As for the current pickle you find yourself in, I would ask for some $$ from the signage changing budget for fixing the code. If they don't give it to you, leave the old name be.

I think the proper answer is that you don't create namespaces with your company name in them in the first place. Pretty much everyone there knows who signs their paychecks; you alliviate no confusion by enshrining the name in code.

I had one coworker who discovered namespaces one day, and next thing I knew our entire software library has to be accessed through several layers of namespaces designating our company, division, and project. The thing is, we only really have the one project (although you could convince me of the benifit of that), the other divisions don't do software, and code we take from other companies doesn't follow his scheme. So really its just a lot of useless extra typing we have to do. Yes, we can do "using", but then there's no real benifit to the namespaces at all. Oh, and of course our division name changed a couple years later, when management decided "division" sounded to devisive, and we should now be called "teams". %-(

Namespaces are really best used whenever you have several classes which you would be tempted to name startimg with (or including somewhere) the same string. They aren't for mirroring your software development group's current management reporting structure.

link|flag
Well, not using the company name is one way to approach things, but sometimes isn't industry standard: Java's package naming guidelines specifically ask you to name your packages after your TLD. So the SO class which is responsible for parsing comments would have a name like com.stackoverflow.commenting.CommentHTMLParser. – Mr. Shiny and New Sep 8 at 12:35
I read that in their guidlines back in the late 90's when they first came up with Java. I think their vision was that the web would be chock full of packages that people could share (or buy), and thus something like this would be needed. I'm not a Java guy these days, but it didn't exactly work out that way, did it? – T.E.D. Sep 8 at 13:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.