SourceForge.net Logo
ATDecimalOrDerived.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2001, 2008,
3  * DecisionSoft Limited. All rights reserved.
4  * Copyright (c) 2004, 2018 Oracle and/or its affiliates. All rights reserved.
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifndef _ATDECIMALORDERIVED_HPP
21 #define _ATDECIMALORDERIVED_HPP
22 
23 #include <xercesc/util/XercesDefs.hpp>
24 #include <xqilla/framework/XQillaExport.hpp>
25 #include <xqilla/items/Numeric.hpp>
26 
27 class DynamicContext;
28 class MAPM;
29 class XQILLA_API ATDecimalOrDerived : public Numeric
30 {
31 public:
33 
34  /* Get the name of the primitive type (basic type) of this type
35  * (ie "decimal" for xs:decimal) */
36  virtual const XMLCh* getPrimitiveTypeName() const = 0;
37 
38  /* Get the namespace URI for this type */
39  virtual const XMLCh* getTypeURI() const = 0;
40 
41  /* Get the name of this type (ie "integer" for xs:integer) */
42  virtual const XMLCh* getTypeName() const = 0;
43 
44  /* returns the XMLCh* (canonical) representation of this type */
45  virtual const XMLCh* asString(const DynamicContext* context) const = 0;
46 
47  /* Promote this to the given type, if possible */
49  const DynamicContext* context) const = 0;
50 
52  virtual Numeric::Ptr add(const Numeric::Ptr &other, const DynamicContext* context) const = 0;
53 
56  virtual Numeric::Ptr subtract(const Numeric::Ptr &other, const DynamicContext* context) const = 0;
57 
59  virtual Numeric::Ptr multiply(const Numeric::Ptr &other, const DynamicContext* context) const = 0;
60 
62  virtual Numeric::Ptr divide(const Numeric::Ptr &other, const DynamicContext* context) const = 0;
63 
65  virtual Numeric::Ptr mod(const Numeric::Ptr &other, const DynamicContext* context) const = 0;
66 
68  virtual Numeric::Ptr floor(const DynamicContext* context) const = 0;
69 
71  virtual Numeric::Ptr ceiling(const DynamicContext* context) const = 0;
72 
74  virtual Numeric::Ptr round(const DynamicContext* context) const = 0;
75 
77  virtual Numeric::Ptr roundHalfToEven(const Numeric::Ptr &precision, const DynamicContext* context) const = 0;
78 
80  virtual Numeric::Ptr invert(const DynamicContext* context) const = 0;
81 
83  virtual Numeric::Ptr abs(const DynamicContext* context) const = 0;
84 
86  virtual Numeric::Ptr sqrt(const DynamicContext* context) const = 0;
87 
89  virtual Numeric::Ptr sin(const DynamicContext* context) const = 0;
90 
92  virtual Numeric::Ptr cos(const DynamicContext* context) const = 0;
93 
95  virtual Numeric::Ptr tan(const DynamicContext* context) const = 0;
96 
98  virtual Numeric::Ptr asin(const DynamicContext* context) const = 0;
99 
101  virtual Numeric::Ptr acos(const DynamicContext* context) const = 0;
102 
104  virtual Numeric::Ptr atan(const DynamicContext* context) const = 0;
105 
107  virtual Numeric::Ptr log(const DynamicContext* context) const = 0;
108 
110  virtual Numeric::Ptr exp(const DynamicContext* context) const = 0;
111 
113  virtual bool isZero() const = 0;
114 
116  virtual bool isNegative() const = 0;
117 
119  virtual bool isPositive() const = 0;
120 
121  /* Is this floating point value not a number? */
122  virtual bool isNaN() const { return false; }
123 
124  /* Is this floating point value infinite? */
125  virtual bool isInfinite() const { return false; }
126 
128  virtual XMLInt32 treatAsCodepoint(const DynamicContext* context) const = 0;
129 
131 
132  virtual const MAPM &asMAPM() const = 0;
133 
134  virtual State getState() const = 0;
135 };
136 
137 #endif // _ATDECIMALORDERIVED_HPP
virtual Numeric::Ptr invert(const DynamicContext *context) const =0
Returns the Additive inverse of this Numeric.
virtual const XMLCh * getTypeName() const =0
virtual Numeric::Ptr cos(const DynamicContext *context) const =0
Returns the cos root of this Numeric.
virtual State getState() const =0
virtual Numeric::Ptr ceiling(const DynamicContext *context) const =0
Returns the ceiling of this Numeric.
virtual Numeric::Ptr add(const Numeric::Ptr &other, const DynamicContext *context) const =0
Returns a Numeric object which is the sum of this and other.
Super class of all the reference counted wrappers for Items.
Definition: ReferenceCounted.hpp:61
virtual bool isPositive() const =0
Is this Numeric positive?
virtual bool isInfinite() const
Definition: ATDecimalOrDerived.hpp:125
Definition: Numeric.hpp:31
virtual Numeric::Ptr round(const DynamicContext *context) const =0
Rounds this Numeric.
virtual Numeric::Ptr tan(const DynamicContext *context) const =0
Returns the tan of this Numeric.
AtomicObjectType
Definition: AnyAtomicType.hpp:34
virtual Numeric::Ptr divide(const Numeric::Ptr &other, const DynamicContext *context) const =0
Returns a Numeric object which is the quotient of this and other.
virtual Numeric::Ptr log(const DynamicContext *context) const =0
Returns the ln of this Numeric.
virtual Numeric::Ptr atan(const DynamicContext *context) const =0
Returns the atan of this Numeric.
virtual AnyAtomicType::AtomicObjectType getPrimitiveTypeIndex() const =0
virtual bool isZero() const =0
Does this Numeric have value 0?
virtual Numeric::Ptr subtract(const Numeric::Ptr &other, const DynamicContext *context) const =0
Returns a Numeric object which is the difference of this and other.
virtual const XMLCh * asString(const DynamicContext *context) const =0
virtual const XMLCh * getPrimitiveTypeName() const =0
virtual const XMLCh * getTypeURI() const =0
The execution time dynamic context interface.
Definition: DynamicContext.hpp:38
virtual Numeric::Ptr exp(const DynamicContext *context) const =0
Returns the exp of this Numeric.
RefCountPointer< const ATDecimalOrDerived > Ptr
Definition: ATDecimalOrDerived.hpp:32
virtual Numeric::Ptr mod(const Numeric::Ptr &other, const DynamicContext *context) const =0
Returns the arithmetic product of its operands as a Numeric.
virtual bool isNegative() const =0
Is this Numeric negative?
virtual Numeric::Ptr sqrt(const DynamicContext *context) const =0
Returns the squart root of this Numeric.
virtual Numeric::Ptr acos(const DynamicContext *context) const =0
Returns the acos of this Numeric.
virtual Numeric::Ptr roundHalfToEven(const Numeric::Ptr &precision, const DynamicContext *context) const =0
Rounds this Numeric to the given precision, and rounds a half to even.
virtual Numeric::Ptr sin(const DynamicContext *context) const =0
Returns the sin of this Numeric.
virtual Numeric::Ptr floor(const DynamicContext *context) const =0
Returns the floor of this Numeric.
virtual Numeric::Ptr asin(const DynamicContext *context) const =0
Returns the asin of this Numeric.
virtual Numeric::Ptr promoteTypeIfApplicable(AnyAtomicType::AtomicObjectType typeIndex, const DynamicContext *context) const =0
virtual bool isNaN() const
Definition: ATDecimalOrDerived.hpp:122
Definition: ATDecimalOrDerived.hpp:29
virtual Numeric::Ptr multiply(const Numeric::Ptr &other, const DynamicContext *context) const =0
Returns a Numeric object which is the product of this and other.
virtual Numeric::Ptr abs(const DynamicContext *context) const =0
Returns the absolute value of this Numeric.
virtual const MAPM & asMAPM() const =0