am 723391c9: Merge "Tidy up Utils class a bit"
* commit '723391c9451f906ed786ba3418611846dfe9f3f5': Tidy up Utils class a bitmain
commit
015d542fa9
|
@ -64,7 +64,8 @@ public final class Utils {
|
||||||
* task should be interrupted; otherwise, in-progress tasks are allowed
|
* task should be interrupted; otherwise, in-progress tasks are allowed
|
||||||
* to complete.
|
* to complete.
|
||||||
*/
|
*/
|
||||||
public static void cancelTask(AsyncTask<?, ?, ?> task, boolean mayInterruptIfRunning) {
|
public static void cancelTask(final AsyncTask<?, ?, ?> task,
|
||||||
|
final boolean mayInterruptIfRunning) {
|
||||||
if (task != null && task.getStatus() != AsyncTask.Status.FINISHED) {
|
if (task != null && task.getStatus() != AsyncTask.Status.FINISHED) {
|
||||||
task.cancel(mayInterruptIfRunning);
|
task.cancel(mayInterruptIfRunning);
|
||||||
}
|
}
|
||||||
|
@ -86,26 +87,34 @@ public final class Utils {
|
||||||
private RingCharBuffer() {
|
private RingCharBuffer() {
|
||||||
// Intentional empty constructor for singleton.
|
// Intentional empty constructor for singleton.
|
||||||
}
|
}
|
||||||
|
|
||||||
@UsedForTesting
|
@UsedForTesting
|
||||||
public static RingCharBuffer getInstance() {
|
public static RingCharBuffer getInstance() {
|
||||||
return sRingCharBuffer;
|
return sRingCharBuffer;
|
||||||
}
|
}
|
||||||
public static RingCharBuffer init(InputMethodService context, boolean enabled,
|
|
||||||
boolean usabilityStudy) {
|
public static RingCharBuffer init(final InputMethodService context, final boolean enabled,
|
||||||
if (!(enabled || usabilityStudy)) return null;
|
final boolean usabilityStudy) {
|
||||||
|
if (!(enabled || usabilityStudy)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
sRingCharBuffer.mContext = context;
|
sRingCharBuffer.mContext = context;
|
||||||
sRingCharBuffer.mEnabled = true;
|
sRingCharBuffer.mEnabled = true;
|
||||||
UsabilityStudyLogUtils.getInstance().init(context);
|
UsabilityStudyLogUtils.getInstance().init(context);
|
||||||
return sRingCharBuffer;
|
return sRingCharBuffer;
|
||||||
}
|
}
|
||||||
private static int normalize(int in) {
|
|
||||||
|
private static int normalize(final int in) {
|
||||||
int ret = in % BUFSIZE;
|
int ret = in % BUFSIZE;
|
||||||
return ret < 0 ? ret + BUFSIZE : ret;
|
return ret < 0 ? ret + BUFSIZE : ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: accept code points
|
// TODO: accept code points
|
||||||
@UsedForTesting
|
@UsedForTesting
|
||||||
public void push(char c, int x, int y) {
|
public void push(final char c, final int x, final int y) {
|
||||||
if (!mEnabled) return;
|
if (!mEnabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
mCharBuf[mEnd] = c;
|
mCharBuf[mEnd] = c;
|
||||||
mXBuf[mEnd] = x;
|
mXBuf[mEnd] = x;
|
||||||
mYBuf[mEnd] = y;
|
mYBuf[mEnd] = y;
|
||||||
|
@ -114,52 +123,54 @@ public final class Utils {
|
||||||
++mLength;
|
++mLength;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public char pop() {
|
public char pop() {
|
||||||
if (mLength < 1) {
|
if (mLength < 1) {
|
||||||
return PLACEHOLDER_DELIMITER_CHAR;
|
return PLACEHOLDER_DELIMITER_CHAR;
|
||||||
} else {
|
|
||||||
mEnd = normalize(mEnd - 1);
|
|
||||||
--mLength;
|
|
||||||
return mCharBuf[mEnd];
|
|
||||||
}
|
}
|
||||||
|
mEnd = normalize(mEnd - 1);
|
||||||
|
--mLength;
|
||||||
|
return mCharBuf[mEnd];
|
||||||
}
|
}
|
||||||
public char getBackwardNthChar(int n) {
|
|
||||||
|
public char getBackwardNthChar(final int n) {
|
||||||
if (mLength <= n || n < 0) {
|
if (mLength <= n || n < 0) {
|
||||||
return PLACEHOLDER_DELIMITER_CHAR;
|
return PLACEHOLDER_DELIMITER_CHAR;
|
||||||
} else {
|
|
||||||
return mCharBuf[normalize(mEnd - n - 1)];
|
|
||||||
}
|
}
|
||||||
|
return mCharBuf[normalize(mEnd - n - 1)];
|
||||||
}
|
}
|
||||||
public int getPreviousX(char c, int back) {
|
|
||||||
|
public int getPreviousX(final char c, final int back) {
|
||||||
|
final int index = normalize(mEnd - 2 - back);
|
||||||
|
if (mLength <= back
|
||||||
|
|| Character.toLowerCase(c) != Character.toLowerCase(mCharBuf[index])) {
|
||||||
|
return INVALID_COORDINATE;
|
||||||
|
}
|
||||||
|
return mXBuf[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPreviousY(final char c, final int back) {
|
||||||
int index = normalize(mEnd - 2 - back);
|
int index = normalize(mEnd - 2 - back);
|
||||||
if (mLength <= back
|
if (mLength <= back
|
||||||
|| Character.toLowerCase(c) != Character.toLowerCase(mCharBuf[index])) {
|
|| Character.toLowerCase(c) != Character.toLowerCase(mCharBuf[index])) {
|
||||||
return INVALID_COORDINATE;
|
return INVALID_COORDINATE;
|
||||||
} else {
|
|
||||||
return mXBuf[index];
|
|
||||||
}
|
}
|
||||||
|
return mYBuf[index];
|
||||||
}
|
}
|
||||||
public int getPreviousY(char c, int back) {
|
|
||||||
int index = normalize(mEnd - 2 - back);
|
public String getLastWord(final int ignoreCharCount) {
|
||||||
if (mLength <= back
|
final StringBuilder sb = new StringBuilder();
|
||||||
|| Character.toLowerCase(c) != Character.toLowerCase(mCharBuf[index])) {
|
final LatinIME latinIme = (LatinIME)mContext;
|
||||||
return INVALID_COORDINATE;
|
|
||||||
} else {
|
|
||||||
return mYBuf[index];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public String getLastWord(int ignoreCharCount) {
|
|
||||||
StringBuilder sb = new StringBuilder();
|
|
||||||
int i = ignoreCharCount;
|
int i = ignoreCharCount;
|
||||||
for (; i < mLength; ++i) {
|
for (; i < mLength; ++i) {
|
||||||
char c = mCharBuf[normalize(mEnd - 1 - i)];
|
final char c = mCharBuf[normalize(mEnd - 1 - i)];
|
||||||
if (!((LatinIME)mContext).isWordSeparator(c)) {
|
if (!latinIme.isWordSeparator(c)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (; i < mLength; ++i) {
|
for (; i < mLength; ++i) {
|
||||||
char c = mCharBuf[normalize(mEnd - 1 - i)];
|
char c = mCharBuf[normalize(mEnd - 1 - i)];
|
||||||
if (!((LatinIME)mContext).isWordSeparator(c)) {
|
if (!latinIme.isWordSeparator(c)) {
|
||||||
sb.append(c);
|
sb.append(c);
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
|
@ -167,6 +178,7 @@ public final class Utils {
|
||||||
}
|
}
|
||||||
return sb.reverse().toString();
|
return sb.reverse().toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void reset() {
|
public void reset() {
|
||||||
mLength = 0;
|
mLength = 0;
|
||||||
}
|
}
|
||||||
|
@ -174,11 +186,11 @@ public final class Utils {
|
||||||
|
|
||||||
// Get the current stack trace
|
// Get the current stack trace
|
||||||
public static String getStackTrace(final int limit) {
|
public static String getStackTrace(final int limit) {
|
||||||
StringBuilder sb = new StringBuilder();
|
final StringBuilder sb = new StringBuilder();
|
||||||
try {
|
try {
|
||||||
throw new RuntimeException();
|
throw new RuntimeException();
|
||||||
} catch (RuntimeException e) {
|
} catch (final RuntimeException e) {
|
||||||
StackTraceElement[] frames = e.getStackTrace();
|
final StackTraceElement[] frames = e.getStackTrace();
|
||||||
// Start at 1 because the first frame is here and we don't care about it
|
// Start at 1 because the first frame is here and we don't care about it
|
||||||
for (int j = 1; j < frames.length && j < limit + 1; ++j) {
|
for (int j = 1; j < frames.length && j < limit + 1; ++j) {
|
||||||
sb.append(frames[j].toString() + "\n");
|
sb.append(frames[j].toString() + "\n");
|
||||||
|
@ -222,7 +234,7 @@ public final class Utils {
|
||||||
return OnDemandInitializationHolder.sInstance;
|
return OnDemandInitializationHolder.sInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void init(InputMethodService ims) {
|
public void init(final InputMethodService ims) {
|
||||||
mIms = ims;
|
mIms = ims;
|
||||||
mDirectory = ims.getFilesDir();
|
mDirectory = ims.getFilesDir();
|
||||||
}
|
}
|
||||||
|
@ -232,17 +244,17 @@ public final class Utils {
|
||||||
&& (mDirectory != null && mDirectory.exists())) {
|
&& (mDirectory != null && mDirectory.exists())) {
|
||||||
try {
|
try {
|
||||||
mWriter = getPrintWriter(mDirectory, FILENAME, false);
|
mWriter = getPrintWriter(mDirectory, FILENAME, false);
|
||||||
} catch (IOException e) {
|
} catch (final IOException e) {
|
||||||
Log.e(USABILITY_TAG, "Can't create log file.");
|
Log.e(USABILITY_TAG, "Can't create log file.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void writeBackSpace(int x, int y) {
|
public static void writeBackSpace(final int x, final int y) {
|
||||||
UsabilityStudyLogUtils.getInstance().write("<backspace>\t" + x + "\t" + y);
|
UsabilityStudyLogUtils.getInstance().write("<backspace>\t" + x + "\t" + y);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void writeChar(char c, int x, int y) {
|
public static void writeChar(final char c, final int x, final int y) {
|
||||||
String inputChar = String.valueOf(c);
|
String inputChar = String.valueOf(c);
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case '\n':
|
case '\n':
|
||||||
|
@ -279,15 +291,15 @@ public final class Utils {
|
||||||
|
|
||||||
private synchronized String getBufferedLogs() {
|
private synchronized String getBufferedLogs() {
|
||||||
mWriter.flush();
|
mWriter.flush();
|
||||||
StringBuilder sb = new StringBuilder();
|
final StringBuilder sb = new StringBuilder();
|
||||||
BufferedReader br = getBufferedReader();
|
final BufferedReader br = getBufferedReader();
|
||||||
String line;
|
String line;
|
||||||
try {
|
try {
|
||||||
while ((line = br.readLine()) != null) {
|
while ((line = br.readLine()) != null) {
|
||||||
sb.append('\n');
|
sb.append('\n');
|
||||||
sb.append(line);
|
sb.append(line);
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (final IOException e) {
|
||||||
Log.e(USABILITY_TAG, "Can't read log file.");
|
Log.e(USABILITY_TAG, "Can't read log file.");
|
||||||
} finally {
|
} finally {
|
||||||
if (LatinImeLogger.sDBG) {
|
if (LatinImeLogger.sDBG) {
|
||||||
|
@ -295,7 +307,7 @@ public final class Utils {
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
br.close();
|
br.close();
|
||||||
} catch (IOException e) {
|
} catch (final IOException e) {
|
||||||
// ignore.
|
// ignore.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -334,10 +346,10 @@ public final class Utils {
|
||||||
srcStream.close();
|
srcStream.close();
|
||||||
dest.close();
|
dest.close();
|
||||||
destStream.close();
|
destStream.close();
|
||||||
} catch (FileNotFoundException e1) {
|
} catch (final FileNotFoundException e1) {
|
||||||
Log.w(USABILITY_TAG, e1);
|
Log.w(USABILITY_TAG, e1);
|
||||||
return;
|
return;
|
||||||
} catch (IOException e2) {
|
} catch (final IOException e2) {
|
||||||
Log.w(USABILITY_TAG, e2);
|
Log.w(USABILITY_TAG, e2);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -387,13 +399,13 @@ public final class Utils {
|
||||||
createLogFileIfNotExist();
|
createLogFileIfNotExist();
|
||||||
try {
|
try {
|
||||||
return new BufferedReader(new FileReader(mFile));
|
return new BufferedReader(new FileReader(mFile));
|
||||||
} catch (FileNotFoundException e) {
|
} catch (final FileNotFoundException e) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private PrintWriter getPrintWriter(
|
private PrintWriter getPrintWriter(final File dir, final String filename,
|
||||||
File dir, String filename, boolean renew) throws IOException {
|
final boolean renew) throws IOException {
|
||||||
mFile = new File(dir, filename);
|
mFile = new File(dir, filename);
|
||||||
if (mFile.exists()) {
|
if (mFile.exists()) {
|
||||||
if (renew) {
|
if (renew) {
|
||||||
|
@ -405,8 +417,7 @@ public final class Utils {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class Stats {
|
public static final class Stats {
|
||||||
public static void onNonSeparator(final char code, final int x,
|
public static void onNonSeparator(final char code, final int x, final int y) {
|
||||||
final int y) {
|
|
||||||
RingCharBuffer.getInstance().push(code, x, y);
|
RingCharBuffer.getInstance().push(code, x, y);
|
||||||
LatinImeLogger.logOnInputChar();
|
LatinImeLogger.logOnInputChar();
|
||||||
}
|
}
|
||||||
|
@ -430,7 +441,9 @@ public final class Utils {
|
||||||
public static void onAutoCorrection(final String typedWord, final String correctedWord,
|
public static void onAutoCorrection(final String typedWord, final String correctedWord,
|
||||||
final String separatorString, final WordComposer wordComposer) {
|
final String separatorString, final WordComposer wordComposer) {
|
||||||
final boolean isBatchMode = wordComposer.isBatchMode();
|
final boolean isBatchMode = wordComposer.isBatchMode();
|
||||||
if (!isBatchMode && TextUtils.isEmpty(typedWord)) return;
|
if (!isBatchMode && TextUtils.isEmpty(typedWord)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// TODO: this fails when the separator is more than 1 code point long, but
|
// TODO: this fails when the separator is more than 1 code point long, but
|
||||||
// the backend can't handle it yet. The only case when this happens is with
|
// the backend can't handle it yet. The only case when this happens is with
|
||||||
// smileys and other multi-character keys.
|
// smileys and other multi-character keys.
|
||||||
|
@ -454,36 +467,43 @@ public final class Utils {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getDebugInfo(final SuggestedWords suggestions, final int pos) {
|
public static String getDebugInfo(final SuggestedWords suggestions, final int pos) {
|
||||||
if (!LatinImeLogger.sDBG) return null;
|
if (!LatinImeLogger.sDBG) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
final SuggestedWordInfo wordInfo = suggestions.getInfo(pos);
|
final SuggestedWordInfo wordInfo = suggestions.getInfo(pos);
|
||||||
if (wordInfo == null) return null;
|
if (wordInfo == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
final String info = wordInfo.getDebugString();
|
final String info = wordInfo.getDebugString();
|
||||||
if (TextUtils.isEmpty(info)) return null;
|
if (TextUtils.isEmpty(info)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int getAcitivityTitleResId(Context context, Class<? extends Activity> cls) {
|
public static int getAcitivityTitleResId(final Context context,
|
||||||
|
final Class<? extends Activity> cls) {
|
||||||
final ComponentName cn = new ComponentName(context, cls);
|
final ComponentName cn = new ComponentName(context, cls);
|
||||||
try {
|
try {
|
||||||
final ActivityInfo ai = context.getPackageManager().getActivityInfo(cn, 0);
|
final ActivityInfo ai = context.getPackageManager().getActivityInfo(cn, 0);
|
||||||
if (ai != null) {
|
if (ai != null) {
|
||||||
return ai.labelRes;
|
return ai.labelRes;
|
||||||
}
|
}
|
||||||
} catch (NameNotFoundException e) {
|
} catch (final NameNotFoundException e) {
|
||||||
Log.e(TAG, "Failed to get settings activity title res id.", e);
|
Log.e(TAG, "Failed to get settings activity title res id.", e);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getVersionName(Context context) {
|
public static String getVersionName(final Context context) {
|
||||||
try {
|
try {
|
||||||
if (context == null) {
|
if (context == null) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
final String packageName = context.getPackageName();
|
final String packageName = context.getPackageName();
|
||||||
PackageInfo info = context.getPackageManager().getPackageInfo(packageName, 0);
|
final PackageInfo info = context.getPackageManager().getPackageInfo(packageName, 0);
|
||||||
return info.versionName;
|
return info.versionName;
|
||||||
} catch (NameNotFoundException e) {
|
} catch (final NameNotFoundException e) {
|
||||||
Log.e(TAG, "Could not find version info.", e);
|
Log.e(TAG, "Could not find version info.", e);
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
|
|
Loading…
Reference in New Issue