print.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Copyright (c) Ian F. Darwin 1986-1995.
  3. * Software written by Ian F. Darwin and others;
  4. * maintained 1995-present by Christos Zoulas and others.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice immediately at the beginning of the file, without modification,
  11. * this list of conditions, and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. /*
  29. * print.c - debugging printout routines
  30. */
  31. #define _GNU_SOURCE
  32. #include "php.h"
  33. #include "file.h"
  34. #include "cdf.h"
  35. #ifndef lint
  36. FILE_RCSID("@(#)$File: print.c,v 1.76 2013/02/26 18:25:00 christos Exp $")
  37. #endif /* lint */
  38. #include <stdio.h>
  39. #include <string.h>
  40. #include <stdarg.h>
  41. #include <stdlib.h>
  42. #ifdef HAVE_UNISTD_H
  43. #include <unistd.h>
  44. #endif
  45. #include <time.h>
  46. #ifdef PHP_WIN32
  47. # define asctime_r php_asctime_r
  48. # define ctime_r php_ctime_r
  49. #endif
  50. #define SZOF(a) (sizeof(a) / sizeof(a[0]))
  51. /*VARARGS*/
  52. protected void
  53. file_magwarn(struct magic_set *ms, const char *f, ...)
  54. {
  55. va_list va;
  56. char *expanded_format = NULL;
  57. int expanded_len;
  58. TSRMLS_FETCH();
  59. va_start(va, f);
  60. expanded_len = vasprintf(&expanded_format, f, va);
  61. va_end(va);
  62. if (expanded_len >= 0 && expanded_format) {
  63. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Warning: %s", expanded_format);
  64. free(expanded_format);
  65. }
  66. }
  67. protected const char *
  68. file_fmttime(uint64_t v, int flags, char *buf)
  69. {
  70. char *pp;
  71. time_t t = (time_t)v;
  72. struct tm *tm;
  73. if (flags & FILE_T_WINDOWS) {
  74. struct timeval ts;
  75. cdf_timestamp_to_timespec(&ts, t);
  76. t = ts.tv_sec;
  77. }
  78. if (flags & FILE_T_LOCAL) {
  79. pp = ctime_r(&t, buf);
  80. } else {
  81. #ifndef HAVE_DAYLIGHT
  82. private int daylight = 0;
  83. #ifdef HAVE_TM_ISDST
  84. private time_t now = (time_t)0;
  85. if (now == (time_t)0) {
  86. struct tm *tm1;
  87. (void)time(&now);
  88. tm1 = localtime(&now);
  89. if (tm1 == NULL)
  90. goto out;
  91. daylight = tm1->tm_isdst;
  92. }
  93. #endif /* HAVE_TM_ISDST */
  94. #endif /* HAVE_DAYLIGHT */
  95. if (daylight)
  96. t += 3600;
  97. tm = gmtime(&t);
  98. if (tm == NULL)
  99. goto out;
  100. pp = asctime_r(tm, buf);
  101. }
  102. if (pp == NULL)
  103. goto out;
  104. pp[strcspn(pp, "\n")] = '\0';
  105. return pp;
  106. out:
  107. return strcpy(buf, "*Invalid time*");
  108. }