DisplayUtils.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author Bartek Przybylski
  5. * @author David A. Velasco
  6. * Copyright (C) 2011 Bartek Przybylski
  7. * Copyright (C) 2015 ownCloud Inc.
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. package com.owncloud.android.utils;
  23. import android.annotation.TargetApi;
  24. import android.app.Activity;
  25. import android.content.Context;
  26. import android.graphics.Point;
  27. import android.graphics.PorterDuff;
  28. import android.os.Build;
  29. import android.text.format.DateUtils;
  30. import android.view.Display;
  31. import android.widget.ProgressBar;
  32. import android.widget.SeekBar;
  33. import com.owncloud.android.MainApp;
  34. import com.owncloud.android.R;
  35. import com.owncloud.android.datamodel.OCFile;
  36. import java.math.BigDecimal;
  37. import java.net.IDN;
  38. import java.text.DateFormat;
  39. import java.util.Calendar;
  40. import java.util.Date;
  41. import java.util.HashMap;
  42. import java.util.Map;
  43. /**
  44. * A helper class for some string operations.
  45. */
  46. public class DisplayUtils {
  47. private static final String OWNCLOUD_APP_NAME = "ownCloud";
  48. private static final String[] sizeSuffixes = { "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
  49. private static final int[] sizeScales = { 0, 0, 1, 1, 1, 2, 2, 2, 2 };
  50. private static Map<String, String> mimeType2HumanReadable;
  51. static {
  52. mimeType2HumanReadable = new HashMap<String, String>();
  53. // images
  54. mimeType2HumanReadable.put("image/jpeg", "JPEG image");
  55. mimeType2HumanReadable.put("image/jpg", "JPEG image");
  56. mimeType2HumanReadable.put("image/png", "PNG image");
  57. mimeType2HumanReadable.put("image/bmp", "Bitmap image");
  58. mimeType2HumanReadable.put("image/gif", "GIF image");
  59. mimeType2HumanReadable.put("image/svg+xml", "JPEG image");
  60. mimeType2HumanReadable.put("image/tiff", "TIFF image");
  61. // music
  62. mimeType2HumanReadable.put("audio/mpeg", "MP3 music file");
  63. mimeType2HumanReadable.put("application/ogg", "OGG music file");
  64. }
  65. /**
  66. * Converts the file size in bytes to human readable output.
  67. * <ul>
  68. * <li>appends a size suffix, e.g. B, KB, MB etc.</li>
  69. * <li>rounds the size based on the suffix to 0,1 or 2 decimals</li>
  70. * </ul>
  71. *
  72. * @param bytes Input file size
  73. * @return Like something readable like "12 MB"
  74. */
  75. public static String bytesToHumanReadable(long bytes) {
  76. double result = bytes;
  77. int attachedSuff = 0;
  78. while (result > 1024 && attachedSuff < sizeSuffixes.length) {
  79. result /= 1024.;
  80. attachedSuff++;
  81. }
  82. return new BigDecimal(result).setScale(
  83. sizeScales[attachedSuff], BigDecimal.ROUND_HALF_UP) + " " + sizeSuffixes[attachedSuff];
  84. }
  85. /**
  86. * Converts MIME types like "image/jpg" to more end user friendly output
  87. * like "JPG image".
  88. *
  89. * @param mimetype MIME type to convert
  90. * @return A human friendly version of the MIME type
  91. */
  92. public static String convertMIMEtoPrettyPrint(String mimetype) {
  93. if (mimeType2HumanReadable.containsKey(mimetype)) {
  94. return mimeType2HumanReadable.get(mimetype);
  95. }
  96. if (mimetype.split("/").length >= 2)
  97. return mimetype.split("/")[1].toUpperCase() + " file";
  98. return "Unknown type";
  99. }
  100. /**
  101. * Converts Unix time to human readable format
  102. * @param milliseconds that have passed since 01/01/1970
  103. * @return The human readable time for the users locale
  104. */
  105. public static String unixTimeToHumanReadable(long milliseconds) {
  106. Date date = new Date(milliseconds);
  107. DateFormat df = DateFormat.getDateTimeInstance();
  108. return df.format(date);
  109. }
  110. public static int getSeasonalIconId() {
  111. if (Calendar.getInstance().get(Calendar.DAY_OF_YEAR) >= 354 &&
  112. MainApp.getAppContext().getString(R.string.app_name).equals(OWNCLOUD_APP_NAME)) {
  113. return R.drawable.winter_holidays_icon;
  114. } else {
  115. return R.drawable.icon;
  116. }
  117. }
  118. /**
  119. * Converts an internationalized domain name (IDN) in an URL to and from ASCII/Unicode.
  120. * @param url the URL where the domain name should be converted
  121. * @param toASCII if true converts from Unicode to ASCII, if false converts from ASCII to Unicode
  122. * @return the URL containing the converted domain name
  123. */
  124. @TargetApi(Build.VERSION_CODES.GINGERBREAD)
  125. public static String convertIdn(String url, boolean toASCII) {
  126. String urlNoDots = url;
  127. String dots="";
  128. while (urlNoDots.startsWith(".")) {
  129. urlNoDots = url.substring(1);
  130. dots = dots + ".";
  131. }
  132. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) {
  133. // Find host name after '//' or '@'
  134. int hostStart = 0;
  135. if (urlNoDots.indexOf("//") != -1) {
  136. hostStart = url.indexOf("//") + "//".length();
  137. } else if (url.indexOf("@") != -1) {
  138. hostStart = url.indexOf("@") + "@".length();
  139. }
  140. int hostEnd = url.substring(hostStart).indexOf("/");
  141. // Handle URL which doesn't have a path (path is implicitly '/')
  142. hostEnd = (hostEnd == -1 ? urlNoDots.length() : hostStart + hostEnd);
  143. String host = urlNoDots.substring(hostStart, hostEnd);
  144. host = (toASCII ? IDN.toASCII(host) : IDN.toUnicode(host));
  145. return dots + urlNoDots.substring(0, hostStart) + host + urlNoDots.substring(hostEnd);
  146. } else {
  147. return dots + url;
  148. }
  149. }
  150. /**
  151. * Get the file extension if it is on path as type "content://.../DocInfo.doc"
  152. * @param filepath: Content Uri converted to string format
  153. * @return String: fileExtension (type '.pdf'). Empty if no extension
  154. */
  155. public static String getComposedFileExtension(String filepath) {
  156. String fileExtension = "";
  157. String fileNameInContentUri = filepath.substring(filepath.lastIndexOf("/"));
  158. // Check if extension is included in uri
  159. int pos = fileNameInContentUri.lastIndexOf('.');
  160. if (pos >= 0) {
  161. fileExtension = fileNameInContentUri.substring(pos);
  162. }
  163. return fileExtension;
  164. }
  165. @SuppressWarnings("deprecation")
  166. public static CharSequence getRelativeDateTimeString (
  167. Context c, long time, long minResolution, long transitionResolution, int flags
  168. ){
  169. CharSequence dateString = "";
  170. // in Future
  171. if (time > System.currentTimeMillis()){
  172. return DisplayUtils.unixTimeToHumanReadable(time);
  173. }
  174. // < 60 seconds -> seconds ago
  175. else if ((System.currentTimeMillis() - time) < 60 * 1000) {
  176. return c.getString(R.string.file_list_seconds_ago);
  177. } else {
  178. dateString = DateUtils.getRelativeDateTimeString(c, time, minResolution, transitionResolution, flags);
  179. }
  180. String[] parts = dateString.toString().split(",");
  181. if (parts.length == 2) {
  182. if (parts[1].contains(":") && !parts[0].contains(":")) {
  183. return parts[0];
  184. } else if (parts[0].contains(":") && !parts[1].contains(":")) {
  185. return parts[1];
  186. }
  187. }
  188. //dateString contains unexpected format. fallback: use relative date time string from android api as is.
  189. return dateString.toString();
  190. }
  191. /**
  192. * Update the passed path removing the last "/" if it is not the root folder
  193. * @param path
  194. */
  195. public static String getPathWithoutLastSlash(String path) {
  196. // Remove last slash from path
  197. if (path.length() > 1 && path.charAt(path.length()-1) == OCFile.PATH_SEPARATOR.charAt(0)) {
  198. path = path.substring(0, path.length()-1);
  199. }
  200. return path;
  201. }
  202. /**
  203. * Gets the screen size in pixels in a backwards compatible way
  204. *
  205. * @param caller Activity calling; needed to get access to the {@link android.view.WindowManager}
  206. * @return Size in pixels of the screen, or default {@link Point} if caller is null
  207. */
  208. public static Point getScreenSize(Activity caller) {
  209. Point size = new Point();
  210. if (caller != null) {
  211. Display display = caller.getWindowManager().getDefaultDisplay();
  212. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB_MR2) {
  213. display.getSize(size);
  214. } else {
  215. size.set(display.getWidth(), display.getHeight());
  216. }
  217. }
  218. return size;
  219. }
  220. /**
  221. * sets the coloring of the given progress bar to color_accent.
  222. *
  223. * @param progressBar the progress bar to be colored
  224. */
  225. public static void colorPreLollipopHorizontalProgressBar(ProgressBar progressBar) {
  226. if (progressBar != null && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
  227. int color = progressBar.getResources().getColor(R.color.color_accent);
  228. progressBar.getIndeterminateDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  229. progressBar.getProgressDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  230. }
  231. }
  232. /**
  233. * sets the coloring of the given seek bar to color_accent.
  234. *
  235. * @param seekBar the seek bar to be colored
  236. */
  237. public static void colorPreLollipopHorizontalSeekBar(SeekBar seekBar) {
  238. if (seekBar != null && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
  239. colorPreLollipopHorizontalProgressBar(seekBar);
  240. if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
  241. int color = seekBar.getResources().getColor(R.color.color_accent);
  242. seekBar.getThumb().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  243. seekBar.getThumb().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  244. }
  245. }
  246. }
  247. }