I am working on code that takes as input a ton of ascii text defined by specific protocol. The original author interpreted "string(1)" datatypes in the original protocol as char's in the code.

There have been a lot subtle bugs in corner cases where you have code such as:

char theChar = whatever();
if(theChar == 7) {...} 

where was was really meant was:

if(theChar == '7') {...}

In order to attempt to catch all of these at once, is there a way to disable the implicit casting to 'char'? If not, what is the best way to go about tracking all of these down?

link|improve this question

1  
Ugh, I wouldn't want to disable any built-in type behavior, that's just asking for trouble. As for hunting them down, you could create a custom FxCop (Code Analysis) rule... – James Michael Hare Jan 6 at 18:58
3  
+1 for the nasty problem, not so much for the desired solution. Note the XY problem – Anthony Pegram Jan 6 at 18:59
The solution to this problem is rigorous pre-commit code-reviews. – jeffamaphone Jan 6 at 19:07
feedback

4 Answers

up vote 4 down vote accepted

You should be able to write a trivial replacement class for char (which holds a char as its data, and provides a few cast operators to allow it to be used as if it were a char) that doesn't allow implicit casts to/from ints, and then do a search and replace of 'char' with the 'mychar'. This will throw up compiler errors that you can fix, and then if you wish you can revert the code to using char again, or stick with your class.

This is a good example of a place where temporary use of macros is so useful in c++...

link|improve this answer
feedback

My suggestion to find existing errors such as the one described is to use Visual Studio to perform a search across the entire solution (Ctrl+Shift+F) using regular expressions.

  • Press Ctrl+Shift+F
  • Select "Use: regular expressions" under "Find options"
  • Enter the following regular expression into the "Find what" field: [^0-9a-zA-Z_][0-9]+[^0-9]

I think that this will list all occurrences of a literal number in the source code. You can then glance through the search results to see if any of them require further investigation.

You can further narrow down the search results by focusing on a specific type of problem. For instance, to find the code in the provided example, you could adjust the expression to the following: ==( |\t|\r|\n)*[0-9]+[^0-9]


Original Answer

I can't offer any good suggestion to avoid this problem other than to try to avoid "magic" values in code.

Assuming that this code is being used in some kind of menu selection logic, I feel like perhaps the code should be something like this:

static class MenuSelection
{
    public const char Open = '1';
    public const char Edit = '2';
    public const char Save = '3';
    // ...
    public const char Close = '7';
}

And then MenuSelection should be used in the if statement as shown below:

char theChar = whatever();
if(theChar == MenuSelection.Close) {...} 

This doesn't really address the problem of the implicit conversion from UInt32 to char, but hopefully the person writing the code for the constants in the MenuSelection class will be less likely to forget the quotes.

EDIT: Oh, after giving it a try, it seems like this does kind of address the implicit conversion issue, because public const char Close = 7; produces a compile error.

Unfortunately, it doesn't help your immediate problem: a lot of existing code containing these kinds of bugs.

link|improve this answer
feedback

As a "fix once" solution I think James Michael Hare's FxCop solution is the easiest.

To keep it from being a problem in the future refactoring to use a custom datatype instead of char so you can define the exact operations you want available may be a good idea.

link|improve this answer
feedback

No, the behavior allowing the expression theChar == 7 is part of the C# specification, and can't be changed.

Note that the actual implicit conversion here is from int to char, not from char to uint.

Here's how it works:

  • The literal 7 has type int.
  • The variable theChar has type char.
  • To apply the == operator to the two expressions, the compiler must choose an == operator.
    • There is no == operator that takes a char as the first argument and an int as the second.
    • There is no implicit conversion from int to char (because such a conversion can lose information).
    • There is an implicit conversion from char to int.
    • The compiler converts the char expression to int, and uses the == operator that takes two ints.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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