[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

BigDecimal bug?

Mark Somerville

3/13/2007 11:08:00 AM

Hello,

Can anyone tell me if this is a bug? It certainly seems like it to me.

>> BigDecimal.new("-.31").to_s
=> "0.31"

$ ruby -v
ruby 1.8.5 (2006-12-04 patchlevel 2) [x86_64-linux]

I have tried altering the BigDecimal initialisation code, without success.
Does anyone have any clues as to how to workaround this issue without
pre-processing the "-.31" string? I'd think I could alter the "new" call to
alter the malformed string a little.

Thanks a lot in advance,

Mark

6 Answers

Mark Somerville

3/13/2007 11:45:00 AM

0

On Tue, Mar 13, 2007 at 08:08:07PM +0900, Mark Somerville wrote:
> I have tried altering the BigDecimal initialisation code, without success.
> Does anyone have any clues as to how to workaround this issue without
> pre-processing the "-.31" string? I'd think I could alter the "new" call to
> alter the malformed string a little.

I've managed to get a workaround going now (I realise this is a poor
substitute for fixing the poorly formed decimals), but I don't understand why I need
to wrap the alias_method inside class << self. Can anyone explain it to me?

class BigDecimal

#why do I need to wrap this in class << self ???
class << self
alias_method 'original_new', 'new'
end

def self.new(value)
value = "-0.#{$1}" if value =~ /^-\.(.+)$/
return original_new(value)
end

end

Cheers,

Mark

Stefano Crocco

3/13/2007 11:51:00 AM

0

Alle martedì 13 marzo 2007, Mark Somerville ha scritto:
> I don't understand why I need
> to wrap the alias_method inside class << self. Can anyone explain it to me?

alias_method works for instance methods (i.e, a method of instances of class
BigDecimal). You're aliasing a class method (new), that is an instance method
of the class BigDecimal. To do so, you should enter a scope where self is not
the class BigDecimal, but BigDecimal's class. This way, new is seen as an
instance method (i.e. a method of instances of the class of BigDecimal, i.e.
of BigDecimal). This is what you do with the class << self construct.

I hope this explaination makes sense (if it doesn't, tell me and I'll try to
clarify)

Stefano

Daniel Berger

3/13/2007 4:32:00 PM

0



On Mar 13, 5:08 am, Mark Somerville <m...@pccl.info> wrote:
> Hello,
>
> Can anyone tell me if this is a bug? It certainly seems like it to me.
>
> >> BigDecimal.new("-.31").to_s
>
> => "0.31"
>
> $ ruby -v
> ruby 1.8.5 (2006-12-04 patchlevel 2) [x86_64-linux]

Looks like a bug to me. I think it's in the VpToString() function
being called by the BigDecimal_to_s() function. I'm not positive,
though, as the code is long and ugly.

Please submit a bug report to ruby-core.

Thanks,

Dan


Mark Somerville

3/13/2007 5:24:00 PM

0

On Tue, Mar 13, 2007 at 08:51:02PM +0900, Stefano Crocco wrote:
> Alle martedì 13 marzo 2007, Mark Somerville ha scritto:
> > I don't understand why I need
> > to wrap the alias_method inside class << self. Can anyone explain it to me?
>
> alias_method works for instance methods (i.e, a method of instances of class
> BigDecimal). You're aliasing a class method (new), that is an instance method
> of the class BigDecimal. To do so, you should enter a scope where self is not
> the class BigDecimal, but BigDecimal's class. This way, new is seen as an
> instance method (i.e. a method of instances of the class of BigDecimal, i.e.
> of BigDecimal). This is what you do with the class << self construct.
>
> I hope this explaination makes sense (if it doesn't, tell me and I'll try to
> clarify)

Thanks a lot Stefano, that explanation was exactly what I needed.

Mark

Mark Somerville

3/13/2007 5:34:00 PM

0

On Wed, Mar 14, 2007 at 01:31:32AM +0900, Daniel Berger wrote:
> On Mar 13, 5:08 am, Mark Somerville <m...@pccl.info> wrote:
> > Hello,
> >
> > Can anyone tell me if this is a bug? It certainly seems like it to me.
> >
> > >> BigDecimal.new("-.31").to_s
> >
> > => "0.31"
> >
> > $ ruby -v
> > ruby 1.8.5 (2006-12-04 patchlevel 2) [x86_64-linux]
>
> Looks like a bug to me. I think it's in the VpToString() function
> being called by the BigDecimal_to_s() function. I'm not positive,
> though, as the code is long and ugly.
>
> Please submit a bug report to ruby-core.

Sure, done.

Mark

Shigeo Kobayashi

3/14/2007 3:34:00 AM

0

Subject: Re: BigDecimal bug?


> Can anyone tell me if this is a bug? It certainly seems like it to me.
> BigDecimal.new("-.31").to_s
> => "0.31"
Yes,could you apply the patch bellow:
---------------------------------------------------------------------------------
$ ruby/ruby-1.8.6/ext/bigdecimal
$ diff -up bigdecimal.c.old bigdecimal.c
--- bigdecimal.c.old 2007-03-14 10:21:30.015625000 +0900
+++ bigdecimal.c 2007-03-14 12:26:18.625000000 +0900
@@ -3921,7 +3921,7 @@ VpCtoV(Real *a, const char *int_chr, U_L
/* get integer part */
i = 0;
sign = 1;
- if(ni > 0) {
+ if(ni >= 0) {
if(int_chr[0] == '-') {
sign = -1;
++i;
---------------------------------------------------------------------------------

Matz, could you please apply the patch and commit the source
with the change log ?
Somewhat like:
Wed Mar 14 12:30:00 2007 Shigeo Kobayashi <shigeo@tinyforest.jp>

* ext/bigdecimal/bigdecimal.c: BigDecimal("-.31") is now
treated as ("-0.31") not as ("0.31").

Thank you in advance.

Shigeo Kobayashi
shigeo@tinyforest.jp