Util.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - a simple utility for downloading files faster
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. /* copyright --> */
  22. #ifndef _D_UTIL_H_
  23. #define _D_UTIL_H_
  24. #include "common.h"
  25. #include <string>
  26. #include <utility>
  27. #include <deque>
  28. #include <sys/time.h>
  29. using namespace std;
  30. #define STRTOLL(X) strtoll(X, (char**)NULL, 10);
  31. class Util {
  32. public:
  33. static void split(pair<string, string>& hp, const string& src, char delim);
  34. static string llitos(long long int value, bool comma = false);
  35. static string itos(int value, bool comma = false);
  36. /**
  37. * Computes difference in micro-seconds between tv1 and tv2,
  38. * assuming tv1 is newer than tv2.
  39. * If tv1 is older than tv2, then this method returns 0.
  40. */
  41. static long long int difftv(struct timeval tv1, struct timeval tv2);
  42. static int difftvsec(struct timeval tv1, struct timeval tv2);
  43. /**
  44. * Take a string src which is a deliminated list and add its elements
  45. * into result. result is not cleared before conversion begins.
  46. */
  47. static void slice(Strings& result, const string& src, char delim);
  48. static string trim(const string& src);
  49. static bool startsWith(const string& target, const string& part);
  50. static bool endsWith(const string& target, const string& part);
  51. static string replace(const string& target, const string& oldstr, const string& newstr);
  52. static string urlencode(const unsigned char* target, int len);
  53. static string toHex(const unsigned char* src, int len);
  54. static FILE* openFile(const string& filename, const string& mode);
  55. static void fileCopy(const string& destFile, const string& src);
  56. static void rangedFileCopy(const string& destFile, const string& src, long long int srcOffset, long long int length);
  57. static bool isPowerOf(int num, int base);
  58. static string secfmt(int sec);
  59. static int expandBuffer(char** pbuf, int curLength, int newLength);
  60. static void unfoldRange(const string& src, Integers& range);
  61. };
  62. #endif // _D_UTIL_H_