blob: 8d3dfeea05348557ddd373a145d557ff16f3fbee [file] [log] [blame]
Hans Boehm84614952014-11-25 18:46:17 -08001/*
Hans Boehm4a6b7cb2015-04-03 18:41:52 -07002 * Copyright (C) 2015 The Android Open Source Project
Hans Boehm84614952014-11-25 18:46:17 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.calculator2;
18
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070019import android.content.ClipData;
20import android.content.ClipDescription;
Justin Klaassen44595162015-05-28 17:55:20 -070021import android.content.ClipboardManager;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070022import android.content.Context;
Hans Boehm7f83e362015-06-10 15:41:04 -070023import android.graphics.Rect;
Justin Klaassen44595162015-05-28 17:55:20 -070024import android.text.Layout;
Hans Boehm7f83e362015-06-10 15:41:04 -070025import android.text.Spannable;
Hans Boehm84614952014-11-25 18:46:17 -080026import android.text.SpannableString;
Hans Boehm1176f232015-05-11 16:26:03 -070027import android.text.Spanned;
Justin Klaassen44595162015-05-28 17:55:20 -070028import android.text.TextPaint;
Hans Boehm7f83e362015-06-10 15:41:04 -070029import android.text.style.BackgroundColorSpan;
Hans Boehm84614952014-11-25 18:46:17 -080030import android.text.style.ForegroundColorSpan;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070031import android.util.AttributeSet;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070032import android.view.ActionMode;
33import android.view.GestureDetector;
34import android.view.Menu;
35import android.view.MenuInflater;
36import android.view.MenuItem;
37import android.view.MotionEvent;
38import android.view.View;
Justin Klaassen44595162015-05-28 17:55:20 -070039import android.widget.OverScroller;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070040import android.widget.Toast;
Hans Boehm84614952014-11-25 18:46:17 -080041
Hans Boehm84614952014-11-25 18:46:17 -080042// A text widget that is "infinitely" scrollable to the right,
43// and obtains the text to display via a callback to Logic.
Justin Klaassen44595162015-05-28 17:55:20 -070044public class CalculatorResult extends AlignedTextView {
Hans Boehm61568a12015-05-18 18:25:41 -070045 static final int MAX_RIGHT_SCROLL = 10000000;
Hans Boehm08e8f322015-04-21 13:18:38 -070046 static final int INVALID = MAX_RIGHT_SCROLL + 10000;
Hans Boehm84614952014-11-25 18:46:17 -080047 // A larger value is unlikely to avoid running out of space
48 final OverScroller mScroller;
49 final GestureDetector mGestureDetector;
50 class MyTouchListener implements View.OnTouchListener {
51 @Override
52 public boolean onTouch(View v, MotionEvent event) {
Justin Klaassen44595162015-05-28 17:55:20 -070053 return mGestureDetector.onTouchEvent(event);
Hans Boehm84614952014-11-25 18:46:17 -080054 }
55 }
56 final MyTouchListener mTouchListener = new MyTouchListener();
57 private Evaluator mEvaluator;
58 private boolean mScrollable = false;
59 // A scrollable result is currently displayed.
Hans Boehm760a9dc2015-04-20 10:27:12 -070060 private boolean mValid = false;
Hans Boehmc01cd7f2015-05-12 18:32:19 -070061 // The result holds something valid; either a a number or an error
62 // message.
Hans Boehm5e802f32015-06-22 17:18:52 -070063 // A suffix of "Pos" denotes a pixel offset. Zero represents a scroll position
64 // in which the decimal point is just barely visible on the right of the display.
Hans Boehmc01cd7f2015-05-12 18:32:19 -070065 private int mCurrentPos;// Position of right of display relative to decimal point, in pixels.
66 // Large positive values mean the decimal point is scrolled off the
67 // left of the display. Zero means decimal point is barely displayed
68 // on the right.
Hans Boehm61568a12015-05-18 18:25:41 -070069 private int mLastPos; // Position already reflected in display. Pixels.
70 private int mMinPos; // Minimum position before all digits disappear off the right. Pixels.
71 private int mMaxPos; // Maximum position before we start displaying the infinite
72 // sequence of trailing zeroes on the right. Pixels.
Hans Boehm5e802f32015-06-22 17:18:52 -070073 // In the following, we use a suffix of Offset to denote a character position in a numeric
74 // string relative to the decimal point. Positive is to the right and negative is to
75 // the left. 1 = tenths position, -1 = units. Integer.MAX_VALUE is sometimes used
76 // for the offset of the last digit in an a nonterminating decimal expansion.
77 // We use the suffix "Index" to denote a zero-based index into a string representing a
78 // result.
79 // TODO: Apply the same convention to other classes.
80 private int mMaxCharOffset; // Character offset from decimal point of rightmost digit
81 // that should be displayed. Essentially the same as
82 private int mLsdOffset; // Position of least-significant digit in result
83 private int mLastDisplayedOffset; // Offset of last digit actually displayed after adding
Hans Boehmf6dae112015-06-18 17:57:50 -070084 // exponent.
Justin Klaassen44595162015-05-28 17:55:20 -070085 private final Object mWidthLock = new Object();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070086 // Protects the next two fields.
87 private int mWidthConstraint = -1;
Hans Boehma0e45f32015-05-30 13:20:35 -070088 // Our total width in pixels minus space for ellipsis.
Justin Klaassen44595162015-05-28 17:55:20 -070089 private float mCharWidth = 1;
Hans Boehmc01cd7f2015-05-12 18:32:19 -070090 // Maximum character width. For now we pretend that all characters
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070091 // have this width.
Hans Boehmc01cd7f2015-05-12 18:32:19 -070092 // TODO: We're not really using a fixed width font. But it appears
93 // to be close enough for the characters we use that the difference
94 // is not noticeable.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070095 private static final int MAX_WIDTH = 100;
96 // Maximum number of digits displayed
Hans Boehm50ed3202015-06-09 14:35:49 -070097 public static final int MAX_LEADING_ZEROES = 6;
Hans Boehma0e45f32015-05-30 13:20:35 -070098 // Maximum number of leading zeroes after decimal point before we
99 // switch to scientific notation with negative exponent.
Hans Boehm50ed3202015-06-09 14:35:49 -0700100 public static final int MAX_TRAILING_ZEROES = 6;
Hans Boehma0e45f32015-05-30 13:20:35 -0700101 // Maximum number of trailing zeroes before the decimal point before
102 // we switch to scientific notation with positive exponent.
103 private static final int SCI_NOTATION_EXTRA = 1;
104 // Extra digits for standard scientific notation. In this case we
105 // have a deecimal point and no ellipsis.
Hans Boehm1176f232015-05-11 16:26:03 -0700106 private ActionMode mActionMode;
107 private final ForegroundColorSpan mExponentColorSpan;
Hans Boehm84614952014-11-25 18:46:17 -0800108
109 public CalculatorResult(Context context, AttributeSet attrs) {
110 super(context, attrs);
111 mScroller = new OverScroller(context);
112 mGestureDetector = new GestureDetector(context,
113 new GestureDetector.SimpleOnGestureListener() {
114 @Override
Justin Klaassend48b7562015-04-16 16:51:38 -0700115 public boolean onDown(MotionEvent e) {
116 return true;
117 }
118 @Override
Hans Boehm84614952014-11-25 18:46:17 -0800119 public boolean onFling(MotionEvent e1, MotionEvent e2,
120 float velocityX, float velocityY) {
121 if (!mScroller.isFinished()) {
122 mCurrentPos = mScroller.getFinalX();
123 }
124 mScroller.forceFinished(true);
Hans Boehm1176f232015-05-11 16:26:03 -0700125 stopActionMode();
Hans Boehmfbcef702015-04-27 18:07:47 -0700126 CalculatorResult.this.cancelLongPress();
127 // Ignore scrolls of error string, etc.
128 if (!mScrollable) return true;
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700129 mScroller.fling(mCurrentPos, 0, - (int) velocityX, 0 /* horizontal only */,
Hans Boehm61568a12015-05-18 18:25:41 -0700130 mMinPos, mMaxPos, 0, 0);
Justin Klaassen44595162015-05-28 17:55:20 -0700131 postInvalidateOnAnimation();
Hans Boehm84614952014-11-25 18:46:17 -0800132 return true;
133 }
134 @Override
135 public boolean onScroll(MotionEvent e1, MotionEvent e2,
136 float distanceX, float distanceY) {
Hans Boehm61568a12015-05-18 18:25:41 -0700137 int distance = (int)distanceX;
Hans Boehm84614952014-11-25 18:46:17 -0800138 if (!mScroller.isFinished()) {
139 mCurrentPos = mScroller.getFinalX();
140 }
141 mScroller.forceFinished(true);
Hans Boehm1176f232015-05-11 16:26:03 -0700142 stopActionMode();
Hans Boehm84614952014-11-25 18:46:17 -0800143 CalculatorResult.this.cancelLongPress();
144 if (!mScrollable) return true;
Hans Boehm61568a12015-05-18 18:25:41 -0700145 if (mCurrentPos + distance < mMinPos) {
146 distance = mMinPos - mCurrentPos;
147 } else if (mCurrentPos + distance > mMaxPos) {
148 distance = mMaxPos - mCurrentPos;
149 }
Hans Boehm84614952014-11-25 18:46:17 -0800150 int duration = (int)(e2.getEventTime() - e1.getEventTime());
151 if (duration < 1 || duration > 100) duration = 10;
Hans Boehm61568a12015-05-18 18:25:41 -0700152 mScroller.startScroll(mCurrentPos, 0, distance, 0, (int)duration);
Justin Klaassen44595162015-05-28 17:55:20 -0700153 postInvalidateOnAnimation();
Hans Boehm84614952014-11-25 18:46:17 -0800154 return true;
155 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700156 @Override
157 public void onLongPress(MotionEvent e) {
Hans Boehm1176f232015-05-11 16:26:03 -0700158 if (mValid) {
159 mActionMode = startActionMode(mCopyActionModeCallback,
160 ActionMode.TYPE_FLOATING);
161 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700162 }
Hans Boehm84614952014-11-25 18:46:17 -0800163 });
164 setOnTouchListener(mTouchListener);
165 setHorizontallyScrolling(false); // do it ourselves
166 setCursorVisible(false);
Hans Boehm1176f232015-05-11 16:26:03 -0700167 mExponentColorSpan = new ForegroundColorSpan(
168 context.getColor(R.color.display_result_exponent_text_color));
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700169
170 // Copy ActionMode is triggered explicitly, not through
171 // setCustomSelectionActionModeCallback.
Hans Boehm84614952014-11-25 18:46:17 -0800172 }
173
174 void setEvaluator(Evaluator evaluator) {
175 mEvaluator = evaluator;
176 }
177
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700178 @Override
179 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
180 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
181
Justin Klaassen44595162015-05-28 17:55:20 -0700182 final TextPaint paint = getPaint();
183 final int newWidthConstraint = MeasureSpec.getSize(widthMeasureSpec)
184 - (getPaddingLeft() + getPaddingRight())
185 - (int) Math.ceil(Layout.getDesiredWidth(KeyMaps.ELLIPSIS, paint));
186 final float newCharWidth = Layout.getDesiredWidth("\u2007", paint);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700187 synchronized(mWidthLock) {
Hans Boehm013969e2015-04-13 20:29:47 -0700188 mWidthConstraint = newWidthConstraint;
189 mCharWidth = newCharWidth;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700190 }
191 }
192
Hans Boehma0e45f32015-05-30 13:20:35 -0700193 // Return the length of the exponent representation for the given exponent, in
194 // characters.
195 private final int expLen(int exp) {
196 if (exp == 0) return 0;
Hans Boehm5e802f32015-06-22 17:18:52 -0700197 final int abs_exp_digits = (int) Math.ceil(Math.log10(Math.abs((double)exp))
198 + 0.0000000001d /* Round whole numbers to next integer */);
199 return abs_exp_digits + (exp >= 0 ? 1 : 2);
Hans Boehm61568a12015-05-18 18:25:41 -0700200 }
201
Hans Boehma0e45f32015-05-30 13:20:35 -0700202 /**
203 * Initiate display of a new result.
204 * The parameters specify various properties of the result.
205 * @param initPrec Initial display precision computed by evaluator. (1 = tenths digit)
206 * @param msd Position of most significant digit. Offset from left of string.
207 Evaluator.INVALID_MSD if unknown.
208 * @param leastDigPos Position of least significant digit (1 = tenths digit)
209 * or Integer.MAX_VALUE.
210 * @param truncatedWholePart Result up to but not including decimal point.
211 Currently we only use the length.
212 */
213 void displayResult(int initPrec, int msd, int leastDigPos, String truncatedWholePart) {
214 initPositions(initPrec, msd, leastDigPos, truncatedWholePart);
Hans Boehm84614952014-11-25 18:46:17 -0800215 redisplay();
216 }
217
Hans Boehma0e45f32015-05-30 13:20:35 -0700218 /**
Hans Boehm5e802f32015-06-22 17:18:52 -0700219 * Set up scroll bounds (mMinPos, mMaxPos, etc.) and determine whether the result is
220 * scrollable, based on the supplied information about the result.
Hans Boehma0e45f32015-05-30 13:20:35 -0700221 * This is unfortunately complicated because we need to predict whether trailing digits
222 * will eventually be replaced by an exponent.
223 * Just appending the exponent during formatting would be simpler, but would produce
224 * jumpier results during transitions.
225 */
Hans Boehm5e802f32015-06-22 17:18:52 -0700226 private void initPositions(int initPrecOffset, int msdIndex, int lsdOffset,
227 String truncatedWholePart) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700228 float charWidth;
229 int maxChars = getMaxChars();
230 mLastPos = INVALID;
Hans Boehm5e802f32015-06-22 17:18:52 -0700231 mLsdOffset = lsdOffset;
Hans Boehma0e45f32015-05-30 13:20:35 -0700232 synchronized(mWidthLock) {
233 charWidth = mCharWidth;
234 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700235 mCurrentPos = mMinPos = (int) Math.round(initPrecOffset * charWidth);
Hans Boehma0e45f32015-05-30 13:20:35 -0700236 // Prevent scrolling past initial position, which is calculated to show leading digits.
Hans Boehm5e802f32015-06-22 17:18:52 -0700237 if (msdIndex == Evaluator.INVALID_MSD) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700238 // Possible zero value
Hans Boehm5e802f32015-06-22 17:18:52 -0700239 if (lsdOffset == Integer.MIN_VALUE) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700240 // Definite zero value.
241 mMaxPos = mMinPos;
Hans Boehm5e802f32015-06-22 17:18:52 -0700242 mMaxCharOffset = (int) Math.round(mMaxPos/charWidth);
Hans Boehma0e45f32015-05-30 13:20:35 -0700243 mScrollable = false;
244 } else {
245 // May be very small nonzero value. Allow user to find out.
Hans Boehm5e802f32015-06-22 17:18:52 -0700246 mMaxPos = mMaxCharOffset = MAX_RIGHT_SCROLL;
247 mMinPos -= charWidth; // Allow for future minus sign.
Hans Boehma0e45f32015-05-30 13:20:35 -0700248 mScrollable = true;
249 }
250 return;
251 }
252 int wholeLen = truncatedWholePart.length();
253 int negative = truncatedWholePart.charAt(0) == '-' ? 1 : 0;
Hans Boehm5e802f32015-06-22 17:18:52 -0700254 if (msdIndex > wholeLen && msdIndex <= wholeLen + 3) {
255 // Avoid tiny negative exponent; pretend msdIndex is just to the right of decimal point.
256 msdIndex = wholeLen - 1;
Hans Boehma0e45f32015-05-30 13:20:35 -0700257 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700258 int minCharOffset = msdIndex - wholeLen;
Hans Boehma0e45f32015-05-30 13:20:35 -0700259 // Position of leftmost significant digit relative to dec. point.
260 // Usually negative.
Hans Boehm5e802f32015-06-22 17:18:52 -0700261 mMaxCharOffset = MAX_RIGHT_SCROLL; // How far does it make sense to scroll right?
Hans Boehma0e45f32015-05-30 13:20:35 -0700262 // If msd is left of decimal point should logically be
263 // mMinPos = - (int) Math.ceil(getPaint().measureText(truncatedWholePart)), but
264 // we eventually translate to a character position by dividing by mCharWidth.
265 // To avoid rounding issues, we use the analogous computation here.
Hans Boehm5e802f32015-06-22 17:18:52 -0700266 if (minCharOffset > -1 && minCharOffset < MAX_LEADING_ZEROES + 2) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700267 // Small number of leading zeroes, avoid scientific notation.
Hans Boehm5e802f32015-06-22 17:18:52 -0700268 minCharOffset = -1;
Hans Boehma0e45f32015-05-30 13:20:35 -0700269 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700270 if (lsdOffset < MAX_RIGHT_SCROLL) {
271 mMaxCharOffset = lsdOffset;
272 if (mMaxCharOffset < -1 && mMaxCharOffset > -(MAX_TRAILING_ZEROES + 2)) {
273 mMaxCharOffset = -1;
Hans Boehma0e45f32015-05-30 13:20:35 -0700274 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700275 // lsdOffset is positive or negative, never 0.
276 int currentExpLen = 0; // Length of required standard scientific notation exponent.
277 if (mMaxCharOffset < -1) {
278 currentExpLen = expLen(-minCharOffset - 1);
279 } else if (minCharOffset > -1 || mMaxCharOffset >= maxChars) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700280 // Number either entirely to the right of decimal point, or decimal point not
281 // visible when scrolled to the right.
Hans Boehm5e802f32015-06-22 17:18:52 -0700282 currentExpLen = expLen(-minCharOffset);
Hans Boehma0e45f32015-05-30 13:20:35 -0700283 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700284 mScrollable = (mMaxCharOffset + currentExpLen - minCharOffset + negative >= maxChars);
285 int newMaxCharOffset;
286 if (currentExpLen > 0) {
287 if (mScrollable) {
288 // We'll use exponent corresponding to leastDigPos when scrolled to right.
289 newMaxCharOffset = mMaxCharOffset + expLen(-lsdOffset);
290 } else {
291 newMaxCharOffset = mMaxCharOffset + currentExpLen;
292 }
293 if (mMaxCharOffset <= -1 && newMaxCharOffset > -1) {
294 // Very unlikely; just drop exponent.
295 mMaxCharOffset = -1;
296 } else {
297 mMaxCharOffset = newMaxCharOffset;
Hans Boehma0e45f32015-05-30 13:20:35 -0700298 }
299 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700300 mMaxPos = Math.min((int) Math.round(mMaxCharOffset * charWidth), MAX_RIGHT_SCROLL);
Hans Boehma0e45f32015-05-30 13:20:35 -0700301 if (!mScrollable) {
302 // Position the number consistently with our assumptions to make sure it
303 // actually fits.
304 mCurrentPos = mMaxPos;
305 }
306 } else {
Hans Boehm5e802f32015-06-22 17:18:52 -0700307 mMaxPos = mMaxCharOffset = MAX_RIGHT_SCROLL;
Hans Boehma0e45f32015-05-30 13:20:35 -0700308 mScrollable = true;
309 }
310 }
311
Hans Boehm84614952014-11-25 18:46:17 -0800312 void displayError(int resourceId) {
Hans Boehm760a9dc2015-04-20 10:27:12 -0700313 mValid = true;
Hans Boehm84614952014-11-25 18:46:17 -0800314 mScrollable = false;
315 setText(resourceId);
316 }
317
Hans Boehm013969e2015-04-13 20:29:47 -0700318 private final int MAX_COPY_SIZE = 1000000;
319
Hans Boehma0e45f32015-05-30 13:20:35 -0700320 /*
321 * Return the most significant digit position in the given string or Evaluator.INVALID_MSD.
322 * Unlike Evaluator.getMsdPos, we treat a final 1 as significant.
323 */
Hans Boehm5e802f32015-06-22 17:18:52 -0700324 public static int getNaiveMsdIndex(String s) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700325 int len = s.length();
Hans Boehma0e45f32015-05-30 13:20:35 -0700326 for (int i = 0; i < len; ++i) {
327 char c = s.charAt(i);
328 if (c != '-' && c != '.' && c != '0') {
329 return i;
330 }
331 }
332 return Evaluator.INVALID_MSD;
333 }
334
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700335 // Format a result returned by Evaluator.getString() into a single line containing ellipses
Hans Boehma0e45f32015-05-30 13:20:35 -0700336 // (if appropriate) and an exponent (if appropriate). prec is the value that was passed to
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700337 // getString and thus identifies the significance of the rightmost digit.
Hans Boehma0e45f32015-05-30 13:20:35 -0700338 // A value of 1 means the rightmost digits corresponds to tenths.
339 // maxDigs is the maximum number of characters in the result.
Hans Boehm5e802f32015-06-22 17:18:52 -0700340 // We set lastDisplayedOffset[0] to the offset of the last digit actually appearing in
Hans Boehmf6dae112015-06-18 17:57:50 -0700341 // the display.
342 // If forcePrecision is true, we make sure that the last displayed digit corresponds to
343 // prec, and allow maxDigs to be exceeded in assing the exponent.
Hans Boehm08e8f322015-04-21 13:18:38 -0700344 // We add two distinct kinds of exponents:
Hans Boehm5e802f32015-06-22 17:18:52 -0700345 // (1) If the final result contains the leading digit we use standard scientific notation.
346 // (2) If not, we add an exponent corresponding to an interpretation of the final result as
347 // an integer.
Hans Boehm08e8f322015-04-21 13:18:38 -0700348 // We add an ellipsis on the left if the result was truncated.
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700349 // We add ellipses and exponents in a way that leaves most digits in the position they
350 // would have been in had we not done so.
351 // This minimizes jumps as a result of scrolling. Result is NOT internationalized,
Hans Boehm0b9806f2015-06-29 16:07:15 -0700352 // uses "E" for exponent.
Hans Boehm5e802f32015-06-22 17:18:52 -0700353 public String formatResult(String in, int precOffset, int maxDigs, boolean truncated,
354 boolean negative, int lastDisplayedOffset[], boolean forcePrecision) {
355 final int minusSpace = negative ? 1 : 0;
356 final int msdIndex = truncated ? -1 : getNaiveMsdIndex(in); // INVALID_MSD is OK.
357 final int decIndex = in.indexOf('.');
358 String result = in;
359 lastDisplayedOffset[0] = precOffset;
360 if ((decIndex == -1 || msdIndex != Evaluator.INVALID_MSD
361 && msdIndex - decIndex > MAX_LEADING_ZEROES + 1) && precOffset != -1) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700362 // No decimal point displayed, and it's not just to the right of the last digit,
363 // or we should suppress leading zeroes.
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700364 // Add an exponent to let the user track which digits are currently displayed.
Hans Boehm5e802f32015-06-22 17:18:52 -0700365 // Start with type (2) exponent if we dropped no digits. -1 accounts for decimal point.
366 final int initExponent = precOffset > 0 ? -precOffset : -precOffset - 1;
367 int exponent = initExponent;
Hans Boehm08e8f322015-04-21 13:18:38 -0700368 boolean hasPoint = false;
Hans Boehm5e802f32015-06-22 17:18:52 -0700369 if (!truncated && msdIndex < maxDigs - 1
370 && result.length() - msdIndex + 1 + minusSpace
371 <= maxDigs + SCI_NOTATION_EXTRA) {
372 // Type (1) exponent computation and transformation:
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700373 // Leading digit is in display window. Use standard calculator scientific notation
374 // with one digit to the left of the decimal point. Insert decimal point and
375 // delete leading zeroes.
Hans Boehma0e45f32015-05-30 13:20:35 -0700376 // We try to keep leading digits roughly in position, and never
Hans Boehmf6dae112015-06-18 17:57:50 -0700377 // lengthen the result by more than SCI_NOTATION_EXTRA.
Hans Boehm5e802f32015-06-22 17:18:52 -0700378 final int resLen = result.length();
379 String fraction = result.substring(msdIndex + 1, resLen);
380 result = (negative ? "-" : "") + result.substring(msdIndex, msdIndex + 1)
381 + "." + fraction;
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700382 // Original exp was correct for decimal point at right of fraction.
383 // Adjust by length of fraction.
Hans Boehm5e802f32015-06-22 17:18:52 -0700384 exponent = initExponent + resLen - msdIndex - 1;
Hans Boehm08e8f322015-04-21 13:18:38 -0700385 hasPoint = true;
386 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700387 if (exponent != 0 || truncated) {
Hans Boehm08e8f322015-04-21 13:18:38 -0700388 // Actually add the exponent of either type:
Hans Boehmf6dae112015-06-18 17:57:50 -0700389 if (!forcePrecision) {
Hans Boehm5e802f32015-06-22 17:18:52 -0700390 int dropDigits; // Digits to drop to make room for exponent.
391 if (hasPoint) {
392 // Type (1) exponent.
Hans Boehmf6dae112015-06-18 17:57:50 -0700393 // Drop digits even if there is room. Otherwise the scrolling gets jumpy.
Hans Boehm5e802f32015-06-22 17:18:52 -0700394 dropDigits = expLen(exponent);
395 if (dropDigits >= result.length() - 1) {
396 // Jumpy is better than no mantissa. Probably impossible anyway.
397 dropDigits = Math.max(result.length() - 2, 0);
Hans Boehmf6dae112015-06-18 17:57:50 -0700398 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700399 } else {
400 // Type (2) exponent.
401 // Exponent depends on the number of digits we drop, which depends on
402 // exponent ...
403 for (dropDigits = 2; expLen(initExponent + dropDigits) > dropDigits;
404 ++dropDigits) {}
405 exponent = initExponent + dropDigits;
406 if (precOffset - dropDigits > mLsdOffset) {
Hans Boehmf6dae112015-06-18 17:57:50 -0700407 // This can happen if e.g. result = 10^40 + 10^10
408 // It turns out we would otherwise display ...10e9 because it takes
409 // the same amount of space as ...1e10 but shows one more digit.
410 // But we don't want to display a trailing zero, even if it's free.
411 ++dropDigits;
Hans Boehm5e802f32015-06-22 17:18:52 -0700412 ++exponent;
Hans Boehmf6dae112015-06-18 17:57:50 -0700413 }
Hans Boehma0e45f32015-05-30 13:20:35 -0700414 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700415 result = result.substring(0, result.length() - dropDigits);
416 lastDisplayedOffset[0] -= dropDigits;
Hans Boehm08e8f322015-04-21 13:18:38 -0700417 }
Hans Boehm0b9806f2015-06-29 16:07:15 -0700418 result = result + "E" + Integer.toString(exponent);
Hans Boehm08e8f322015-04-21 13:18:38 -0700419 } // else don't add zero exponent
420 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700421 if (truncated || negative && result.charAt(0) != '-') {
422 result = KeyMaps.ELLIPSIS + result.substring(1, result.length());
423 }
424 return result;
Hans Boehm08e8f322015-04-21 13:18:38 -0700425 }
426
Hans Boehmf6dae112015-06-18 17:57:50 -0700427 /**
428 * Get formatted, but not internationalized, result from mEvaluator.
Hans Boehm5e802f32015-06-22 17:18:52 -0700429 * @param precOffset requested position (1 = tenths) of last included digit.
Hans Boehmf6dae112015-06-18 17:57:50 -0700430 * @param maxSize Maximum number of characters (more or less) in result.
Hans Boehm5e802f32015-06-22 17:18:52 -0700431 * @param lastDisplayedOffset Zeroth entry is set to actual offset of last included digit,
432 * after adjusting for exponent, etc.
Hans Boehmf6dae112015-06-18 17:57:50 -0700433 * @param forcePrecision Ensure that last included digit is at pos, at the expense
434 * of treating maxSize as a soft limit.
435 */
Hans Boehm5e802f32015-06-22 17:18:52 -0700436 private String getFormattedResult(int precOffset, int maxSize, int lastDisplayedOffset[],
Hans Boehmf6dae112015-06-18 17:57:50 -0700437 boolean forcePrecision) {
Hans Boehm08e8f322015-04-21 13:18:38 -0700438 final boolean truncated[] = new boolean[1];
439 final boolean negative[] = new boolean[1];
Hans Boehm5e802f32015-06-22 17:18:52 -0700440 final int requestedPrecOffset[] = {precOffset};
441 final String rawResult = mEvaluator.getString(requestedPrecOffset, mMaxCharOffset,
Hans Boehma0e45f32015-05-30 13:20:35 -0700442 maxSize, truncated, negative);
Hans Boehm5e802f32015-06-22 17:18:52 -0700443 return formatResult(rawResult, requestedPrecOffset[0], maxSize, truncated[0], negative[0],
444 lastDisplayedOffset, forcePrecision);
Hans Boehm08e8f322015-04-21 13:18:38 -0700445 }
446
Hans Boehm84614952014-11-25 18:46:17 -0800447 // Return entire result (within reason) up to current displayed precision.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700448 public String getFullText() {
Hans Boehm760a9dc2015-04-20 10:27:12 -0700449 if (!mValid) return "";
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700450 if (!mScrollable) return getText().toString();
Hans Boehm5e802f32015-06-22 17:18:52 -0700451 int currentCharOffset = getCurrentCharOffset();
Hans Boehmf6dae112015-06-18 17:57:50 -0700452 int unused[] = new int[1];
Hans Boehm5e802f32015-06-22 17:18:52 -0700453 return KeyMaps.translateResult(getFormattedResult(mLastDisplayedOffset, MAX_COPY_SIZE,
Hans Boehmf6dae112015-06-18 17:57:50 -0700454 unused, true));
Hans Boehm84614952014-11-25 18:46:17 -0800455 }
456
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700457 public boolean fullTextIsExact() {
Hans Boehmf6dae112015-06-18 17:57:50 -0700458 return !mScrollable
Hans Boehm5e802f32015-06-22 17:18:52 -0700459 || mMaxCharOffset == getCurrentCharOffset() && mMaxCharOffset != MAX_RIGHT_SCROLL;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700460 }
461
Hans Boehm61568a12015-05-18 18:25:41 -0700462 /**
463 * Return the maximum number of characters that will fit in the result display.
464 * May be called asynchronously from non-UI thread.
465 */
Hans Boehm84614952014-11-25 18:46:17 -0800466 int getMaxChars() {
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700467 int result;
468 synchronized(mWidthLock) {
Justin Klaassen44595162015-05-28 17:55:20 -0700469 result = (int) Math.floor(mWidthConstraint / mCharWidth);
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700470 // We can apparently finish evaluating before onMeasure in CalculatorText has been
471 // called, in which case we get 0 or -1 as the width constraint.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700472 }
Hans Boehm84614952014-11-25 18:46:17 -0800473 if (result <= 0) {
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700474 // Return something conservatively big, to force sufficient evaluation.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700475 return MAX_WIDTH;
Hans Boehm84614952014-11-25 18:46:17 -0800476 } else {
Justin Klaassen44595162015-05-28 17:55:20 -0700477 // Always allow for the ellipsis character which already accounted for in the width
478 // constraint.
479 return result + 1;
Hans Boehm84614952014-11-25 18:46:17 -0800480 }
481 }
482
Hans Boehm61568a12015-05-18 18:25:41 -0700483 /**
Justin Klaassen44595162015-05-28 17:55:20 -0700484 * @return {@code true} if the currently displayed result is scrollable
Hans Boehm61568a12015-05-18 18:25:41 -0700485 */
Justin Klaassen44595162015-05-28 17:55:20 -0700486 public boolean isScrollable() {
487 return mScrollable;
Hans Boehm61568a12015-05-18 18:25:41 -0700488 }
489
Hans Boehm5e802f32015-06-22 17:18:52 -0700490 int getCurrentCharOffset() {
Hans Boehm013969e2015-04-13 20:29:47 -0700491 synchronized(mWidthLock) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700492 return (int) Math.round(mCurrentPos / mCharWidth);
Hans Boehm013969e2015-04-13 20:29:47 -0700493 }
494 }
495
Hans Boehm84614952014-11-25 18:46:17 -0800496 void clear() {
Hans Boehm760a9dc2015-04-20 10:27:12 -0700497 mValid = false;
Hans Boehm1176f232015-05-11 16:26:03 -0700498 mScrollable = false;
Hans Boehm84614952014-11-25 18:46:17 -0800499 setText("");
500 }
501
502 void redisplay() {
Hans Boehm5e802f32015-06-22 17:18:52 -0700503 int currentCharOffset = getCurrentCharOffset();
Hans Boehm84614952014-11-25 18:46:17 -0800504 int maxChars = getMaxChars();
Hans Boehm5e802f32015-06-22 17:18:52 -0700505 int lastDisplayedOffset[] = new int[1];
506 String result = getFormattedResult(currentCharOffset, maxChars, lastDisplayedOffset, false);
Hans Boehm0b9806f2015-06-29 16:07:15 -0700507 int expIndex = result.indexOf('E');
Hans Boehm013969e2015-04-13 20:29:47 -0700508 result = KeyMaps.translateResult(result);
Hans Boehm5e802f32015-06-22 17:18:52 -0700509 if (expIndex > 0 && result.indexOf('.') == -1) {
Hans Boehm84614952014-11-25 18:46:17 -0800510 // Gray out exponent if used as position indicator
511 SpannableString formattedResult = new SpannableString(result);
Hans Boehm5e802f32015-06-22 17:18:52 -0700512 formattedResult.setSpan(mExponentColorSpan, expIndex, result.length(),
Hans Boehm84614952014-11-25 18:46:17 -0800513 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
514 setText(formattedResult);
515 } else {
516 setText(result);
517 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700518 mLastDisplayedOffset = lastDisplayedOffset[0];
Hans Boehm760a9dc2015-04-20 10:27:12 -0700519 mValid = true;
Hans Boehm84614952014-11-25 18:46:17 -0800520 }
521
522 @Override
523 public void computeScroll() {
524 if (!mScrollable) return;
525 if (mScroller.computeScrollOffset()) {
526 mCurrentPos = mScroller.getCurrX();
527 if (mCurrentPos != mLastPos) {
528 mLastPos = mCurrentPos;
529 redisplay();
530 }
531 if (!mScroller.isFinished()) {
Justin Klaassen44595162015-05-28 17:55:20 -0700532 postInvalidateOnAnimation();
Hans Boehm84614952014-11-25 18:46:17 -0800533 }
534 }
535 }
536
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700537 // Copy support:
538
Hans Boehm7f83e362015-06-10 15:41:04 -0700539 private ActionMode.Callback2 mCopyActionModeCallback = new ActionMode.Callback2() {
540
541 private BackgroundColorSpan mHighlightSpan;
542
543 private void highlightResult() {
544 final Spannable text = (Spannable) getText();
545 mHighlightSpan = new BackgroundColorSpan(getHighlightColor());
546 text.setSpan(mHighlightSpan, 0, text.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
547 }
548
549 private void unhighlightResult() {
550 final Spannable text = (Spannable) getText();
551 text.removeSpan(mHighlightSpan);
552 }
553
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700554 @Override
555 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
556 MenuInflater inflater = mode.getMenuInflater();
557 inflater.inflate(R.menu.copy, menu);
Hans Boehm7f83e362015-06-10 15:41:04 -0700558 highlightResult();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700559 return true;
560 }
561
562 @Override
563 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
564 return false; // Return false if nothing is done
565 }
566
567 @Override
568 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
569 switch (item.getItemId()) {
570 case R.id.menu_copy:
571 copyContent();
572 mode.finish();
573 return true;
574 default:
575 return false;
576 }
577 }
578
579 @Override
580 public void onDestroyActionMode(ActionMode mode) {
Hans Boehm7f83e362015-06-10 15:41:04 -0700581 unhighlightResult();
Hans Boehm1176f232015-05-11 16:26:03 -0700582 mActionMode = null;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700583 }
Hans Boehm7f83e362015-06-10 15:41:04 -0700584
585 @Override
586 public void onGetContentRect(ActionMode mode, View view, Rect outRect) {
587 super.onGetContentRect(mode, view, outRect);
588 outRect.left += getPaddingLeft();
589 outRect.top += getPaddingTop();
590 outRect.right -= getPaddingRight();
591 outRect.bottom -= getPaddingBottom();
592 final int width = (int) Layout.getDesiredWidth(getText(), getPaint());
593 if (width < outRect.width()) {
594 outRect.left = outRect.right - width;
595 }
596 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700597 };
598
Hans Boehm1176f232015-05-11 16:26:03 -0700599 public boolean stopActionMode() {
600 if (mActionMode != null) {
601 mActionMode.finish();
602 return true;
603 }
604 return false;
605 }
606
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700607 private void setPrimaryClip(ClipData clip) {
608 ClipboardManager clipboard = (ClipboardManager) getContext().
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700609 getSystemService(Context.CLIPBOARD_SERVICE);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700610 clipboard.setPrimaryClip(clip);
611 }
612
613 private void copyContent() {
614 final CharSequence text = getFullText();
615 ClipboardManager clipboard =
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700616 (ClipboardManager) getContext().getSystemService(Context.CLIPBOARD_SERVICE);
617 // We include a tag URI, to allow us to recognize our own results and handle them
618 // specially.
619 ClipData.Item newItem = new ClipData.Item(text, null, mEvaluator.capture());
620 String[] mimeTypes = new String[] {ClipDescription.MIMETYPE_TEXT_PLAIN};
621 ClipData cd = new ClipData("calculator result", mimeTypes, newItem);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700622 clipboard.setPrimaryClip(cd);
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700623 Toast.makeText(getContext(), R.string.text_copied_toast, Toast.LENGTH_SHORT).show();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700624 }
625
Hans Boehm84614952014-11-25 18:46:17 -0800626}