1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
|
/*
* purple
*
* Copyright (C) 2002-2003, Herman Bloggs <hermanator12002@yahoo.com>
*
* 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 2 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*
*/
#include <winsock2.h>
#include <ws2tcpip.h>
#include <io.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <sys/timeb.h>
#include <sys/stat.h>
#include <time.h>
#include <glib.h>
#include "config.h"
#include "debug.h"
#include "libc_internal.h"
#if GLIB_CHECK_VERSION(2,6,0)
# include <glib/gstdio.h>
#else
#define g_remove remove
#define g_rename rename
#define g_stat stat
#endif
#ifdef ENABLE_NLS
# include <locale.h>
# include <libintl.h>
# define _(String) ((const char *)dgettext(PACKAGE, String))
# ifdef gettext_noop
# define N_(String) gettext_noop (String)
# else
# define N_(String) (String)
# endif
#else
# include <locale.h>
# define N_(String) (String)
# ifndef _
# define _(String) ((const char *)String)
# endif
# define ngettext(Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural))
# define dngettext(Domain, Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural))
#endif
static char errbuf[1024];
/* helpers */
static int wpurple_is_socket( int fd ) {
int optval;
unsigned int optlen = sizeof(int);
if( (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void*)&optval, &optlen)) == SOCKET_ERROR ) {
int error = WSAGetLastError();
if( error == WSAENOTSOCK )
return FALSE;
else {
purple_debug(PURPLE_DEBUG_WARNING, "wpurple", "wpurple_is_socket: getsockopt returned error: %d\n", error);
return FALSE;
}
}
return TRUE;
}
/* socket.h */
int wpurple_socket (int namespace, int style, int protocol) {
int ret;
ret = socket( namespace, style, protocol );
if( ret == INVALID_SOCKET ) {
errno = WSAGetLastError();
return -1;
}
return ret;
}
int wpurple_connect(int socket, struct sockaddr *addr, u_long length) {
int ret;
ret = connect( socket, addr, length );
if( ret == SOCKET_ERROR ) {
errno = WSAGetLastError();
if( errno == WSAEWOULDBLOCK )
errno = WSAEINPROGRESS;
return -1;
}
return 0;
}
int wpurple_getsockopt(int socket, int level, int optname, void *optval, socklen_t *optlenptr) {
if(getsockopt(socket, level, optname, optval, optlenptr) == SOCKET_ERROR ) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
int wpurple_setsockopt(int socket, int level, int optname, const void *optval, socklen_t optlen) {
if(setsockopt(socket, level, optname, optval, optlen) == SOCKET_ERROR ) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
int wpurple_getsockname(int socket, struct sockaddr *addr, socklen_t *lenptr) {
if(getsockname(socket, addr, lenptr) == SOCKET_ERROR) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
int wpurple_bind(int socket, struct sockaddr *addr, socklen_t length) {
if(bind(socket, addr, length) == SOCKET_ERROR) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
int wpurple_listen(int socket, unsigned int n) {
if(listen(socket, n) == SOCKET_ERROR) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
int wpurple_sendto(int socket, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen) {
int ret;
if ((ret = sendto(socket, buf, len, flags, to, tolen)
) == SOCKET_ERROR) {
errno = WSAGetLastError();
if(errno == WSAEWOULDBLOCK || errno == WSAEINPROGRESS)
errno = EAGAIN;
return -1;
}
return ret;
}
/* fcntl.h */
/* This is not a full implementation of fcntl. Update as needed.. */
int wpurple_fcntl(int socket, int command, ...) {
switch( command ) {
case F_GETFL:
return 0;
case F_SETFL:
{
va_list args;
int val;
int ret=0;
va_start(args, command);
val = va_arg(args, int);
va_end(args);
switch( val ) {
case O_NONBLOCK:
{
u_long imode=1;
ret = ioctlsocket(socket, FIONBIO, &imode);
break;
}
case 0:
{
u_long imode=0;
ret = ioctlsocket(socket, FIONBIO, &imode);
break;
}
default:
errno = EINVAL;
return -1;
}/*end switch*/
if( ret == SOCKET_ERROR ) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
default:
purple_debug(PURPLE_DEBUG_WARNING, "wpurple", "wpurple_fcntl: Unsupported command\n");
return -1;
}/*end switch*/
}
/* sys/ioctl.h */
int wpurple_ioctl(int fd, int command, void* val) {
switch( command ) {
case FIONBIO:
{
if (ioctlsocket(fd, FIONBIO, (unsigned long *)val) == SOCKET_ERROR) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
case SIOCGIFCONF:
{
INTERFACE_INFO InterfaceList[20];
unsigned long nBytesReturned;
if (WSAIoctl(fd, SIO_GET_INTERFACE_LIST,
0, 0, &InterfaceList,
sizeof(InterfaceList), &nBytesReturned,
0, 0) == SOCKET_ERROR) {
errno = WSAGetLastError();
return -1;
} else {
int i;
struct ifconf *ifc = val;
char *tmp = ifc->ifc_buf;
int nNumInterfaces =
nBytesReturned / sizeof(INTERFACE_INFO);
for (i = 0; i < nNumInterfaces; i++) {
INTERFACE_INFO ii = InterfaceList[i];
struct ifreq *ifr = (struct ifreq *) tmp;
struct sockaddr_in *sa = (struct sockaddr_in *) &ifr->ifr_addr;
sa->sin_family = ii.iiAddress.AddressIn.sin_family;
sa->sin_port = ii.iiAddress.AddressIn.sin_port;
sa->sin_addr.s_addr = ii.iiAddress.AddressIn.sin_addr.s_addr;
tmp += sizeof(struct ifreq);
/* Make sure that we can fit in the original buffer */
if (tmp >= (ifc->ifc_buf + ifc->ifc_len + sizeof(struct ifreq))) {
break;
}
}
/* Replace the length with the actually used length */
ifc->ifc_len = ifc->ifc_len - (ifc->ifc_buf - tmp);
return 0;
}
}
default:
errno = EINVAL;
return -1;
}/*end switch*/
}
/* arpa/inet.h */
int wpurple_inet_aton(const char *name, struct in_addr *addr) {
if((addr->s_addr = inet_addr(name)) == INADDR_NONE)
return 0;
else
return 1;
}
/* Thanks to GNU wget for this inet_ntop() implementation */
const char *
wpurple_inet_ntop (int af, const void *src, char *dst, socklen_t cnt)
{
/* struct sockaddr can't accomodate struct sockaddr_in6. */
union {
struct sockaddr_in6 sin6;
struct sockaddr_in sin;
} sa;
DWORD dstlen = cnt;
size_t srcsize;
ZeroMemory(&sa, sizeof(sa));
switch (af)
{
case AF_INET:
sa.sin.sin_family = AF_INET;
sa.sin.sin_addr = *(struct in_addr *) src;
srcsize = sizeof (sa.sin);
break;
case AF_INET6:
sa.sin6.sin6_family = AF_INET6;
sa.sin6.sin6_addr = *(struct in6_addr *) src;
srcsize = sizeof (sa.sin6);
break;
default:
abort ();
}
if (WSAAddressToString ((struct sockaddr *) &sa, srcsize, NULL, dst, &dstlen) != 0)
{
errno = WSAGetLastError();
return NULL;
}
return (const char *) dst;
}
/* netdb.h */
struct hostent* wpurple_gethostbyname(const char *name) {
struct hostent *hp;
if((hp = gethostbyname(name)) == NULL) {
errno = WSAGetLastError();
return NULL;
}
return hp;
}
/* string.h */
char* wpurple_strerror(int errornum) {
if (errornum > WSABASEERR) {
switch(errornum) {
case WSAECONNABORTED: /* 10053 */
g_snprintf(errbuf, sizeof(errbuf), _("Connection interrupted by other software on your computer."));
break;
case WSAECONNRESET: /* 10054 */
g_snprintf(errbuf, sizeof(errbuf), _("Remote host closed connection."));
break;
case WSAETIMEDOUT: /* 10060 */
g_snprintf(errbuf, sizeof(errbuf), _("Connection timed out."));
break;
case WSAECONNREFUSED: /*10061 */
g_snprintf(errbuf, sizeof(errbuf), _("Connection refused."));
break;
default:
g_snprintf(errbuf, sizeof(errbuf), "Windows socket error #%d", errornum);
}
} else {
const char *tmp = g_strerror(errornum);
g_snprintf(errbuf, sizeof(errbuf), tmp);
}
return errbuf;
}
/* unistd.h */
/*
* We need to figure out whether fd is a file or socket handle.
*/
int wpurple_read(int fd, void *buf, unsigned int size) {
int ret;
if(wpurple_is_socket(fd)) {
if((ret = recv(fd, buf, size, 0)) == SOCKET_ERROR) {
errno = WSAGetLastError();
if(errno == WSAEWOULDBLOCK || errno == WSAEINPROGRESS)
errno = EAGAIN;
return -1;
}
#if 0
else if( ret == 0 ) {
/* connection has been gracefully closed */
errno = WSAENOTCONN;
return -1;
}
#endif
else {
/* success reading socket */
return ret;
}
} else {
/* fd is not a socket handle.. pass it off to read */
return _read(fd, buf, size);
}
}
int wpurple_send(int fd, const void *buf, unsigned int size, int flags) {
int ret;
ret = send(fd, buf, size, flags);
if (ret == SOCKET_ERROR) {
errno = WSAGetLastError();
if(errno == WSAEWOULDBLOCK || errno == WSAEINPROGRESS)
errno = EAGAIN;
return -1;
}
return ret;
}
int wpurple_write(int fd, const void *buf, unsigned int size) {
if(wpurple_is_socket(fd))
return wpurple_send(fd, buf, size, 0);
else
return _write(fd, buf, size);
}
int wpurple_recv(int fd, void *buf, size_t len, int flags) {
int ret;
if((ret = recv(fd, buf, len, flags)) == SOCKET_ERROR) {
errno = WSAGetLastError();
if(errno == WSAEWOULDBLOCK || errno == WSAEINPROGRESS)
errno = EAGAIN;
return -1;
} else {
return ret;
}
}
int wpurple_close(int fd) {
int ret;
if( wpurple_is_socket(fd) ) {
if( (ret = closesocket(fd)) == SOCKET_ERROR ) {
errno = WSAGetLastError();
return -1;
}
else
return 0;
}
else
return _close(fd);
}
int wpurple_gethostname(char *name, size_t size) {
if(gethostname(name, size) == SOCKET_ERROR) {
errno = WSAGetLastError();
return -1;
}
return 0;
}
/* sys/time.h */
int wpurple_gettimeofday(struct timeval *p, struct timezone *z) {
int res = 0;
struct _timeb timebuffer;
if (z != 0) {
_tzset();
z->tz_minuteswest = _timezone/60;
z->tz_dsttime = _daylight;
}
if (p != 0) {
_ftime(&timebuffer);
p->tv_sec = timebuffer.time; /* seconds since 1-1-1970 */
p->tv_usec = timebuffer.millitm*1000; /* microseconds */
}
return res;
}
/* stdio.h */
int wpurple_rename (const char *oldname, const char *newname) {
#if GLIB_CHECK_VERSION(2,8,5)
return g_rename(oldname, newname);
#else
/* This is a ugly, but we still compile with 2.6.10 but use newer runtimes */
struct stat oldstat, newstat;
/* As of Glib 2.8.5, g_rename() uses MoveFileEx() with MOVEFILE_REPLACE_EXISTING to behave more sanely */
if (glib_check_version(2, 8, 5) == NULL) {
return g_rename(oldname, newname);
}
if(g_stat(oldname, &oldstat) == 0) {
/* newname exists */
if(g_stat(newname, &newstat) == 0) {
/* oldname is a dir */
if(S_ISDIR(oldstat.st_mode)) {
if(!S_ISDIR(newstat.st_mode)) {
return g_rename(oldname, newname);
}
/* newname is a dir */
else {
/* This is not quite right.. If newname is empty and
is not a sub dir of oldname, newname should be
deleted and oldname should be renamed.
*/
purple_debug(PURPLE_DEBUG_WARNING, "wpurple", "wpurple_rename does not behave here as it should\n");
return g_rename(oldname, newname);
}
}
/* oldname is not a dir */
else {
/* newname is a dir */
if(S_ISDIR(newstat.st_mode)) {
errno = EISDIR;
return -1;
}
/* newname is not a dir */
else {
g_remove(newname);
return g_rename(oldname, newname);
}
}
}
/* newname doesn't exist */
else
return g_rename(oldname, newname);
}
else {
/* oldname doesn't exist */
errno = ENOENT;
return -1;
}
#endif
}
/* time.h */
struct tm * wpurple_localtime_r (const time_t *time, struct tm *resultp) {
struct tm* tmptm;
if(!time)
return NULL;
tmptm = localtime(time);
if(resultp && tmptm)
return memcpy(resultp, tmptm, sizeof(struct tm));
else
return NULL;
}
/*
* Used by purple_utf8_strftime() by way of purple_internal_strftime()
* in src/util.c
*
* Code derived from PostgreSQL src/timezone/pgtz.c:
* http://developer.postgresql.org/cvsweb.cgi/pgsql/src/timezone/pgtz.c
*/
/*
PostgreSQL Database Management System
(formerly known as Postgres, then as Postgres95)
Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
Portions Copyright (c) 1994, The Regents of the University of California
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose, without fee, and without a written agreement
is hereby granted, provided that the above copyright notice and this
paragraph and the following two paragraphs appear in all copies.
IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
static struct
{
char *wstd; /* Windows name of standard timezone */
char *wdst; /* Windows name of daylight timezone */
char *ustd; /* Unix name of standard timezone */
char *udst; /* Unix name of daylight timezone */
} win32_tzmap[] =
{
{
"", "",
"", "",
},
/*
* This list was built from the contents of the registry at
* "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones"
* on Windows XP Professional SP1
*/
{
"Afghanistan Standard Time", "Afghanistan Daylight Time",
"AFT", "AFT"
},
{
"Alaskan Standard Time", "Alaskan Daylight Time",
"AKST", "AKDT"
},
{
"Arab Standard Time", "Arab Daylight Time",
"AST", "AST"
},
{
"Arabian Standard Time", "Arabian Daylight Time",
"GST", "GST"
},
{
"Arabic Standard Time", "Arabic Daylight Time",
"AST", "ADT"
},
{
"Atlantic Standard Time", "Atlantic Daylight Time",
"AST", "ADT"
},
{
"AUS Central Standard Time", "AUS Central Daylight Time",
"CST", "CST"
},
{
"AUS Eastern Standard Time", "AUS Eastern Daylight Time",
"EST", "EST"
},
{
"Azores Standard Time", "Azores Daylight Time",
"AZOT", "AZOST"
},
{
"Canada Central Standard Time", "Canada Central Daylight Time",
"CST", "MDT"
},
{
"Cape Verde Standard Time", "Cape Verde Daylight Time",
"CVT", "CVST"
},
{
"Caucasus Standard Time", "Caucasus Daylight Time",
"AZT", "AZST"
},
{
"Cen. Australia Standard Time", "Cen. Australia Daylight Time",
"CST", "CST"
},
{
"Central America Standard Time", "Central America Daylight Time",
"CST", "CDT"
},
{
"Central Asia Standard Time", "Central Asia Daylight Time",
"BDT", "BDT"
},
{
"Central Europe Standard Time", "Central Europe Daylight Time",
"CET", "CEST"
},
{
"Central European Standard Time", "Central European Daylight Time",
"CET", "CEST"
},
{
"Central Pacific Standard Time", "Central Pacific Daylight Time",
"NCT", "NCST"
},
{
"Central Standard Time", "Central Daylight Time",
"CST", "CDT"
},
{
"China Standard Time", "China Daylight Time",
"HKT", "HKST"
},
{
"Dateline Standard Time", "Dateline Daylight Time",
"GMT+12", "GMT+12"
},
{
"E. Africa Standard Time", "E. Africa Daylight Time",
"EAT", "EAT"
},
{
"E. Australia Standard Time", "E. Australia Daylight Time",
"EST", "EST"
},
{
"E. Europe Standard Time", "E. Europe Daylight Time",
"EET", "EEST"
},
{
"E. South America Standard Time", "E. South America Daylight Time",
"BRT", "BRST"
},
{
"Eastern Standard Time", "Eastern Daylight Time",
"EST", "EDT"
},
{
"Egypt Standard Time", "Egypt Daylight Time",
"EET", "EEST"
},
{
"Ekaterinburg Standard Time", "Ekaterinburg Daylight Time",
"YEKT", "YEKST"
},
{
"Fiji Standard Time", "Fiji Daylight Time",
"FJT", "FJST"
},
{
"FLE Standard Time", "FLE Daylight Time",
"EET", "EEST"
},
{
"GMT Standard Time", "GMT Daylight Time",
"GMT", "IST"
},
{
"Greenland Standard Time", "Greenland Daylight Time",
"WGT", "WGST"
},
{
"Greenwich Standard Time", "Greenwich Daylight Time",
"WET", "WEST"
},
{
"GTB Standard Time", "GTB Daylight Time",
"EET", "EEST"
},
{
"Hawaiian Standard Time", "Hawaiian Daylight Time",
"HST", "HPT"
},
{
"India Standard Time", "India Daylight Time",
"IST", "IST"
},
{
"Iran Standard Time", "Iran Daylight Time",
"IRST", "IRDT"
},
{
"Jerusalem Standard Time", "Jerusalem Daylight Time",
"IST", "IDT"
},
{
"Korea Standard Time", "Korea Daylight Time",
"KST", "KDT"
},
{
"Mexico Standard Time", "Mexico Daylight Time",
"CST", "CDT"
},
{
"Mexico Standard Time", "Mexico Daylight Time",
"BOT", "BOST"
},
{
"Mid-Atlantic Standard Time", "Mid-Atlantic Daylight Time",
"GST", "GST"
},
{
"Mountain Standard Time", "Mountain Daylight Time",
"MST", "MDT"
},
{
"Myanmar Standard Time", "Myanmar Daylight Time",
"MMT", "MMT"
},
{
"N. Central Asia Standard Time", "N. Central Asia Daylight Time",
"ALMT", "ALMST"
},
{
"Nepal Standard Time", "Nepal Daylight Time",
"NPT", "NPT"
},
{
"New Zealand Standard Time", "New Zealand Daylight Time",
"NZST", "NZDT"
},
{
"Newfoundland Standard Time", "Newfoundland Daylight Time",
"NST", "NDT"
},
{
"North Asia East Standard Time", "North Asia East Daylight Time",
"IRKT", "IRKST"
},
{
"North Asia Standard Time", "North Asia Daylight Time",
"KRAT", "KRAST"
},
{
"Pacific SA Standard Time", "Pacific SA Daylight Time",
"CLT", "CLST"
},
{
"Pacific Standard Time", "Pacific Daylight Time",
"PST", "PDT"
},
{
"Romance Standard Time", "Romance Daylight Time",
"CET", "CEST"
},
{
"Russian Standard Time", "Russian Daylight Time",
"MSK", "MSD"
},
{
"SA Eastern Standard Time", "SA Eastern Daylight Time",
"ART", "ARST"
},
{
"SA Pacific Standard Time", "SA Pacific Daylight Time",
"COT", "COST"
},
{
"SA Western Standard Time", "SA Western Daylight Time",
"VET", "VET"
},
{
"Samoa Standard Time", "Samoa Daylight Time",
"SST", "NDT"
},
{
"SE Asia Standard Time", "SE Asia Daylight Time",
"ICT", "ICT"
},
{
"Malay Peninsula Standard Time", "Malay Peninsula Daylight Time",
"MYT", "MALST"
},
{
"South Africa Standard Time", "South Africa Daylight Time",
"CAT", "CAT"
},
{
"Sri Lanka Standard Time", "Sri Lanka Daylight Time",
"LKT", "IST"
},
{
"Taipei Standard Time", "Taipei Daylight Time",
"CST", "CDT"
},
{
"Tasmania Standard Time", "Tasmania Daylight Time",
"EST", "EST"
},
{
"Tokyo Standard Time", "Tokyo Daylight Time",
"JST", "JDT"
},
{
"Tonga Standard Time", "Tonga Daylight Time",
"TOT", "TOST"
},
{
"US Eastern Standard Time", "US Eastern Daylight Time",
"EST", "EDT"
},
{
"US Mountain Standard Time", "US Mountain Daylight Time",
"MST", "MDT"
},
{
"Vladivostok Standard Time", "Vladivostok Daylight Time",
"VLAT", "VLAST"
},
{
"W. Australia Standard Time", "W. Australia Daylight Time",
"WST", "WST"
},
/* Not mapped in PostgreSQL.
*
* I mapped this based on the following information... -- rlaager
* $ cd /usr/share/zoneinfo/Africa
* $ for i in * ; do echo `TZ=Africa/$i date +"%z %Z"` $i ; done | grep +0100
* +0100 CET Algiers
* +0100 WAT Bangui
* +0100 WAT Brazzaville
* +0100 CET Ceuta
* +0100 WAT Douala
* +0100 WAT Kinshasa
* +0100 WAT Lagos
* +0100 WAT Libreville
* +0100 WAT Luanda
* +0100 WAT Malabo
* +0100 WAT Ndjamena
* +0100 WAT Niamey
* +0100 WAT Porto-Novo
* +0100 CET Tunis
**/
{
"W. Central Africa Standard Time", "W. Central Africa Daylight Time",
"WAT", "WAT"
},
{
"W. Europe Standard Time", "W. Europe Daylight Time",
"CET", "CEST"
},
{
"West Asia Standard Time", "West Asia Daylight Time",
"PKT", "PKST"
},
{
"West Pacific Standard Time", "West Pacific Daylight Time",
"ChST", "ChST"
},
{
"Yakutsk Standard Time", "Yakutsk Daylight Time",
"YAKT", "YAKST"
},
{
NULL, NULL,
NULL, NULL
}
};
const char *
wpurple_get_timezone_abbreviation(const struct tm *tm)
{
int i;
char tzname[128];
char localtzname[256];
HKEY rootKey;
int idx;
if (!tm)
{
purple_debug_warning("wpurple", "could not determine current date/time: localtime failed\n");
return "";
}
if (strftime(tzname, sizeof(tzname) - 1, "%Z", tm) == 0)
{
purple_debug_error("wpurple", "timezone name is too long for the buffer\n");
return "";
}
for (i = 0; win32_tzmap[i].wstd != NULL; i++)
{
if (strcmp(tzname, win32_tzmap[i].wstd) == 0)
{
#if 0
purple_debug_info("wpurple", "TZ \"%s\" matches Windows timezone \"%s\"\n",
win32_tzmap[i].ustd, tzname);
#endif
/* Cache the Result */
if (i > 0) {
if (win32_tzmap[0].wstd[0] != '\0')
g_free(win32_tzmap[0].wstd);
win32_tzmap[0].wstd = g_strdup(tzname);
win32_tzmap[0].ustd = win32_tzmap[i].ustd;
}
return win32_tzmap[i].ustd;
}
if (strcmp(tzname, win32_tzmap[i].wdst) == 0)
{
#if 0
purple_debug_info("wpurple", "TZ \"%s\" matches Windows timezone \"%s\"\n",
win32_tzmap[i].udst, tzname);
#endif
/* Cache the Result */
if (i > 0) {
if (win32_tzmap[0].wdst[0] != '\0')
g_free(win32_tzmap[0].wdst);
win32_tzmap[0].wdst = g_strdup(tzname);
win32_tzmap[0].udst = win32_tzmap[i].udst;
}
return win32_tzmap[i].udst;
}
}
/*
* Localized Windows versions return localized names for the timezone.
* Scan the registry to find the English name, and then try matching
* against our table again.
*/
memset(localtzname, 0, sizeof(localtzname));
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE,
"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones",
0,
KEY_READ,
&rootKey) != ERROR_SUCCESS)
{
purple_debug_warning("wpurple", "could not open registry key to identify Windows timezone: %i\n", (int) GetLastError());
return "";
}
for (idx = 0;; idx++)
{
char keyname[256];
char zonename[256];
DWORD namesize;
FILETIME lastwrite;
HKEY key;
LONG r;
memset(keyname, 0, sizeof(keyname));
namesize = sizeof(keyname);
if ((r = RegEnumKeyEx(rootKey,
idx,
keyname,
&namesize,
NULL,
NULL,
NULL,
&lastwrite)) != ERROR_SUCCESS)
{
if (r == ERROR_NO_MORE_ITEMS)
break;
purple_debug_warning("wpurple", "could not enumerate registry subkeys to identify Windows timezone: %i\n", (int) r);
break;
}
if ((r = RegOpenKeyEx(rootKey, keyname, 0, KEY_READ, &key)) != ERROR_SUCCESS)
{
purple_debug_warning("wpurple", "could not open registry subkey to identify Windows timezone: %i\n", (int) r);
break;
}
memset(zonename, 0, sizeof(zonename));
namesize = sizeof(zonename);
if ((r = RegQueryValueEx(key, "Std", NULL, NULL, zonename, &namesize)) != ERROR_SUCCESS)
{
purple_debug_warning("wpurple", "could not query value for 'std' to identify Windows timezone: %i\n", (int) r);
RegCloseKey(key);
break;
}
if (strcmp(tzname, zonename) == 0)
{
/* Matched zone */
strcpy(localtzname, keyname);
RegCloseKey(key);
break;
}
memset(zonename, 0, sizeof(zonename));
namesize = sizeof(zonename);
if ((r = RegQueryValueEx(key, "Dlt", NULL, NULL, zonename, &namesize)) != ERROR_SUCCESS)
{
purple_debug_warning("wpurple", "could not query value for 'dlt' to identify Windows timezone: %i\n", (int) r);
RegCloseKey(key);
break;
}
if (strcmp(tzname, zonename) == 0)
{
/* Matched DST zone */
strcpy(localtzname, keyname);
RegCloseKey(key);
break;
}
RegCloseKey(key);
}
RegCloseKey(rootKey);
if (localtzname[0])
{
/* Found a localized name, so scan for that one too */
for (i = 0; win32_tzmap[i].wstd != NULL; i++)
{
if (strcmp(localtzname, win32_tzmap[i].wstd) == 0)
{
#if 0
purple_debug_info("wpurple", "TZ \"%s\" matches localized Windows timezone \"%s\" (\"%s\")\n",
win32_tzmap[i].ustd, tzname, localtzname);
#endif
/* Cache the Result */
if (win32_tzmap[0].wstd[0] != '\0')
g_free(win32_tzmap[0].wstd);
win32_tzmap[0].wstd = g_strdup(tzname);
win32_tzmap[0].ustd = win32_tzmap[i].ustd;
return win32_tzmap[i].ustd;
}
if (strcmp(localtzname, win32_tzmap[i].wdst) == 0)
{
#if 0
purple_debug_info("wpurple", "TZ \"%s\" matches localized Windows timezone \"%s\" (\"%s\")\n",
win32_tzmap[i].udst, tzname, localtzname);
#endif
/* Cache the Result */
if (win32_tzmap[0].wdst[0] != '\0')
g_free(win32_tzmap[0].wdst);
win32_tzmap[0].wdst = g_strdup(tzname);
win32_tzmap[0].udst = win32_tzmap[i].udst;
return win32_tzmap[i].udst;
}
}
}
purple_debug_warning("wpurple", "could not find a match for Windows timezone \"%s\"\n", tzname);
return "";
}
/**
* g_access:
* @filename: a pathname in the GLib file name encoding (UTF-8 on Windows)
* @mode: as in access()
*
* A wrapper for the POSIX access() function. This function is used to
* test a pathname for one or several of read, write or execute
* permissions, or just existence. On Windows, the underlying access()
* function in the C library only checks the READONLY attribute, and
* does not look at the ACL at all. Software that needs to handle file
* permissions on Windows more exactly should use the Win32 API.
*
* See the C library manual for more details about access().
*
* Returns: zero if the pathname refers to an existing file system
* object that has all the tested permissions, or -1 otherwise or on
* error.
*
* Since: 2.8
*/
int
wpurple_g_access (const gchar *filename,
int mode)
{
#if GLIB_CHECK_VERSION(2,8,0)
return g_access(filename, mode);
#else
if (G_WIN32_HAVE_WIDECHAR_API ())
{
wchar_t *wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL);
int retval;
int save_errno;
if (wfilename == NULL)
{
errno = EINVAL;
return -1;
}
retval = _waccess (wfilename, mode);
save_errno = errno;
g_free (wfilename);
errno = save_errno;
return retval;
}
else
{
gchar *cp_filename = g_locale_from_utf8 (filename, -1, NULL, NULL, NULL);
int retval;
int save_errno;
if (cp_filename == NULL)
{
errno = EINVAL;
return -1;
}
retval = access (cp_filename, mode);
save_errno = errno;
g_free (cp_filename);
errno = save_errno;
return retval;
}
#endif
}
|