Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <cmath>
22 : #include "file/FNumericFunctions.hxx"
23 : #include <rtl/math.hxx>
24 :
25 : using namespace connectivity;
26 : using namespace connectivity::file;
27 :
28 : static const double fPi = 3.14159265358979323846;
29 :
30 0 : ORowSetValue OOp_Abs::operate(const ORowSetValue& lhs) const
31 : {
32 0 : if ( lhs.isNull() )
33 0 : return lhs;
34 :
35 0 : double nVal(lhs);
36 0 : if ( nVal < 0 )
37 0 : nVal *= -1.0;
38 0 : return fabs(nVal);
39 : }
40 :
41 0 : ORowSetValue OOp_Sign::operate(const ORowSetValue& lhs) const
42 : {
43 0 : if ( lhs.isNull() )
44 0 : return lhs;
45 :
46 0 : sal_Int32 nRet = 0;
47 0 : double nVal(lhs);
48 0 : if ( nVal < 0 )
49 0 : nRet = -1;
50 0 : else if ( nVal > 0 )
51 0 : nRet = 1;
52 :
53 0 : return nRet;
54 : }
55 :
56 0 : ORowSetValue OOp_Mod::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const
57 : {
58 0 : if ( lhs.isNull() || rhs.isNull() )
59 0 : return ORowSetValue();
60 :
61 0 : return fmod((double)lhs,(double)rhs);
62 : }
63 :
64 0 : ORowSetValue OOp_Floor::operate(const ORowSetValue& lhs) const
65 : {
66 0 : if ( lhs.isNull() )
67 0 : return lhs;
68 :
69 0 : return floor((double)lhs);
70 : }
71 :
72 0 : ORowSetValue OOp_Ceiling::operate(const ORowSetValue& lhs) const
73 : {
74 0 : if ( lhs.isNull() )
75 0 : return lhs;
76 :
77 0 : double nVal(lhs);
78 0 : return ceil(nVal);
79 : }
80 :
81 0 : ORowSetValue OOp_Round::operate(const ::std::vector<ORowSetValue>& lhs) const
82 : {
83 0 : if ( lhs.empty() || lhs.size() > 2 )
84 0 : return ORowSetValue();
85 :
86 0 : size_t nSize = lhs.size();
87 0 : double nVal = lhs[nSize-1];
88 :
89 0 : sal_Int32 nDec = 0;
90 0 : if ( nSize == 2 && !lhs[0].isNull() )
91 0 : nDec = lhs[0];
92 0 : return ::rtl::math::round(nVal,nDec);
93 : }
94 :
95 0 : ORowSetValue OOp_Exp::operate(const ORowSetValue& lhs) const
96 : {
97 0 : if ( lhs.isNull() )
98 0 : return lhs;
99 :
100 0 : double nVal(lhs);
101 0 : return exp(nVal);
102 : }
103 :
104 0 : ORowSetValue OOp_Ln::operate(const ORowSetValue& lhs) const
105 : {
106 0 : if ( lhs.isNull() || static_cast<double>(lhs) < 0.0 )
107 0 : return lhs;
108 :
109 0 : double nVal(lhs);
110 0 : nVal = log(nVal);
111 0 : if ( rtl::math::isNan(nVal) )
112 0 : return ORowSetValue();
113 0 : return nVal;
114 : }
115 :
116 0 : ORowSetValue OOp_Log::operate(const ::std::vector<ORowSetValue>& lhs) const
117 : {
118 0 : if ( lhs.empty() || lhs.size() > 2 )
119 0 : return ORowSetValue();
120 0 : size_t nSize = lhs.size();
121 0 : double nVal = log( (double)lhs[nSize-1] );
122 :
123 :
124 0 : if ( nSize == 2 && !lhs[0].isNull() )
125 0 : nVal /= log((double)lhs[0]);
126 :
127 0 : if ( rtl::math::isNan(nVal) )
128 0 : return ORowSetValue();
129 0 : return nVal;
130 : }
131 :
132 0 : ORowSetValue OOp_Log10::operate(const ORowSetValue& lhs) const
133 : {
134 0 : if ( lhs.isNull() || static_cast<double>(lhs) < 0.0 )
135 0 : return lhs;
136 :
137 0 : double nVal = log((double)lhs);
138 0 : if ( rtl::math::isNan(nVal) )
139 0 : return ORowSetValue();
140 0 : nVal /= log(10.0);
141 0 : return nVal;
142 : }
143 :
144 0 : ORowSetValue OOp_Pow::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const
145 : {
146 0 : if ( lhs.isNull() || rhs.isNull() )
147 0 : return lhs;
148 :
149 0 : return pow((double)lhs,(double)rhs);
150 : }
151 :
152 0 : ORowSetValue OOp_Sqrt::operate(const ORowSetValue& lhs) const
153 : {
154 0 : if ( lhs.isNull() )
155 0 : return lhs;
156 :
157 0 : double nVal = sqrt((double)lhs);
158 0 : if ( rtl::math::isNan(nVal) )
159 0 : return ORowSetValue();
160 0 : return nVal;
161 : }
162 :
163 0 : ORowSetValue OOp_Pi::operate(const ::std::vector<ORowSetValue>& /*lhs*/) const
164 : {
165 0 : return fPi;
166 : }
167 :
168 0 : ORowSetValue OOp_Cos::operate(const ORowSetValue& lhs) const
169 : {
170 0 : if ( lhs.isNull() )
171 0 : return lhs;
172 :
173 0 : return cos((double)lhs);
174 : }
175 :
176 0 : ORowSetValue OOp_Sin::operate(const ORowSetValue& lhs) const
177 : {
178 0 : if ( lhs.isNull() )
179 0 : return lhs;
180 :
181 0 : return sin((double)lhs);
182 : }
183 :
184 0 : ORowSetValue OOp_Tan::operate(const ORowSetValue& lhs) const
185 : {
186 0 : if ( lhs.isNull() )
187 0 : return lhs;
188 :
189 0 : return tan((double)lhs);
190 : }
191 :
192 0 : ORowSetValue OOp_ACos::operate(const ORowSetValue& lhs) const
193 : {
194 0 : if ( lhs.isNull() )
195 0 : return lhs;
196 :
197 0 : return acos((double)lhs);
198 : }
199 :
200 0 : ORowSetValue OOp_ASin::operate(const ORowSetValue& lhs) const
201 : {
202 0 : if ( lhs.isNull() )
203 0 : return lhs;
204 :
205 0 : return asin((double)lhs);
206 : }
207 :
208 0 : ORowSetValue OOp_ATan::operate(const ORowSetValue& lhs) const
209 : {
210 0 : if ( lhs.isNull() )
211 0 : return lhs;
212 :
213 0 : return atan((double)lhs);
214 : }
215 :
216 0 : ORowSetValue OOp_ATan2::operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const
217 : {
218 0 : if ( lhs.isNull() || rhs.isNull() )
219 0 : return lhs;
220 :
221 0 : return atan2((double)lhs,(double)rhs);
222 : }
223 :
224 0 : ORowSetValue OOp_Degrees::operate(const ORowSetValue& lhs) const
225 : {
226 0 : if ( lhs.isNull() )
227 0 : return lhs;
228 :
229 0 : double nLhs = lhs;
230 0 : return nLhs*180*(1.0/fPi);
231 : }
232 :
233 0 : ORowSetValue OOp_Radians::operate(const ORowSetValue& lhs) const
234 : {
235 0 : if ( lhs.isNull() )
236 0 : return lhs;
237 :
238 0 : double nLhs = lhs;
239 0 : return nLhs*fPi*(1.0/180.0);
240 : }
241 :
242 :
243 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|