ut0ut.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*******************************************************************
  2. Various utilities for Innobase.
  3. (c) 1994, 1995 Innobase Oy
  4. Created 5/11/1994 Heikki Tuuri
  5. ********************************************************************/
  6. #include "ut0ut.h"
  7. #ifdef UNIV_NONINL
  8. #include "ut0ut.ic"
  9. #endif
  10. #include <stdarg.h>
  11. #include <string.h>
  12. #include "ut0sort.h"
  13. #include "trx0trx.h"
  14. ibool ut_always_false = FALSE;
  15. /*********************************************************************
  16. Get the quote character to be used in SQL identifiers.
  17. This definition must match the one in sql/ha_innodb.cc! */
  18. extern
  19. int
  20. mysql_get_identifier_quote_char(
  21. /*============================*/
  22. /* out: quote character to be
  23. used in SQL identifiers; EOF if none */
  24. trx_t* trx, /* in: transaction */
  25. const char* name, /* in: name to print */
  26. ulint namelen);/* in: length of name */
  27. /************************************************************
  28. Gets the high 32 bits in a ulint. That is makes a shift >> 32,
  29. but since there seem to be compiler bugs in both gcc and Visual C++,
  30. we do this by a special conversion. */
  31. ulint
  32. ut_get_high32(
  33. /*==========*/
  34. /* out: a >> 32 */
  35. ulint a) /* in: ulint */
  36. {
  37. ib_longlong i;
  38. i = (ib_longlong)a;
  39. i = i >> 32;
  40. return((ulint)i);
  41. }
  42. /************************************************************
  43. The following function returns elapsed CPU time in milliseconds. */
  44. ulint
  45. ut_clock(void)
  46. {
  47. return((clock() * 1000) / CLOCKS_PER_SEC);
  48. }
  49. /**************************************************************
  50. Returns system time. We do not specify the format of the time returned:
  51. the only way to manipulate it is to use the function ut_difftime. */
  52. ib_time_t
  53. ut_time(void)
  54. /*=========*/
  55. {
  56. return(time(NULL));
  57. }
  58. /**************************************************************
  59. Returns the difference of two times in seconds. */
  60. double
  61. ut_difftime(
  62. /*========*/
  63. /* out: time2 - time1 expressed in seconds */
  64. ib_time_t time2, /* in: time */
  65. ib_time_t time1) /* in: time */
  66. {
  67. return(difftime(time2, time1));
  68. }
  69. /**************************************************************
  70. Prints a timestamp to a file. */
  71. void
  72. ut_print_timestamp(
  73. /*===============*/
  74. FILE*  file) /* in: file where to print */
  75. {
  76. #ifdef __WIN__
  77.    SYSTEMTIME cal_tm;
  78.    GetLocalTime(&cal_tm);
  79.    fprintf(file,"%02d%02d%02d %2d:%02d:%02d",
  80.   (int)cal_tm.wYear % 100,
  81.   (int)cal_tm.wMonth,
  82.   (int)cal_tm.wDay,
  83.   (int)cal_tm.wHour,
  84.   (int)cal_tm.wMinute,
  85.   (int)cal_tm.wSecond);
  86. #else
  87. struct tm  cal_tm;
  88.    struct tm* cal_tm_ptr;
  89.    time_t     tm;
  90.    time(&tm);
  91. #ifdef HAVE_LOCALTIME_R
  92.    localtime_r(&tm, &cal_tm);
  93.    cal_tm_ptr = &cal_tm;
  94. #else
  95.    cal_tm_ptr = localtime(&tm);
  96. #endif
  97.    fprintf(file,"%02d%02d%02d %2d:%02d:%02d",
  98.   cal_tm_ptr->tm_year % 100,
  99.   cal_tm_ptr->tm_mon + 1,
  100.   cal_tm_ptr->tm_mday,
  101.   cal_tm_ptr->tm_hour,
  102.   cal_tm_ptr->tm_min,
  103.   cal_tm_ptr->tm_sec);
  104. #endif
  105. }
  106. /**************************************************************
  107. Sprintfs a timestamp to a buffer, 13..14 chars plus terminating NUL. */
  108. void
  109. ut_sprintf_timestamp(
  110. /*=================*/
  111. char* buf) /* in: buffer where to sprintf */
  112. {
  113. #ifdef __WIN__
  114.    SYSTEMTIME cal_tm;
  115.    GetLocalTime(&cal_tm);
  116.    sprintf(buf, "%02d%02d%02d %2d:%02d:%02d",
  117.   (int)cal_tm.wYear % 100,
  118.   (int)cal_tm.wMonth,
  119.   (int)cal_tm.wDay,
  120.   (int)cal_tm.wHour,
  121.   (int)cal_tm.wMinute,
  122.   (int)cal_tm.wSecond);
  123. #else
  124. struct tm  cal_tm;
  125.    struct tm* cal_tm_ptr;
  126.    time_t     tm;
  127.    time(&tm);
  128. #ifdef HAVE_LOCALTIME_R
  129.    localtime_r(&tm, &cal_tm);
  130.    cal_tm_ptr = &cal_tm;
  131. #else
  132.    cal_tm_ptr = localtime(&tm);
  133. #endif
  134.    sprintf(buf, "%02d%02d%02d %2d:%02d:%02d",
  135.   cal_tm_ptr->tm_year % 100,
  136.   cal_tm_ptr->tm_mon + 1,
  137.   cal_tm_ptr->tm_mday,
  138.   cal_tm_ptr->tm_hour,
  139.   cal_tm_ptr->tm_min,
  140.   cal_tm_ptr->tm_sec);
  141. #endif
  142. }
  143. /**************************************************************
  144. Sprintfs a timestamp to a buffer with no spaces and with ':' characters
  145. replaced by '_'. */
  146. void
  147. ut_sprintf_timestamp_without_extra_chars(
  148. /*=====================================*/
  149. char* buf) /* in: buffer where to sprintf */
  150. {
  151. #ifdef __WIN__
  152.    SYSTEMTIME cal_tm;
  153.    GetLocalTime(&cal_tm);
  154.    sprintf(buf, "%02d%02d%02d_%2d_%02d_%02d",
  155.   (int)cal_tm.wYear % 100,
  156.   (int)cal_tm.wMonth,
  157.   (int)cal_tm.wDay,
  158.   (int)cal_tm.wHour,
  159.   (int)cal_tm.wMinute,
  160.   (int)cal_tm.wSecond);
  161. #else
  162. struct tm  cal_tm;
  163.    struct tm* cal_tm_ptr;
  164.    time_t     tm;
  165.    time(&tm);
  166. #ifdef HAVE_LOCALTIME_R
  167.    localtime_r(&tm, &cal_tm);
  168.    cal_tm_ptr = &cal_tm;
  169. #else
  170.    cal_tm_ptr = localtime(&tm);
  171. #endif
  172.    sprintf(buf, "%02d%02d%02d_%2d_%02d_%02d",
  173.   cal_tm_ptr->tm_year % 100,
  174.   cal_tm_ptr->tm_mon + 1,
  175.   cal_tm_ptr->tm_mday,
  176.   cal_tm_ptr->tm_hour,
  177.   cal_tm_ptr->tm_min,
  178.   cal_tm_ptr->tm_sec);
  179. #endif
  180. }
  181. /**************************************************************
  182. Returns current year, month, day. */
  183. void
  184. ut_get_year_month_day(
  185. /*==================*/
  186. ulint* year, /* out: current year */
  187. ulint* month, /* out: month */
  188. ulint* day) /* out: day */
  189. {
  190. #ifdef __WIN__
  191.    SYSTEMTIME cal_tm;
  192.    GetLocalTime(&cal_tm);
  193.    *year = (ulint)cal_tm.wYear;
  194.    *month = (ulint)cal_tm.wMonth;
  195.    *day = (ulint)cal_tm.wDay;
  196. #else
  197. struct tm  cal_tm;
  198.    struct tm* cal_tm_ptr;
  199.    time_t     tm;
  200.    time(&tm);
  201. #ifdef HAVE_LOCALTIME_R
  202.    localtime_r(&tm, &cal_tm);
  203.    cal_tm_ptr = &cal_tm;
  204. #else
  205.    cal_tm_ptr = localtime(&tm);
  206. #endif
  207.    *year = (ulint)cal_tm_ptr->tm_year + 1900;
  208.    *month = (ulint)cal_tm_ptr->tm_mon + 1;
  209.    *day = (ulint)cal_tm_ptr->tm_mday;
  210. #endif
  211. }
  212. /*****************************************************************
  213. Runs an idle loop on CPU. The argument gives the desired delay
  214. in microseconds on 100 MHz Pentium + Visual C++. */
  215. ulint
  216. ut_delay(
  217. /*=====*/
  218. /* out: dummy value */
  219. ulint delay) /* in: delay in microseconds on 100 MHz Pentium */
  220. {
  221. ulint i, j;
  222. j = 0;
  223. for (i = 0; i < delay * 50; i++) {
  224. j += i;
  225. }
  226. if (ut_always_false) {
  227. ut_always_false = (ibool) j;
  228. }
  229. return(j);
  230. }
  231. /*****************************************************************
  232. Prints the contents of a memory buffer in hex and ascii. */
  233. void
  234. ut_print_buf(
  235. /*=========*/
  236. FILE* file, /* in: file where to print */
  237. const byte* buf, /* in: memory buffer */
  238. ulint len) /* in: length of the buffer */
  239. {
  240. const byte* data;
  241. ulint i;
  242. fprintf(file, " len %lu; hex ", len);
  243. for (data = buf, i = 0; i < len; i++) {
  244. fprintf(file, "%02lx", (ulong)*data++);
  245. }
  246. fputs("; asc ", file);
  247. data = buf;
  248. for (i = 0; i < len; i++) {
  249. int c = (int) *data++;
  250. putc(isprint(c) ? c : ' ', file);
  251. }
  252. putc(';', file);
  253. }
  254. /****************************************************************
  255. Sort function for ulint arrays. */
  256. void
  257. ut_ulint_sort(ulint* arr, ulint* aux_arr, ulint low, ulint high)
  258. /*============================================================*/
  259. {
  260. UT_SORT_FUNCTION_BODY(ut_ulint_sort, arr, aux_arr, low, high,
  261. ut_ulint_cmp);
  262. }
  263. /*****************************************************************
  264. Calculates fast the number rounded up to the nearest power of 2. */
  265. ulint
  266. ut_2_power_up(
  267. /*==========*/
  268. /* out: first power of 2 which is >= n */
  269. ulint n) /* in: number != 0 */
  270. {
  271. ulint res;
  272. res = 1;
  273. ut_ad(n > 0);
  274. while (res < n) {
  275. res = res * 2;
  276. }
  277. return(res);
  278. }
  279. /**************************************************************************
  280. Outputs a NUL-terminated file name, quoted with apostrophes. */
  281. void
  282. ut_print_filename(
  283. /*==============*/
  284. FILE* f, /* in: output stream */
  285. const char* name) /* in: name to print */
  286. {
  287. putc(''', f);
  288. for (;;) {
  289. int c = *name++;
  290. switch (c) {
  291. case 0:
  292. goto done;
  293. case ''':
  294. putc(c, f);
  295. /* fall through */
  296. default:
  297. putc(c, f);
  298. }
  299. }
  300. done:
  301. putc(''', f);
  302. }
  303. /**************************************************************************
  304. Outputs a NUL-terminated string, quoted as an SQL identifier. */
  305. void
  306. ut_print_name(
  307. /*==========*/
  308. FILE* f, /* in: output stream */
  309. trx_t* trx, /* in: transaction */
  310. const char* name) /* in: name to print */
  311. {
  312. ut_print_namel(f, trx, name, strlen(name));
  313. }
  314. /**************************************************************************
  315. Outputs a fixed-length string, quoted as an SQL identifier. */
  316. void
  317. ut_print_namel(
  318. /*==========*/
  319. FILE* f, /* in: output stream */
  320. trx_t* trx, /* in: transaction (NULL=no quotes) */
  321. const char* name, /* in: name to print */
  322. ulint namelen)/* in: length of name */
  323. {
  324. const char* s = name;
  325. const char* e = s + namelen;
  326. int q = mysql_get_identifier_quote_char(trx, name, namelen);
  327. if (q == EOF) {
  328. fwrite(name, 1, namelen, f);
  329. return;
  330. }
  331. putc(q, f);
  332. while (s < e) {
  333. int c = *s++;
  334. if (c == q) {
  335. putc(c, f);
  336. }
  337. putc(c, f);
  338. }
  339. putc(q, f);
  340. }
  341. /**************************************************************************
  342. Catenate files. */
  343. void
  344. ut_copy_file(
  345. /*=========*/
  346. FILE* dest, /* in: output file */
  347. FILE* src) /* in: input file to be appended to output */
  348. {
  349. long len = ftell(src);
  350. char buf[4096];
  351. rewind(src);
  352. do {
  353. size_t maxs =
  354. len < (long) sizeof buf ? (size_t) len : sizeof buf;
  355. size_t size = fread(buf, 1, maxs, src);
  356. fwrite(buf, 1, size, dest);
  357. len -= (long) size;
  358. if (size < maxs) {
  359. break;
  360. }
  361. } while (len > 0);
  362. }