Bug 2314 - TAO doesn't support fixed type
Summary: TAO doesn't support fixed type
Status: ASSIGNED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.4.7
Hardware: All All
: P2 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks: 1278
  Show dependency tree
 
Reported: 2005-11-23 12:54 CST by Johnny Willemsen
Modified: 2008-12-19 09:01 CST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2005-11-23 12:54:55 CST
See 1.11 of the C++ mapping (03-06-03). Described the fixed datatype which isn't
supported by TAO. For example:

  typedef fixed <5,2> F;
  interface A {
        void op (in F arg)
  };
Comment 1 Ossama Othman 2005-11-23 20:03:20 CST
Known problem.  There's never been any real demand for the "fixed" IDL data 
type which is why it has never been implemented.

Note that TAO does support the tk_fixed TypeCode, meaning that it can receive 
Anys containing "fixed" values.  It just won't be possible to extract the 
value from that Any.
Comment 2 Johnny Willemsen 2005-11-24 05:44:37 CST
accept
Comment 3 Johnny Willemsen 2006-02-17 14:19:59 CST
changed priority
Comment 4 Jürgen Weber 2008-12-19 06:21:32 CST
Supporting the fixed type is important because

- JacORB supports fixed and interoperability between Tao and JacORB is
broken for IDLs that use fixed

- fixed is important for business applications because BCD
(http://en.wikipedia.org/wiki/Binary-coded_decimal) is important for
those applications

- BCD is used in COBOL (see the COBOL Language Mapping 1.6 Mapping for
Fixed Types)  (incidentally COBOL uses the same in-memory
representation for PACKED-DECIMAL as IIOP for fixed, or is this by
design?)

- fixed is part of the standard and Tao is not standard-conforming without fixed 

I do not believe that the implementation would be difficult. There are lots of number conversion constructors and operators, but this should not be difficult. As for converting to IIOP, one could start with the hack of converting the fixed to an (integer) string, then fill each half-byte with one position of the string (see 15.3.2.8 Fixed-Point Decimal Type of the Core Specification).

"-123456"  -> 0x0123456C

Actually, I just checked org.jacorb.orb.CDROutputStream.write_fixed(final java.math.BigDecimal value)
it does exactly this, toString() and write out the digits.
(Hope that looking at JacORB's sources is not a breach of copyright).
Comment 5 Eric Hall 2008-12-19 09:01:25 CST
testing comments