2012-10-01 02:56:29 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-10-01 02:56:29 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2012-10-01 02:56:29 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.util;
|
|
|
|
|
2014-01-11 11:34:11 +00:00
|
|
|
import android.annotation.SuppressLint;
|
2014-12-29 22:01:02 +00:00
|
|
|
import android.annotation.TargetApi;
|
2015-06-04 21:19:10 +00:00
|
|
|
import android.app.ActivityManager;
|
2013-07-17 22:13:00 +00:00
|
|
|
import android.content.Context;
|
2014-07-23 22:40:45 +00:00
|
|
|
import android.content.pm.PackageManager;
|
2013-02-08 19:57:54 +00:00
|
|
|
import android.graphics.Typeface;
|
2014-02-19 21:46:49 +00:00
|
|
|
import android.os.Build;
|
2014-12-29 22:01:02 +00:00
|
|
|
import android.os.Build.VERSION;
|
|
|
|
import android.os.Build.VERSION_CODES;
|
2015-05-22 01:27:31 +00:00
|
|
|
import android.os.Handler;
|
2015-05-15 04:08:37 +00:00
|
|
|
import android.os.Looper;
|
2014-02-19 21:46:49 +00:00
|
|
|
import android.provider.Telephony;
|
2015-08-24 22:24:31 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-05-18 15:38:48 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2014-11-12 19:15:05 +00:00
|
|
|
import android.telephony.TelephonyManager;
|
2013-02-08 19:57:54 +00:00
|
|
|
import android.text.Spannable;
|
|
|
|
import android.text.SpannableString;
|
2014-11-12 19:15:05 +00:00
|
|
|
import android.text.TextUtils;
|
2013-02-08 19:57:54 +00:00
|
|
|
import android.text.style.StyleSpan;
|
2014-11-12 19:15:05 +00:00
|
|
|
import android.widget.EditText;
|
2013-02-04 08:13:07 +00:00
|
|
|
|
2015-01-12 04:27:34 +00:00
|
|
|
import org.thoughtcrime.securesms.BuildConfig;
|
2014-12-29 22:01:02 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingLegacyMmsConnection;
|
2014-11-12 19:15:05 +00:00
|
|
|
import org.whispersystems.textsecure.api.util.InvalidNumberException;
|
2014-12-30 09:36:51 +00:00
|
|
|
import org.whispersystems.textsecure.api.util.PhoneNumberFormatter;
|
2013-07-17 02:52:02 +00:00
|
|
|
|
2013-07-19 00:42:45 +00:00
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
2014-11-12 19:15:05 +00:00
|
|
|
import java.io.OutputStream;
|
2013-04-26 18:23:43 +00:00
|
|
|
import java.io.UnsupportedEncodingException;
|
2014-11-12 19:15:05 +00:00
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
import java.security.SecureRandom;
|
2015-05-18 15:38:48 +00:00
|
|
|
import java.util.Arrays;
|
2014-11-12 19:15:05 +00:00
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
2012-12-27 20:00:14 +00:00
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
|
import java.util.concurrent.ThreadPoolExecutor;
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
2013-04-26 18:23:43 +00:00
|
|
|
import ws.com.google.android.mms.pdu.CharacterSets;
|
2013-04-26 01:59:49 +00:00
|
|
|
import ws.com.google.android.mms.pdu.EncodedStringValue;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public class Util {
|
2015-05-22 01:27:31 +00:00
|
|
|
public static Handler handler = new Handler(Looper.getMainLooper());
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
public static String join(Collection<String> list, String delimiter) {
|
|
|
|
StringBuilder result = new StringBuilder();
|
2015-05-22 01:27:31 +00:00
|
|
|
int i = 0;
|
2012-10-01 02:56:29 +00:00
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
for (String item : list) {
|
|
|
|
result.append(item);
|
2012-10-01 02:56:29 +00:00
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
if (++i < list.size())
|
|
|
|
result.append(delimiter);
|
|
|
|
}
|
2012-10-01 02:56:29 +00:00
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
return result.toString();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-10-01 02:56:29 +00:00
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
public static String join(long[] list, String delimeter) {
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
|
|
|
for (int j=0;j<list.length;j++) {
|
|
|
|
if (j != 0) sb.append(delimeter);
|
|
|
|
sb.append(list[j]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb.toString();
|
|
|
|
}
|
|
|
|
|
2012-12-27 20:00:14 +00:00
|
|
|
public static ExecutorService newSingleThreadedLifoExecutor() {
|
2013-01-06 23:46:26 +00:00
|
|
|
ThreadPoolExecutor executor = new ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingLifoQueue<Runnable>());
|
|
|
|
|
|
|
|
executor.execute(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
// Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
|
|
|
|
Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return executor;
|
2012-12-27 20:00:14 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 01:59:49 +00:00
|
|
|
public static boolean isEmpty(EncodedStringValue[] value) {
|
|
|
|
return value == null || value.length == 0;
|
|
|
|
}
|
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
public static boolean isEmpty(EditText value) {
|
|
|
|
return value == null || value.getText() == null || TextUtils.isEmpty(value.getText().toString());
|
2013-02-08 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
public static CharSequence getBoldedString(String value) {
|
2013-02-08 19:57:54 +00:00
|
|
|
SpannableString spanned = new SpannableString(value);
|
2014-11-12 19:15:05 +00:00
|
|
|
spanned.setSpan(new StyleSpan(Typeface.BOLD), 0,
|
2013-02-08 19:57:54 +00:00
|
|
|
spanned.length(),
|
|
|
|
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
|
|
|
|
return spanned;
|
|
|
|
}
|
|
|
|
|
2015-08-24 22:24:31 +00:00
|
|
|
public static @NonNull String toIsoString(byte[] bytes) {
|
2013-04-26 18:23:43 +00:00
|
|
|
try {
|
|
|
|
return new String(bytes, CharacterSets.MIMENAME_ISO_8859_1);
|
|
|
|
} catch (UnsupportedEncodingException e) {
|
2014-04-20 21:18:17 +00:00
|
|
|
throw new AssertionError("ISO_8859_1 must be supported!");
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static byte[] toIsoBytes(String isoString) {
|
|
|
|
try {
|
|
|
|
return isoString.getBytes(CharacterSets.MIMENAME_ISO_8859_1);
|
|
|
|
} catch (UnsupportedEncodingException e) {
|
2014-04-20 21:18:17 +00:00
|
|
|
throw new AssertionError("ISO_8859_1 must be supported!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static byte[] toUtf8Bytes(String utf8String) {
|
|
|
|
try {
|
|
|
|
return utf8String.getBytes(CharacterSets.MIMENAME_UTF_8);
|
|
|
|
} catch (UnsupportedEncodingException e) {
|
|
|
|
throw new AssertionError("UTF_8 must be supported!");
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-29 22:01:02 +00:00
|
|
|
public static void wait(Object lock, long timeout) {
|
2013-07-17 02:52:02 +00:00
|
|
|
try {
|
|
|
|
lock.wait(timeout);
|
|
|
|
} catch (InterruptedException ie) {
|
|
|
|
throw new AssertionError(ie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-26 20:44:15 +00:00
|
|
|
public static String canonicalizeNumber(Context context, String number)
|
|
|
|
throws InvalidNumberException
|
|
|
|
{
|
2013-07-17 22:13:00 +00:00
|
|
|
String localNumber = TextSecurePreferences.getLocalNumber(context);
|
|
|
|
return PhoneNumberFormatter.formatNumber(number, localNumber);
|
|
|
|
}
|
|
|
|
|
2014-10-21 04:06:34 +00:00
|
|
|
public static String canonicalizeNumberOrGroup(Context context, String number)
|
|
|
|
throws InvalidNumberException
|
|
|
|
{
|
|
|
|
if (GroupUtil.isEncodedGroup(number)) return number;
|
|
|
|
else return canonicalizeNumber(context, number);
|
|
|
|
}
|
|
|
|
|
2014-12-12 09:03:24 +00:00
|
|
|
public static byte[] readFully(InputStream in) throws IOException {
|
2014-11-12 19:15:05 +00:00
|
|
|
ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
|
|
|
byte[] buffer = new byte[4096];
|
|
|
|
int read;
|
|
|
|
|
|
|
|
while ((read = in.read(buffer)) != -1) {
|
|
|
|
bout.write(buffer, 0, read);
|
|
|
|
}
|
2013-07-19 00:42:45 +00:00
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
in.close();
|
|
|
|
|
2014-12-12 09:03:24 +00:00
|
|
|
return bout.toByteArray();
|
2014-11-12 19:15:05 +00:00
|
|
|
}
|
|
|
|
|
2014-12-12 09:03:24 +00:00
|
|
|
public static String readFullyAsString(InputStream in) throws IOException {
|
|
|
|
return new String(readFully(in));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long copy(InputStream in, OutputStream out) throws IOException {
|
2014-11-12 19:15:05 +00:00
|
|
|
byte[] buffer = new byte[4096];
|
2013-07-19 00:42:45 +00:00
|
|
|
int read;
|
2014-12-12 09:03:24 +00:00
|
|
|
long total = 0;
|
2013-07-19 00:42:45 +00:00
|
|
|
|
|
|
|
while ((read = in.read(buffer)) != -1) {
|
2014-11-12 19:15:05 +00:00
|
|
|
out.write(buffer, 0, read);
|
2014-12-12 09:03:24 +00:00
|
|
|
total += read;
|
2013-07-19 00:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
in.close();
|
2014-11-12 19:15:05 +00:00
|
|
|
out.close();
|
2014-12-12 09:03:24 +00:00
|
|
|
|
|
|
|
return total;
|
2014-11-12 19:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getDeviceE164Number(Context context) {
|
|
|
|
String localNumber = ((TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE))
|
|
|
|
.getLine1Number();
|
|
|
|
|
|
|
|
if (!TextUtils.isEmpty(localNumber) && !localNumber.startsWith("+"))
|
|
|
|
{
|
|
|
|
if (localNumber.length() == 10) localNumber = "+1" + localNumber;
|
|
|
|
else localNumber = "+" + localNumber;
|
|
|
|
|
|
|
|
return localNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-04-02 17:02:19 +00:00
|
|
|
public static <T> List<List<T>> partition(List<T> list, int partitionSize) {
|
|
|
|
List<List<T>> results = new LinkedList<>();
|
|
|
|
|
|
|
|
for (int index=0;index<list.size();index+=partitionSize) {
|
2015-04-12 17:07:30 +00:00
|
|
|
int subListSize = Math.min(partitionSize, list.size() - index);
|
2015-04-02 17:02:19 +00:00
|
|
|
|
2015-04-12 17:07:30 +00:00
|
|
|
results.add(list.subList(index, index + subListSize));
|
2015-04-02 17:02:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2014-11-12 19:15:05 +00:00
|
|
|
public static List<String> split(String source, String delimiter) {
|
|
|
|
List<String> results = new LinkedList<>();
|
|
|
|
|
|
|
|
if (TextUtils.isEmpty(source)) {
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
String[] elements = source.split(delimiter);
|
|
|
|
Collections.addAll(results, elements);
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static byte[][] split(byte[] input, int firstLength, int secondLength) {
|
|
|
|
byte[][] parts = new byte[2][];
|
|
|
|
|
|
|
|
parts[0] = new byte[firstLength];
|
|
|
|
System.arraycopy(input, 0, parts[0], 0, firstLength);
|
|
|
|
|
|
|
|
parts[1] = new byte[secondLength];
|
|
|
|
System.arraycopy(input, firstLength, parts[1], 0, secondLength);
|
|
|
|
|
|
|
|
return parts;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static byte[] combine(byte[]... elements) {
|
|
|
|
try {
|
|
|
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
|
|
|
|
|
|
|
for (byte[] element : elements) {
|
|
|
|
baos.write(element);
|
|
|
|
}
|
|
|
|
|
|
|
|
return baos.toByteArray();
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static byte[] trim(byte[] input, int length) {
|
|
|
|
byte[] result = new byte[length];
|
|
|
|
System.arraycopy(input, 0, result, 0, result.length);
|
|
|
|
|
|
|
|
return result;
|
2013-07-19 00:42:45 +00:00
|
|
|
}
|
2013-03-26 04:26:03 +00:00
|
|
|
|
2014-01-11 11:34:11 +00:00
|
|
|
@SuppressLint("NewApi")
|
2013-11-11 21:06:58 +00:00
|
|
|
public static boolean isDefaultSmsProvider(Context context){
|
|
|
|
return (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) ||
|
2013-12-03 07:06:16 +00:00
|
|
|
(context.getPackageName().equals(Telephony.Sms.getDefaultSmsPackage(context)));
|
2013-11-11 21:06:58 +00:00
|
|
|
}
|
|
|
|
|
2014-07-23 22:40:45 +00:00
|
|
|
public static int getCurrentApkReleaseVersion(Context context) {
|
|
|
|
try {
|
|
|
|
return context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionCode;
|
|
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
2014-11-12 19:15:05 +00:00
|
|
|
|
|
|
|
public static String getSecret(int size) {
|
|
|
|
byte[] secret = getSecretBytes(size);
|
|
|
|
return Base64.encodeBytes(secret);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static byte[] getSecretBytes(int size) {
|
|
|
|
byte[] secret = new byte[size];
|
|
|
|
getSecureRandom().nextBytes(secret);
|
|
|
|
return secret;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SecureRandom getSecureRandom() {
|
|
|
|
try {
|
|
|
|
return SecureRandom.getInstance("SHA1PRNG");
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-12 04:27:34 +00:00
|
|
|
public static boolean isBuildFresh() {
|
2015-06-14 22:03:53 +00:00
|
|
|
return BuildConfig.BUILD_TIMESTAMP + TimeUnit.DAYS.toMillis(90) > System.currentTimeMillis();
|
2015-01-12 04:27:34 +00:00
|
|
|
}
|
2014-12-29 22:01:02 +00:00
|
|
|
|
|
|
|
@TargetApi(VERSION_CODES.LOLLIPOP)
|
|
|
|
public static boolean isMmsCapable(Context context) {
|
|
|
|
return (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) || OutgoingLegacyMmsConnection.isConnectionPossible(context);
|
|
|
|
}
|
2015-05-15 04:08:37 +00:00
|
|
|
|
2015-05-22 01:27:31 +00:00
|
|
|
public static boolean isMainThread() {
|
|
|
|
return Looper.myLooper() == Looper.getMainLooper();
|
|
|
|
}
|
|
|
|
|
2015-05-15 04:08:37 +00:00
|
|
|
public static void assertMainThread() {
|
2015-05-22 01:27:31 +00:00
|
|
|
if (!isMainThread()) {
|
2015-05-15 04:08:37 +00:00
|
|
|
throw new AssertionError("Main-thread assertion failed.");
|
|
|
|
}
|
|
|
|
}
|
2015-05-18 15:38:48 +00:00
|
|
|
|
2015-05-22 01:27:31 +00:00
|
|
|
public static void runOnMain(Runnable runnable) {
|
|
|
|
if (isMainThread()) runnable.run();
|
|
|
|
else handler.post(runnable);
|
|
|
|
}
|
|
|
|
|
2015-05-18 15:38:48 +00:00
|
|
|
public static boolean equals(@Nullable Object a, @Nullable Object b) {
|
|
|
|
return a == b || (a != null && a.equals(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int hashCode(@Nullable Object... objects) {
|
|
|
|
return Arrays.hashCode(objects);
|
|
|
|
}
|
2015-06-04 21:19:10 +00:00
|
|
|
|
|
|
|
@TargetApi(VERSION_CODES.KITKAT)
|
|
|
|
public static boolean isLowMemory(Context context) {
|
|
|
|
ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
|
|
|
|
|
|
|
|
return (VERSION.SDK_INT >= VERSION_CODES.KITKAT && activityManager.isLowRamDevice()) ||
|
|
|
|
activityManager.getMemoryClass() <= 64;
|
|
|
|
}
|
2015-07-17 19:50:00 +00:00
|
|
|
|
|
|
|
public static int clamp(int value, int min, int max) {
|
|
|
|
return Math.min(Math.max(value, min), max);
|
|
|
|
}
|
2015-07-24 20:22:28 +00:00
|
|
|
|
|
|
|
public static float clamp(float value, float min, float max) {
|
|
|
|
return Math.min(Math.max(value, min), max);
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|