blob: 44ffdcd9e700df85d3c9d741dd0d525640dffc28 [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 Klaassenf1b61f42016-04-27 16:00:11 -070024import android.support.v4.os.BuildCompat;
Justin Klaassen44595162015-05-28 17:55:20 -070025import android.text.Layout;
Hans Boehm7f83e362015-06-10 15:41:04 -070026import android.text.Spannable;
Hans Boehm84614952014-11-25 18:46:17 -080027import android.text.SpannableString;
Hans Boehm1176f232015-05-11 16:26:03 -070028import android.text.Spanned;
Justin Klaassen44595162015-05-28 17:55:20 -070029import android.text.TextPaint;
Hans Boehm7f83e362015-06-10 15:41:04 -070030import android.text.style.BackgroundColorSpan;
Hans Boehm84614952014-11-25 18:46:17 -080031import android.text.style.ForegroundColorSpan;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070032import android.util.AttributeSet;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070033import android.view.ActionMode;
34import android.view.GestureDetector;
35import android.view.Menu;
36import android.view.MenuInflater;
37import android.view.MenuItem;
38import android.view.MotionEvent;
39import android.view.View;
Justin Klaassen44595162015-05-28 17:55:20 -070040import android.widget.OverScroller;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070041import android.widget.Toast;
Hans Boehm84614952014-11-25 18:46:17 -080042
Hans Boehm84614952014-11-25 18:46:17 -080043// A text widget that is "infinitely" scrollable to the right,
44// and obtains the text to display via a callback to Logic.
Justin Klaassen44595162015-05-28 17:55:20 -070045public class CalculatorResult extends AlignedTextView {
Hans Boehm61568a12015-05-18 18:25:41 -070046 static final int MAX_RIGHT_SCROLL = 10000000;
Hans Boehm08e8f322015-04-21 13:18:38 -070047 static final int INVALID = MAX_RIGHT_SCROLL + 10000;
Hans Boehm84614952014-11-25 18:46:17 -080048 // A larger value is unlikely to avoid running out of space
49 final OverScroller mScroller;
50 final GestureDetector mGestureDetector;
Hans Boehm84614952014-11-25 18:46:17 -080051 private Evaluator mEvaluator;
52 private boolean mScrollable = false;
53 // A scrollable result is currently displayed.
Hans Boehm760a9dc2015-04-20 10:27:12 -070054 private boolean mValid = false;
Hans Boehmc01cd7f2015-05-12 18:32:19 -070055 // The result holds something valid; either a a number or an error
56 // message.
Hans Boehm5e802f32015-06-22 17:18:52 -070057 // A suffix of "Pos" denotes a pixel offset. Zero represents a scroll position
58 // in which the decimal point is just barely visible on the right of the display.
Hans Boehmc01cd7f2015-05-12 18:32:19 -070059 private int mCurrentPos;// Position of right of display relative to decimal point, in pixels.
60 // Large positive values mean the decimal point is scrolled off the
61 // left of the display. Zero means decimal point is barely displayed
62 // on the right.
Hans Boehm61568a12015-05-18 18:25:41 -070063 private int mLastPos; // Position already reflected in display. Pixels.
Hans Boehm65a99a42016-02-03 18:16:07 -080064 private int mMinPos; // Minimum position to avoid unnecessary blanks on the left. Pixels.
Hans Boehm61568a12015-05-18 18:25:41 -070065 private int mMaxPos; // Maximum position before we start displaying the infinite
66 // sequence of trailing zeroes on the right. Pixels.
Hans Boehm65a99a42016-02-03 18:16:07 -080067 private int mWholeLen; // Length of the whole part of current result.
Hans Boehm5e802f32015-06-22 17:18:52 -070068 // In the following, we use a suffix of Offset to denote a character position in a numeric
69 // string relative to the decimal point. Positive is to the right and negative is to
70 // the left. 1 = tenths position, -1 = units. Integer.MAX_VALUE is sometimes used
71 // for the offset of the last digit in an a nonterminating decimal expansion.
72 // We use the suffix "Index" to denote a zero-based index into a string representing a
73 // result.
Hans Boehm5e802f32015-06-22 17:18:52 -070074 private int mMaxCharOffset; // Character offset from decimal point of rightmost digit
75 // that should be displayed. Essentially the same as
76 private int mLsdOffset; // Position of least-significant digit in result
77 private int mLastDisplayedOffset; // Offset of last digit actually displayed after adding
Hans Boehmf6dae112015-06-18 17:57:50 -070078 // exponent.
Justin Klaassen44595162015-05-28 17:55:20 -070079 private final Object mWidthLock = new Object();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070080 // Protects the next two fields.
81 private int mWidthConstraint = -1;
Hans Boehma0e45f32015-05-30 13:20:35 -070082 // Our total width in pixels minus space for ellipsis.
Justin Klaassen44595162015-05-28 17:55:20 -070083 private float mCharWidth = 1;
Hans Boehmc01cd7f2015-05-12 18:32:19 -070084 // Maximum character width. For now we pretend that all characters
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070085 // have this width.
Hans Boehmc01cd7f2015-05-12 18:32:19 -070086 // TODO: We're not really using a fixed width font. But it appears
87 // to be close enough for the characters we use that the difference
88 // is not noticeable.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -070089 private static final int MAX_WIDTH = 100;
90 // Maximum number of digits displayed
Hans Boehm50ed3202015-06-09 14:35:49 -070091 public static final int MAX_LEADING_ZEROES = 6;
Hans Boehma0e45f32015-05-30 13:20:35 -070092 // Maximum number of leading zeroes after decimal point before we
93 // switch to scientific notation with negative exponent.
Hans Boehm50ed3202015-06-09 14:35:49 -070094 public static final int MAX_TRAILING_ZEROES = 6;
Hans Boehma0e45f32015-05-30 13:20:35 -070095 // Maximum number of trailing zeroes before the decimal point before
96 // we switch to scientific notation with positive exponent.
97 private static final int SCI_NOTATION_EXTRA = 1;
98 // Extra digits for standard scientific notation. In this case we
Hans Boehm80018c82015-08-02 16:59:07 -070099 // have a decimal point and no ellipsis.
100 // We assume that we do not drop digits to make room for the decimal
101 // point in ordinary scientific notation. Thus >= 1.
Hans Boehm65a99a42016-02-03 18:16:07 -0800102 private static final int MAX_COPY_EXTRA = 100;
103 // The number of extra digits we are willing to compute to copy
104 // a result as an exact number.
105 private static final int MAX_RECOMPUTE_DIGITS = 2000;
106 // The maximum number of digits we're willing to recompute in the UI
107 // thread. We only do this for known rational results, where we
108 // can bound the computation cost.
109
Hans Boehm1176f232015-05-11 16:26:03 -0700110 private ActionMode mActionMode;
111 private final ForegroundColorSpan mExponentColorSpan;
Hans Boehm84614952014-11-25 18:46:17 -0800112
113 public CalculatorResult(Context context, AttributeSet attrs) {
114 super(context, attrs);
115 mScroller = new OverScroller(context);
116 mGestureDetector = new GestureDetector(context,
117 new GestureDetector.SimpleOnGestureListener() {
118 @Override
Justin Klaassend48b7562015-04-16 16:51:38 -0700119 public boolean onDown(MotionEvent e) {
120 return true;
121 }
122 @Override
Hans Boehm84614952014-11-25 18:46:17 -0800123 public boolean onFling(MotionEvent e1, MotionEvent e2,
124 float velocityX, float velocityY) {
125 if (!mScroller.isFinished()) {
126 mCurrentPos = mScroller.getFinalX();
127 }
128 mScroller.forceFinished(true);
Hans Boehm1176f232015-05-11 16:26:03 -0700129 stopActionMode();
Hans Boehmfbcef702015-04-27 18:07:47 -0700130 CalculatorResult.this.cancelLongPress();
131 // Ignore scrolls of error string, etc.
132 if (!mScrollable) return true;
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700133 mScroller.fling(mCurrentPos, 0, - (int) velocityX, 0 /* horizontal only */,
Hans Boehm61568a12015-05-18 18:25:41 -0700134 mMinPos, mMaxPos, 0, 0);
Justin Klaassen44595162015-05-28 17:55:20 -0700135 postInvalidateOnAnimation();
Hans Boehm84614952014-11-25 18:46:17 -0800136 return true;
137 }
138 @Override
139 public boolean onScroll(MotionEvent e1, MotionEvent e2,
140 float distanceX, float distanceY) {
Hans Boehm61568a12015-05-18 18:25:41 -0700141 int distance = (int)distanceX;
Hans Boehm84614952014-11-25 18:46:17 -0800142 if (!mScroller.isFinished()) {
143 mCurrentPos = mScroller.getFinalX();
144 }
145 mScroller.forceFinished(true);
Hans Boehm1176f232015-05-11 16:26:03 -0700146 stopActionMode();
Hans Boehm84614952014-11-25 18:46:17 -0800147 CalculatorResult.this.cancelLongPress();
148 if (!mScrollable) return true;
Hans Boehm61568a12015-05-18 18:25:41 -0700149 if (mCurrentPos + distance < mMinPos) {
150 distance = mMinPos - mCurrentPos;
151 } else if (mCurrentPos + distance > mMaxPos) {
152 distance = mMaxPos - mCurrentPos;
153 }
Hans Boehm84614952014-11-25 18:46:17 -0800154 int duration = (int)(e2.getEventTime() - e1.getEventTime());
155 if (duration < 1 || duration > 100) duration = 10;
Hans Boehm61568a12015-05-18 18:25:41 -0700156 mScroller.startScroll(mCurrentPos, 0, distance, 0, (int)duration);
Justin Klaassen44595162015-05-28 17:55:20 -0700157 postInvalidateOnAnimation();
Hans Boehm84614952014-11-25 18:46:17 -0800158 return true;
159 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700160 @Override
161 public void onLongPress(MotionEvent e) {
Hans Boehm1176f232015-05-11 16:26:03 -0700162 if (mValid) {
Justin Klaassen3a05c7e2016-03-04 12:40:02 -0800163 performLongClick();
Hans Boehm1176f232015-05-11 16:26:03 -0700164 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700165 }
Hans Boehm84614952014-11-25 18:46:17 -0800166 });
Justin Klaassen3a05c7e2016-03-04 12:40:02 -0800167 setOnTouchListener(new View.OnTouchListener() {
168 @Override
169 public boolean onTouch(View v, MotionEvent event) {
170 return mGestureDetector.onTouchEvent(event);
171 }
172 });
173 setOnLongClickListener(new View.OnLongClickListener() {
174 @Override
175 public boolean onLongClick(View v) {
176 if (mValid) {
177 mActionMode = startActionMode(mCopyActionModeCallback,
178 ActionMode.TYPE_FLOATING);
179 return true;
180 }
181 return false;
182 }
183 });
Hans Boehm84614952014-11-25 18:46:17 -0800184 setHorizontallyScrolling(false); // do it ourselves
185 setCursorVisible(false);
Hans Boehm1176f232015-05-11 16:26:03 -0700186 mExponentColorSpan = new ForegroundColorSpan(
187 context.getColor(R.color.display_result_exponent_text_color));
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700188
189 // Copy ActionMode is triggered explicitly, not through
190 // setCustomSelectionActionModeCallback.
Hans Boehm84614952014-11-25 18:46:17 -0800191 }
192
193 void setEvaluator(Evaluator evaluator) {
194 mEvaluator = evaluator;
195 }
196
Hans Boehmcd72f7e2016-06-01 16:21:25 -0700197 // Compute maximum digit width the hard way.
198 private static float getMaxDigitWidth(TextPaint paint) {
199 // Compute the maximum advance width for each digit, thus accounting for between-character
200 // spaces. If we ever support other kinds of digits, we may have to avoid kerning effects
201 // that could reduce the advance width within this particular string.
202 final String allDigits = "0123456789";
203 final float[] widths = new float[allDigits.length()];
204 paint.getTextWidths(allDigits, widths);
205 float maxWidth = 0;
206 for (float x : widths) {
207 maxWidth = Math.max(x, maxWidth);
208 }
209 return maxWidth;
210 }
211
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700212 @Override
213 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
214 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
215
Justin Klaassen44595162015-05-28 17:55:20 -0700216 final TextPaint paint = getPaint();
Hans Boehm80018c82015-08-02 16:59:07 -0700217 final Context context = getContext();
Hans Boehmcd72f7e2016-06-01 16:21:25 -0700218 final float newCharWidth = getMaxDigitWidth(paint);
Hans Boehm80018c82015-08-02 16:59:07 -0700219 // Digits are presumed to have no more than newCharWidth.
220 // We sometimes replace a character by an ellipsis or, due to SCI_NOTATION_EXTRA, add
221 // an extra decimal separator beyond the maximum number of characters we normally allow.
222 // Empirically, our minus sign is also slightly wider than a digit, so we have to
223 // account for that. We never have both an ellipsis and two minus signs, and
224 // we assume an ellipsis is no narrower than a minus sign.
225 final float decimalSeparatorWidth = Layout.getDesiredWidth(
226 context.getString(R.string.dec_point), paint);
227 final float minusExtraWidth = Layout.getDesiredWidth(
228 context.getString(R.string.op_sub), paint) - newCharWidth;
229 final float ellipsisExtraWidth = Layout.getDesiredWidth(KeyMaps.ELLIPSIS, paint)
230 - newCharWidth;
231 final int extraWidth = (int) (Math.ceil(Math.max(decimalSeparatorWidth + minusExtraWidth,
232 ellipsisExtraWidth)) + Math.max(minusExtraWidth, 0.0f));
233 final int newWidthConstraint = MeasureSpec.getSize(widthMeasureSpec)
234 - (getPaddingLeft() + getPaddingRight()) - extraWidth;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700235 synchronized(mWidthLock) {
Hans Boehm013969e2015-04-13 20:29:47 -0700236 mWidthConstraint = newWidthConstraint;
237 mCharWidth = newCharWidth;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700238 }
239 }
240
Hans Boehma0e45f32015-05-30 13:20:35 -0700241 // Return the length of the exponent representation for the given exponent, in
242 // characters.
243 private final int expLen(int exp) {
244 if (exp == 0) return 0;
Hans Boehm5e802f32015-06-22 17:18:52 -0700245 final int abs_exp_digits = (int) Math.ceil(Math.log10(Math.abs((double)exp))
246 + 0.0000000001d /* Round whole numbers to next integer */);
247 return abs_exp_digits + (exp >= 0 ? 1 : 2);
Hans Boehm61568a12015-05-18 18:25:41 -0700248 }
249
Hans Boehma0e45f32015-05-30 13:20:35 -0700250 /**
251 * Initiate display of a new result.
252 * The parameters specify various properties of the result.
253 * @param initPrec Initial display precision computed by evaluator. (1 = tenths digit)
254 * @param msd Position of most significant digit. Offset from left of string.
255 Evaluator.INVALID_MSD if unknown.
256 * @param leastDigPos Position of least significant digit (1 = tenths digit)
257 * or Integer.MAX_VALUE.
258 * @param truncatedWholePart Result up to but not including decimal point.
259 Currently we only use the length.
260 */
261 void displayResult(int initPrec, int msd, int leastDigPos, String truncatedWholePart) {
262 initPositions(initPrec, msd, leastDigPos, truncatedWholePart);
Hans Boehm84614952014-11-25 18:46:17 -0800263 redisplay();
264 }
265
Hans Boehma0e45f32015-05-30 13:20:35 -0700266 /**
Hans Boehm5e802f32015-06-22 17:18:52 -0700267 * Set up scroll bounds (mMinPos, mMaxPos, etc.) and determine whether the result is
268 * scrollable, based on the supplied information about the result.
Hans Boehma0e45f32015-05-30 13:20:35 -0700269 * This is unfortunately complicated because we need to predict whether trailing digits
270 * will eventually be replaced by an exponent.
271 * Just appending the exponent during formatting would be simpler, but would produce
272 * jumpier results during transitions.
273 */
Hans Boehm5e802f32015-06-22 17:18:52 -0700274 private void initPositions(int initPrecOffset, int msdIndex, int lsdOffset,
275 String truncatedWholePart) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700276 float charWidth;
277 int maxChars = getMaxChars();
278 mLastPos = INVALID;
Hans Boehm5e802f32015-06-22 17:18:52 -0700279 mLsdOffset = lsdOffset;
Hans Boehma0e45f32015-05-30 13:20:35 -0700280 synchronized(mWidthLock) {
281 charWidth = mCharWidth;
282 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700283 mCurrentPos = mMinPos = (int) Math.round(initPrecOffset * charWidth);
Hans Boehma0e45f32015-05-30 13:20:35 -0700284 // Prevent scrolling past initial position, which is calculated to show leading digits.
Hans Boehm5e802f32015-06-22 17:18:52 -0700285 if (msdIndex == Evaluator.INVALID_MSD) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700286 // Possible zero value
Hans Boehm5e802f32015-06-22 17:18:52 -0700287 if (lsdOffset == Integer.MIN_VALUE) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700288 // Definite zero value.
289 mMaxPos = mMinPos;
Hans Boehm5e802f32015-06-22 17:18:52 -0700290 mMaxCharOffset = (int) Math.round(mMaxPos/charWidth);
Hans Boehma0e45f32015-05-30 13:20:35 -0700291 mScrollable = false;
292 } else {
293 // May be very small nonzero value. Allow user to find out.
Hans Boehm5e802f32015-06-22 17:18:52 -0700294 mMaxPos = mMaxCharOffset = MAX_RIGHT_SCROLL;
295 mMinPos -= charWidth; // Allow for future minus sign.
Hans Boehma0e45f32015-05-30 13:20:35 -0700296 mScrollable = true;
297 }
298 return;
299 }
Hans Boehm65a99a42016-02-03 18:16:07 -0800300 mWholeLen = truncatedWholePart.length();
Hans Boehma0e45f32015-05-30 13:20:35 -0700301 int negative = truncatedWholePart.charAt(0) == '-' ? 1 : 0;
Hans Boehm65a99a42016-02-03 18:16:07 -0800302 if (msdIndex > mWholeLen && msdIndex <= mWholeLen + 3) {
Hans Boehm5e802f32015-06-22 17:18:52 -0700303 // Avoid tiny negative exponent; pretend msdIndex is just to the right of decimal point.
Hans Boehm65a99a42016-02-03 18:16:07 -0800304 msdIndex = mWholeLen - 1;
Hans Boehma0e45f32015-05-30 13:20:35 -0700305 }
Hans Boehm65a99a42016-02-03 18:16:07 -0800306 int minCharOffset = msdIndex - mWholeLen;
Hans Boehma0e45f32015-05-30 13:20:35 -0700307 // Position of leftmost significant digit relative to dec. point.
308 // Usually negative.
Hans Boehm5e802f32015-06-22 17:18:52 -0700309 mMaxCharOffset = MAX_RIGHT_SCROLL; // How far does it make sense to scroll right?
Hans Boehma0e45f32015-05-30 13:20:35 -0700310 // If msd is left of decimal point should logically be
311 // mMinPos = - (int) Math.ceil(getPaint().measureText(truncatedWholePart)), but
312 // we eventually translate to a character position by dividing by mCharWidth.
313 // To avoid rounding issues, we use the analogous computation here.
Hans Boehm5e802f32015-06-22 17:18:52 -0700314 if (minCharOffset > -1 && minCharOffset < MAX_LEADING_ZEROES + 2) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700315 // Small number of leading zeroes, avoid scientific notation.
Hans Boehm5e802f32015-06-22 17:18:52 -0700316 minCharOffset = -1;
Hans Boehma0e45f32015-05-30 13:20:35 -0700317 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700318 if (lsdOffset < MAX_RIGHT_SCROLL) {
319 mMaxCharOffset = lsdOffset;
320 if (mMaxCharOffset < -1 && mMaxCharOffset > -(MAX_TRAILING_ZEROES + 2)) {
321 mMaxCharOffset = -1;
Hans Boehma0e45f32015-05-30 13:20:35 -0700322 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700323 // lsdOffset is positive or negative, never 0.
324 int currentExpLen = 0; // Length of required standard scientific notation exponent.
325 if (mMaxCharOffset < -1) {
326 currentExpLen = expLen(-minCharOffset - 1);
327 } else if (minCharOffset > -1 || mMaxCharOffset >= maxChars) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700328 // Number either entirely to the right of decimal point, or decimal point not
329 // visible when scrolled to the right.
Hans Boehm5e802f32015-06-22 17:18:52 -0700330 currentExpLen = expLen(-minCharOffset);
Hans Boehma0e45f32015-05-30 13:20:35 -0700331 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700332 mScrollable = (mMaxCharOffset + currentExpLen - minCharOffset + negative >= maxChars);
333 int newMaxCharOffset;
334 if (currentExpLen > 0) {
335 if (mScrollable) {
336 // We'll use exponent corresponding to leastDigPos when scrolled to right.
337 newMaxCharOffset = mMaxCharOffset + expLen(-lsdOffset);
338 } else {
339 newMaxCharOffset = mMaxCharOffset + currentExpLen;
340 }
341 if (mMaxCharOffset <= -1 && newMaxCharOffset > -1) {
342 // Very unlikely; just drop exponent.
343 mMaxCharOffset = -1;
344 } else {
345 mMaxCharOffset = newMaxCharOffset;
Hans Boehma0e45f32015-05-30 13:20:35 -0700346 }
347 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700348 mMaxPos = Math.min((int) Math.round(mMaxCharOffset * charWidth), MAX_RIGHT_SCROLL);
Hans Boehma0e45f32015-05-30 13:20:35 -0700349 if (!mScrollable) {
350 // Position the number consistently with our assumptions to make sure it
351 // actually fits.
352 mCurrentPos = mMaxPos;
353 }
354 } else {
Hans Boehm5e802f32015-06-22 17:18:52 -0700355 mMaxPos = mMaxCharOffset = MAX_RIGHT_SCROLL;
Hans Boehma0e45f32015-05-30 13:20:35 -0700356 mScrollable = true;
357 }
358 }
359
Hans Boehm84614952014-11-25 18:46:17 -0800360 void displayError(int resourceId) {
Hans Boehm760a9dc2015-04-20 10:27:12 -0700361 mValid = true;
Hans Boehm84614952014-11-25 18:46:17 -0800362 mScrollable = false;
363 setText(resourceId);
364 }
365
Hans Boehm013969e2015-04-13 20:29:47 -0700366 private final int MAX_COPY_SIZE = 1000000;
367
Hans Boehma0e45f32015-05-30 13:20:35 -0700368 /*
369 * Return the most significant digit position in the given string or Evaluator.INVALID_MSD.
Hans Boehm3666e632015-07-27 18:33:12 -0700370 * Unlike Evaluator.getMsdIndexOf, we treat a final 1 as significant.
Hans Boehma0e45f32015-05-30 13:20:35 -0700371 */
Hans Boehm3666e632015-07-27 18:33:12 -0700372 public static int getNaiveMsdIndexOf(String s) {
Hans Boehm65a99a42016-02-03 18:16:07 -0800373 final int len = s.length();
Hans Boehma0e45f32015-05-30 13:20:35 -0700374 for (int i = 0; i < len; ++i) {
375 char c = s.charAt(i);
376 if (c != '-' && c != '.' && c != '0') {
377 return i;
378 }
379 }
380 return Evaluator.INVALID_MSD;
381 }
382
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700383 // Format a result returned by Evaluator.getString() into a single line containing ellipses
Hans Boehm3666e632015-07-27 18:33:12 -0700384 // (if appropriate) and an exponent (if appropriate). precOffset is the value that was passed
385 // to getString and thus identifies the significance of the rightmost digit.
Hans Boehma0e45f32015-05-30 13:20:35 -0700386 // A value of 1 means the rightmost digits corresponds to tenths.
387 // maxDigs is the maximum number of characters in the result.
Hans Boehm65a99a42016-02-03 18:16:07 -0800388 // If lastDisplayedOffset is not null, we set lastDisplayedOffset[0] to the offset of
389 // the last digit actually appearing in the display.
Hans Boehmf6dae112015-06-18 17:57:50 -0700390 // If forcePrecision is true, we make sure that the last displayed digit corresponds to
Hans Boehm65a99a42016-02-03 18:16:07 -0800391 // precOffset, and allow maxDigs to be exceeded in adding the exponent.
Hans Boehm08e8f322015-04-21 13:18:38 -0700392 // We add two distinct kinds of exponents:
Hans Boehm5e802f32015-06-22 17:18:52 -0700393 // (1) If the final result contains the leading digit we use standard scientific notation.
394 // (2) If not, we add an exponent corresponding to an interpretation of the final result as
395 // an integer.
Hans Boehm08e8f322015-04-21 13:18:38 -0700396 // We add an ellipsis on the left if the result was truncated.
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700397 // We add ellipses and exponents in a way that leaves most digits in the position they
398 // would have been in had we not done so.
399 // This minimizes jumps as a result of scrolling. Result is NOT internationalized,
Hans Boehm0b9806f2015-06-29 16:07:15 -0700400 // uses "E" for exponent.
Hans Boehm5e802f32015-06-22 17:18:52 -0700401 public String formatResult(String in, int precOffset, int maxDigs, boolean truncated,
402 boolean negative, int lastDisplayedOffset[], boolean forcePrecision) {
403 final int minusSpace = negative ? 1 : 0;
Hans Boehm3666e632015-07-27 18:33:12 -0700404 final int msdIndex = truncated ? -1 : getNaiveMsdIndexOf(in); // INVALID_MSD is OK.
Hans Boehm5e802f32015-06-22 17:18:52 -0700405 String result = in;
Hans Boehm73ecff22015-09-03 16:04:50 -0700406 if (truncated || (negative && result.charAt(0) != '-')) {
407 result = KeyMaps.ELLIPSIS + result.substring(1, result.length());
408 // Ellipsis may be removed again in the type(1) scientific notation case.
409 }
410 final int decIndex = result.indexOf('.');
Hans Boehm65a99a42016-02-03 18:16:07 -0800411 if (lastDisplayedOffset != null) {
412 lastDisplayedOffset[0] = precOffset;
413 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700414 if ((decIndex == -1 || msdIndex != Evaluator.INVALID_MSD
415 && msdIndex - decIndex > MAX_LEADING_ZEROES + 1) && precOffset != -1) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700416 // No decimal point displayed, and it's not just to the right of the last digit,
417 // or we should suppress leading zeroes.
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700418 // Add an exponent to let the user track which digits are currently displayed.
Hans Boehm5e802f32015-06-22 17:18:52 -0700419 // Start with type (2) exponent if we dropped no digits. -1 accounts for decimal point.
420 final int initExponent = precOffset > 0 ? -precOffset : -precOffset - 1;
421 int exponent = initExponent;
Hans Boehm08e8f322015-04-21 13:18:38 -0700422 boolean hasPoint = false;
Hans Boehm5e802f32015-06-22 17:18:52 -0700423 if (!truncated && msdIndex < maxDigs - 1
424 && result.length() - msdIndex + 1 + minusSpace
425 <= maxDigs + SCI_NOTATION_EXTRA) {
426 // Type (1) exponent computation and transformation:
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700427 // Leading digit is in display window. Use standard calculator scientific notation
428 // with one digit to the left of the decimal point. Insert decimal point and
429 // delete leading zeroes.
Hans Boehma0e45f32015-05-30 13:20:35 -0700430 // We try to keep leading digits roughly in position, and never
Hans Boehmf6dae112015-06-18 17:57:50 -0700431 // lengthen the result by more than SCI_NOTATION_EXTRA.
Hans Boehm5e802f32015-06-22 17:18:52 -0700432 final int resLen = result.length();
433 String fraction = result.substring(msdIndex + 1, resLen);
434 result = (negative ? "-" : "") + result.substring(msdIndex, msdIndex + 1)
435 + "." + fraction;
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700436 // Original exp was correct for decimal point at right of fraction.
437 // Adjust by length of fraction.
Hans Boehm5e802f32015-06-22 17:18:52 -0700438 exponent = initExponent + resLen - msdIndex - 1;
Hans Boehm08e8f322015-04-21 13:18:38 -0700439 hasPoint = true;
440 }
Hans Boehm73ecff22015-09-03 16:04:50 -0700441 // Exponent can't be zero.
442 // Actually add the exponent of either type:
443 if (!forcePrecision) {
444 int dropDigits; // Digits to drop to make room for exponent.
445 if (hasPoint) {
446 // Type (1) exponent.
447 // Drop digits even if there is room. Otherwise the scrolling gets jumpy.
448 dropDigits = expLen(exponent);
449 if (dropDigits >= result.length() - 1) {
450 // Jumpy is better than no mantissa. Probably impossible anyway.
451 dropDigits = Math.max(result.length() - 2, 0);
Hans Boehma0e45f32015-05-30 13:20:35 -0700452 }
Hans Boehm73ecff22015-09-03 16:04:50 -0700453 } else {
454 // Type (2) exponent.
455 // Exponent depends on the number of digits we drop, which depends on
456 // exponent ...
457 for (dropDigits = 2; expLen(initExponent + dropDigits) > dropDigits;
458 ++dropDigits) {}
459 exponent = initExponent + dropDigits;
460 if (precOffset - dropDigits > mLsdOffset) {
461 // This can happen if e.g. result = 10^40 + 10^10
462 // It turns out we would otherwise display ...10e9 because it takes
463 // the same amount of space as ...1e10 but shows one more digit.
464 // But we don't want to display a trailing zero, even if it's free.
465 ++dropDigits;
466 ++exponent;
467 }
Hans Boehm08e8f322015-04-21 13:18:38 -0700468 }
Hans Boehm73ecff22015-09-03 16:04:50 -0700469 result = result.substring(0, result.length() - dropDigits);
Hans Boehm65a99a42016-02-03 18:16:07 -0800470 if (lastDisplayedOffset != null) {
471 lastDisplayedOffset[0] -= dropDigits;
472 }
Hans Boehm73ecff22015-09-03 16:04:50 -0700473 }
474 result = result + "E" + Integer.toString(exponent);
Hans Boehm5e802f32015-06-22 17:18:52 -0700475 }
476 return result;
Hans Boehm08e8f322015-04-21 13:18:38 -0700477 }
478
Hans Boehmf6dae112015-06-18 17:57:50 -0700479 /**
480 * Get formatted, but not internationalized, result from mEvaluator.
Hans Boehm5e802f32015-06-22 17:18:52 -0700481 * @param precOffset requested position (1 = tenths) of last included digit.
Hans Boehmf6dae112015-06-18 17:57:50 -0700482 * @param maxSize Maximum number of characters (more or less) in result.
Hans Boehm5e802f32015-06-22 17:18:52 -0700483 * @param lastDisplayedOffset Zeroth entry is set to actual offset of last included digit,
Hans Boehm65a99a42016-02-03 18:16:07 -0800484 * after adjusting for exponent, etc. May be null.
Hans Boehmf6dae112015-06-18 17:57:50 -0700485 * @param forcePrecision Ensure that last included digit is at pos, at the expense
486 * of treating maxSize as a soft limit.
487 */
Hans Boehm5e802f32015-06-22 17:18:52 -0700488 private String getFormattedResult(int precOffset, int maxSize, int lastDisplayedOffset[],
Hans Boehmf6dae112015-06-18 17:57:50 -0700489 boolean forcePrecision) {
Hans Boehm08e8f322015-04-21 13:18:38 -0700490 final boolean truncated[] = new boolean[1];
491 final boolean negative[] = new boolean[1];
Hans Boehm5e802f32015-06-22 17:18:52 -0700492 final int requestedPrecOffset[] = {precOffset};
493 final String rawResult = mEvaluator.getString(requestedPrecOffset, mMaxCharOffset,
Hans Boehma0e45f32015-05-30 13:20:35 -0700494 maxSize, truncated, negative);
Hans Boehm5e802f32015-06-22 17:18:52 -0700495 return formatResult(rawResult, requestedPrecOffset[0], maxSize, truncated[0], negative[0],
496 lastDisplayedOffset, forcePrecision);
Hans Boehm08e8f322015-04-21 13:18:38 -0700497 }
498
Hans Boehm65a99a42016-02-03 18:16:07 -0800499 /**
500 * Return entire result (within reason) up to current displayed precision.
501 */
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700502 public String getFullText() {
Hans Boehm760a9dc2015-04-20 10:27:12 -0700503 if (!mValid) return "";
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700504 if (!mScrollable) return getText().toString();
Hans Boehm5e802f32015-06-22 17:18:52 -0700505 return KeyMaps.translateResult(getFormattedResult(mLastDisplayedOffset, MAX_COPY_SIZE,
Hans Boehm65a99a42016-02-03 18:16:07 -0800506 null, true));
Hans Boehm84614952014-11-25 18:46:17 -0800507 }
508
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700509 public boolean fullTextIsExact() {
Hans Boehmf6dae112015-06-18 17:57:50 -0700510 return !mScrollable
Hans Boehm5e802f32015-06-22 17:18:52 -0700511 || mMaxCharOffset == getCurrentCharOffset() && mMaxCharOffset != MAX_RIGHT_SCROLL;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700512 }
513
Hans Boehm61568a12015-05-18 18:25:41 -0700514 /**
Hans Boehm65a99a42016-02-03 18:16:07 -0800515 * Get entire result up to current displayed precision, or up to MAX_COPY_EXTRA additional
516 * digits, if it will lead to an exact result.
517 */
518 public String getFullCopyText() {
519 if (!mValid
520 || mLsdOffset == Integer.MAX_VALUE
521 || fullTextIsExact()
522 || mWholeLen > MAX_RECOMPUTE_DIGITS
523 || mWholeLen + mLsdOffset > MAX_RECOMPUTE_DIGITS
524 || mLsdOffset - mLastDisplayedOffset > MAX_COPY_EXTRA) {
525 return getFullText();
526 }
527 // It's reasonable to compute and copy the exact result instead.
528 final int nonNegLsdOffset = Math.max(0, mLsdOffset);
Hans Boehm995e5eb2016-02-08 11:03:01 -0800529 final String rawResult = mEvaluator.getResult().toStringTruncated(nonNegLsdOffset);
Hans Boehm65a99a42016-02-03 18:16:07 -0800530 final String formattedResult = formatResult(rawResult, nonNegLsdOffset, MAX_COPY_SIZE,
531 false, rawResult.charAt(0) == '-', null, true);
532 return KeyMaps.translateResult(formattedResult);
533 }
534
535 /**
Hans Boehm61568a12015-05-18 18:25:41 -0700536 * Return the maximum number of characters that will fit in the result display.
537 * May be called asynchronously from non-UI thread.
538 */
Hans Boehm84614952014-11-25 18:46:17 -0800539 int getMaxChars() {
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700540 int result;
541 synchronized(mWidthLock) {
Justin Klaassen44595162015-05-28 17:55:20 -0700542 result = (int) Math.floor(mWidthConstraint / mCharWidth);
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700543 // We can apparently finish evaluating before onMeasure in CalculatorText has been
544 // called, in which case we get 0 or -1 as the width constraint.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700545 }
Hans Boehm84614952014-11-25 18:46:17 -0800546 if (result <= 0) {
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700547 // Return something conservatively big, to force sufficient evaluation.
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700548 return MAX_WIDTH;
Hans Boehm84614952014-11-25 18:46:17 -0800549 } else {
Hans Boehm80018c82015-08-02 16:59:07 -0700550 return result;
Hans Boehm84614952014-11-25 18:46:17 -0800551 }
552 }
553
Hans Boehm61568a12015-05-18 18:25:41 -0700554 /**
Justin Klaassen44595162015-05-28 17:55:20 -0700555 * @return {@code true} if the currently displayed result is scrollable
Hans Boehm61568a12015-05-18 18:25:41 -0700556 */
Justin Klaassen44595162015-05-28 17:55:20 -0700557 public boolean isScrollable() {
558 return mScrollable;
Hans Boehm61568a12015-05-18 18:25:41 -0700559 }
560
Hans Boehm5e802f32015-06-22 17:18:52 -0700561 int getCurrentCharOffset() {
Hans Boehm013969e2015-04-13 20:29:47 -0700562 synchronized(mWidthLock) {
Hans Boehma0e45f32015-05-30 13:20:35 -0700563 return (int) Math.round(mCurrentPos / mCharWidth);
Hans Boehm013969e2015-04-13 20:29:47 -0700564 }
565 }
566
Hans Boehm84614952014-11-25 18:46:17 -0800567 void clear() {
Hans Boehm760a9dc2015-04-20 10:27:12 -0700568 mValid = false;
Hans Boehm1176f232015-05-11 16:26:03 -0700569 mScrollable = false;
Hans Boehm84614952014-11-25 18:46:17 -0800570 setText("");
571 }
572
573 void redisplay() {
Hans Boehm5e802f32015-06-22 17:18:52 -0700574 int currentCharOffset = getCurrentCharOffset();
Hans Boehm84614952014-11-25 18:46:17 -0800575 int maxChars = getMaxChars();
Hans Boehm5e802f32015-06-22 17:18:52 -0700576 int lastDisplayedOffset[] = new int[1];
577 String result = getFormattedResult(currentCharOffset, maxChars, lastDisplayedOffset, false);
Hans Boehm0b9806f2015-06-29 16:07:15 -0700578 int expIndex = result.indexOf('E');
Hans Boehm013969e2015-04-13 20:29:47 -0700579 result = KeyMaps.translateResult(result);
Hans Boehm5e802f32015-06-22 17:18:52 -0700580 if (expIndex > 0 && result.indexOf('.') == -1) {
Hans Boehm84614952014-11-25 18:46:17 -0800581 // Gray out exponent if used as position indicator
582 SpannableString formattedResult = new SpannableString(result);
Hans Boehm5e802f32015-06-22 17:18:52 -0700583 formattedResult.setSpan(mExponentColorSpan, expIndex, result.length(),
Hans Boehm84614952014-11-25 18:46:17 -0800584 Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
585 setText(formattedResult);
586 } else {
587 setText(result);
588 }
Hans Boehm5e802f32015-06-22 17:18:52 -0700589 mLastDisplayedOffset = lastDisplayedOffset[0];
Hans Boehm760a9dc2015-04-20 10:27:12 -0700590 mValid = true;
Hans Boehm84614952014-11-25 18:46:17 -0800591 }
592
593 @Override
594 public void computeScroll() {
595 if (!mScrollable) return;
596 if (mScroller.computeScrollOffset()) {
597 mCurrentPos = mScroller.getCurrX();
598 if (mCurrentPos != mLastPos) {
599 mLastPos = mCurrentPos;
600 redisplay();
601 }
602 if (!mScroller.isFinished()) {
Justin Klaassen44595162015-05-28 17:55:20 -0700603 postInvalidateOnAnimation();
Hans Boehm84614952014-11-25 18:46:17 -0800604 }
605 }
606 }
607
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700608 // Copy support:
609
Hans Boehm7f83e362015-06-10 15:41:04 -0700610 private ActionMode.Callback2 mCopyActionModeCallback = new ActionMode.Callback2() {
611
612 private BackgroundColorSpan mHighlightSpan;
613
614 private void highlightResult() {
615 final Spannable text = (Spannable) getText();
616 mHighlightSpan = new BackgroundColorSpan(getHighlightColor());
617 text.setSpan(mHighlightSpan, 0, text.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
618 }
619
620 private void unhighlightResult() {
621 final Spannable text = (Spannable) getText();
622 text.removeSpan(mHighlightSpan);
623 }
624
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700625 @Override
626 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
627 MenuInflater inflater = mode.getMenuInflater();
628 inflater.inflate(R.menu.copy, menu);
Hans Boehm7f83e362015-06-10 15:41:04 -0700629 highlightResult();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700630 return true;
631 }
632
633 @Override
634 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
635 return false; // Return false if nothing is done
636 }
637
638 @Override
639 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
640 switch (item.getItemId()) {
641 case R.id.menu_copy:
Hans Boehm65a99a42016-02-03 18:16:07 -0800642 if (mEvaluator.reevaluationInProgress()) {
643 // Refuse to copy placeholder characters.
644 return false;
645 } else {
646 copyContent();
647 mode.finish();
648 return true;
649 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700650 default:
651 return false;
652 }
653 }
654
655 @Override
656 public void onDestroyActionMode(ActionMode mode) {
Hans Boehm7f83e362015-06-10 15:41:04 -0700657 unhighlightResult();
Hans Boehm1176f232015-05-11 16:26:03 -0700658 mActionMode = null;
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700659 }
Hans Boehm7f83e362015-06-10 15:41:04 -0700660
661 @Override
662 public void onGetContentRect(ActionMode mode, View view, Rect outRect) {
663 super.onGetContentRect(mode, view, outRect);
Justin Klaassenac6a9ba2016-01-28 18:39:23 -0800664
665 outRect.left += view.getPaddingLeft();
666 outRect.top += view.getPaddingTop();
667 outRect.right -= view.getPaddingRight();
668 outRect.bottom -= view.getPaddingBottom();
Hans Boehm7f83e362015-06-10 15:41:04 -0700669 final int width = (int) Layout.getDesiredWidth(getText(), getPaint());
670 if (width < outRect.width()) {
671 outRect.left = outRect.right - width;
672 }
Justin Klaassenac6a9ba2016-01-28 18:39:23 -0800673
Justin Klaassenf1b61f42016-04-27 16:00:11 -0700674 if (!BuildCompat.isAtLeastN()) {
675 // The CAB (prior to N) only takes the translation of a view into account, so if
676 // a scale is applied to the view then the offset outRect will end up being
677 // positioned incorrectly. We workaround that limitation by manually applying the
678 // scale to the outRect, which the CAB will then offset to the correct position.
679 final float scaleX = view.getScaleX();
680 final float scaleY = view.getScaleY();
681 outRect.left *= scaleX;
682 outRect.right *= scaleX;
683 outRect.top *= scaleY;
684 outRect.bottom *= scaleY;
685 }
Hans Boehm7f83e362015-06-10 15:41:04 -0700686 }
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700687 };
688
Hans Boehm1176f232015-05-11 16:26:03 -0700689 public boolean stopActionMode() {
690 if (mActionMode != null) {
691 mActionMode.finish();
692 return true;
693 }
694 return false;
695 }
696
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700697 private void setPrimaryClip(ClipData clip) {
698 ClipboardManager clipboard = (ClipboardManager) getContext().
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700699 getSystemService(Context.CLIPBOARD_SERVICE);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700700 clipboard.setPrimaryClip(clip);
701 }
702
703 private void copyContent() {
Hans Boehm65a99a42016-02-03 18:16:07 -0800704 final CharSequence text = getFullCopyText();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700705 ClipboardManager clipboard =
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700706 (ClipboardManager) getContext().getSystemService(Context.CLIPBOARD_SERVICE);
707 // We include a tag URI, to allow us to recognize our own results and handle them
708 // specially.
709 ClipData.Item newItem = new ClipData.Item(text, null, mEvaluator.capture());
710 String[] mimeTypes = new String[] {ClipDescription.MIMETYPE_TEXT_PLAIN};
711 ClipData cd = new ClipData("calculator result", mimeTypes, newItem);
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700712 clipboard.setPrimaryClip(cd);
Hans Boehmc01cd7f2015-05-12 18:32:19 -0700713 Toast.makeText(getContext(), R.string.text_copied_toast, Toast.LENGTH_SHORT).show();
Hans Boehm4a6b7cb2015-04-03 18:41:52 -0700714 }
715
Hans Boehm84614952014-11-25 18:46:17 -0800716}