KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > el > ModulusOperator


1 /*
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 1999 The Apache Software Foundation. All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in
16  * the documentation and/or other materials provided with the
17  * distribution.
18  *
19  * 3. The end-user documentation included with the redistribution, if
20  * any, must include the following acknowlegement:
21  * "This product includes software developed by the
22  * Apache Software Foundation (http://www.apache.org/)."
23  * Alternately, this acknowlegement may appear in the software itself,
24  * if and wherever such third-party acknowlegements normally appear.
25  *
26  * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
27  * Foundation" must not be used to endorse or promote products derived
28  * from this software without prior written permission. For written
29  * permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache"
32  * nor may "Apache" appear in their names without prior written
33  * permission of the Apache Group.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation. For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  */

55
56 package org.apache.commons.el;
57
58 import javax.servlet.jsp.el.ELException JavaDoc;
59 import java.math.BigInteger JavaDoc;
60
61 /**
62  *
63  * <p>The implementation of the modulus operator
64  *
65  * @author Nathan Abramson - Art Technology Group
66  * @version $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: luehe $
67  **/

68
69 public class ModulusOperator
70   extends BinaryOperator
71 {
72   //-------------------------------------
73
// Singleton
74
//-------------------------------------
75

76   public static final ModulusOperator SINGLETON =
77     new ModulusOperator ();
78
79   //-------------------------------------
80
/**
81    *
82    * Constructor
83    **/

84   public ModulusOperator ()
85   {
86   }
87
88   //-------------------------------------
89
// Expression methods
90
//-------------------------------------
91
/**
92    *
93    * Returns the symbol representing the operator
94    **/

95   public String JavaDoc getOperatorSymbol ()
96   {
97     return "%";
98   }
99
100   //-------------------------------------
101
/**
102    *
103    * Applies the operator to the given value
104    **/

105   public Object JavaDoc apply (Object JavaDoc pLeft,
106                Object JavaDoc pRight,
107                Logger pLogger)
108     throws ELException JavaDoc
109   {
110     if (pLeft == null &&
111     pRight == null) {
112       if (pLogger.isLoggingWarning ()) {
113     pLogger.logWarning
114       (Constants.ARITH_OP_NULL,
115        getOperatorSymbol ());
116       }
117       return PrimitiveObjects.getInteger (0);
118     }
119
120     if ((pLeft != null &&
121      (Coercions.isFloatingPointType (pLeft) ||
122       Coercions.isFloatingPointString (pLeft))) ||
123       Coercions.isBigDecimal(pLeft) ||
124     (pRight != null &&
125      (Coercions.isFloatingPointType (pRight) ||
126       Coercions.isFloatingPointString (pRight) ||
127       Coercions.isBigDecimal(pRight)))) {
128       double left =
129     Coercions.coerceToPrimitiveNumber (pLeft, Double JavaDoc.class, pLogger).
130     doubleValue ();
131       double right =
132     Coercions.coerceToPrimitiveNumber (pRight, Double JavaDoc.class, pLogger).
133     doubleValue ();
134
135       try {
136     return PrimitiveObjects.getDouble (left % right);
137       }
138       catch (Exception JavaDoc exc) {
139     if (pLogger.isLoggingError ()) {
140       pLogger.logError
141         (Constants.ARITH_ERROR,
142          getOperatorSymbol (),
143          "" + left,
144          "" + right);
145     }
146     return PrimitiveObjects.getInteger (0);
147       }
148     }
149     else if (Coercions.isBigInteger(pLeft) || Coercions.isBigInteger(pRight)) {
150         BigInteger JavaDoc left = (BigInteger JavaDoc)
151              Coercions.coerceToPrimitiveNumber(pLeft, BigInteger JavaDoc.class, pLogger);
152         BigInteger JavaDoc right = (BigInteger JavaDoc)
153             Coercions.coerceToPrimitiveNumber(pRight, BigInteger JavaDoc.class, pLogger);
154
155         try {
156             return left.remainder(right);
157         } catch (Exception JavaDoc exc) {
158             if (pLogger.isLoggingError()) {
159                 pLogger.logError
160                     (Constants.ARITH_ERROR,
161                         getOperatorSymbol(),
162                         "" + left,
163                         "" + right);
164             }
165             return PrimitiveObjects.getInteger(0);
166         }
167     }
168     else {
169       long left =
170     Coercions.coerceToPrimitiveNumber (pLeft, Long JavaDoc.class, pLogger).
171     longValue ();
172       long right =
173     Coercions.coerceToPrimitiveNumber (pRight, Long JavaDoc.class, pLogger).
174     longValue ();
175
176       try {
177     return PrimitiveObjects.getLong (left % right);
178       }
179       catch (Exception JavaDoc exc) {
180     if (pLogger.isLoggingError ()) {
181       pLogger.logError
182         (Constants.ARITH_ERROR,
183          getOperatorSymbol (),
184          "" + left,
185          "" + right);
186     }
187     return PrimitiveObjects.getInteger (0);
188       }
189     }
190   }
191
192   //-------------------------------------
193
}
194
Popular Tags