Currently I'm using TCC as it's the easiest thing to get setup on windows. Simply unzip and you're ready to go. However I'm open to other compilers, GCC, whatever microsoft has on offer etc.

My problem is that I need to validate the input to a size 16 array of integers. Here are my rules:

if number is under 15 (including negative values) then input is valid
if number is under -2147483648 then -2147483648

if number is over 2147483647 then 15
else if number is over 15 then mod 16

if the number is a decimal, remove decimal point and validate again

Considering I'm using C, the last point scares me, and I'll come back to it later. For now I'm just trying to handle the first 4 conditions.

The problem I'm running into is that trying to test for the outer bounds results in Integer overflows and screws up my checks. So I've made a temporary array of long longs to hold the input for validation purposes. The moment everything is successfully validated it should fit in an array of Integers, so I will (somehow) copy the long longs from the temp array to the actual one and start the program as normal.

I've messed around with long longs and trying to do what I want to do, but my code is getting messy fast and everything is so vague and machine dependant in C so when something goes wrong I don't know whether it's me and my crappy coding, or the fact that my machine is different to everyone else's that is causing the error. I am going to stick at it cause I know this sort of thing can be investigated and worked out, however I don't want to waste too much time on it so I'll ask SO and see if there's a shortcut.

The decimal validation part I've got various ideas on how to approach, but I'm not hopeful. What's your opinion?

Anyone who wants to know why I'm doing this: It doesn't matter, I can solve the higher level problem that requires this array quite easily and it will work for all valid inputs. However I'm just being pedantic right now, hence this question.

link|improve this question

1  
You probably should consider your problem as string related, not number related... – Basile Starynkevitch Nov 19 '11 at 15:43
In your last rule, do you really mean remove decimal point or did you maybe mean rounding the number down? – leemes Nov 19 '11 at 15:44
@Basile: Exactly why I said I'm scared :P C and strings don't mix nicely. – TheIronKnuckle Nov 19 '11 at 15:59
No, C is a low level language which handles strings quite well. – Basile Starynkevitch Nov 19 '11 at 16:00
efficiently, but not elegantly. @leemes: Yes, I mean remove the decimal point and then revalidate against the new value – TheIronKnuckle Nov 19 '11 at 16:01
feedback

1 Answer

up vote 1 down vote accepted

First, your conditions have some problems. If a number is under -2147483648, it's also under 15, so that check never matches (neither being a decimal for numbers under 15).

Second, you can check for overflows with strtol (check errno for ERANGE) and then compare with your limits (though there's no need if your long has 32-bits and is in two's complement).

As for decimals, if you always want to remove the decimal point (not what you're saying you want because you condition that on a series of other conditions failing), you can setup a preprocessing step that removes periods from the string. It can easily be done in-place with two pointers – a read pointer and a write pointer.

link|improve this answer
A preprocessing step that removes periods from the string? But I need to do it at run time. Can you elaborate on what you mean? And yeah sorry for my sloppy psuedo else if chain :P – TheIronKnuckle Nov 19 '11 at 16:04
@TheIronKnuckle I meant before doing the checks. – Artefacto Nov 19 '11 at 16:05
Could you post the in place code? I'm struggling – TheIronKnuckle Nov 19 '11 at 16:29
@TheIronKnuckle Somethink like for (wp = s; *s; s++) { if (*s != '.') *wp++ = *s; }; *wp = '\0'; where wp is the write pointer and s is the read pointer. – Artefacto Nov 19 '11 at 16:41
Ahh, cheers! :) – TheIronKnuckle Nov 19 '11 at 16:48
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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