1999-04-17 08:37:12 +08:00
|
|
|
|
/*
|
|
|
|
|
+----------------------------------------------------------------------+
|
2009-03-11 07:40:06 +08:00
|
|
|
|
| PHP Version 6 |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
2008-12-31 19:12:40 +08:00
|
|
|
|
| Copyright (c) 1997-2009 The PHP Group |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 21:10:10 +08:00
|
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 21:10:10 +08:00
|
|
|
|
| http://www.php.net/license/3_01.txt |
|
1999-07-16 21:13:16 +08:00
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
2003-03-18 20:06:09 +08:00
|
|
|
|
| Author: Stig S<EFBFBD>ther Bakken <ssb@php.net> |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* $Id$ */
|
1999-04-24 04:06:01 +08:00
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
|
#include "php.h"
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#if HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
2009-04-20 14:55:11 +08:00
|
|
|
|
#include <unicode/ustdio.h>
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-02-11 23:59:30 +08:00
|
|
|
|
#ifdef PHP_WIN32
|
1999-04-17 08:37:12 +08:00
|
|
|
|
#include "win32/time.h"
|
|
|
|
|
#else
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-01 02:05:22 +08:00
|
|
|
|
#include "php_lcg.h"
|
1999-04-17 08:37:12 +08:00
|
|
|
|
#include "uniqid.h"
|
|
|
|
|
|
2008-05-05 05:16:22 +08:00
|
|
|
|
/* {{{ proto string uniqid([string prefix [, bool more_entropy]]) U
|
2001-10-20 02:42:25 +08:00
|
|
|
|
Generates a unique ID */
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
1999-05-16 19:19:26 +08:00
|
|
|
|
PHP_FUNCTION(uniqid)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
{
|
2006-10-07 04:00:37 +08:00
|
|
|
|
zstr prefix = EMPTY_ZSTR;
|
|
|
|
|
int prefix_len = 0;
|
2009-03-27 04:02:53 +08:00
|
|
|
|
zend_uchar str_type = IS_UNICODE;
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
|
zend_bool more_entropy = 1;
|
|
|
|
|
#else
|
2001-10-20 02:26:30 +08:00
|
|
|
|
zend_bool more_entropy = 0;
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#endif
|
2002-12-21 01:06:25 +08:00
|
|
|
|
char *uniqid;
|
2006-10-07 04:00:37 +08:00
|
|
|
|
UChar *u_uniqid;
|
|
|
|
|
int sec, usec;
|
1999-04-17 08:37:12 +08:00
|
|
|
|
struct timeval tv;
|
1999-08-31 23:20:21 +08:00
|
|
|
|
|
2006-10-07 04:00:37 +08:00
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|tb", &prefix,
|
|
|
|
|
&prefix_len, &str_type, &more_entropy) == FAILURE) {
|
2001-10-20 02:26:30 +08:00
|
|
|
|
return;
|
1999-08-31 23:20:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-11 23:59:30 +08:00
|
|
|
|
#if HAVE_USLEEP && !defined(PHP_WIN32)
|
2001-10-20 02:26:30 +08:00
|
|
|
|
if (!more_entropy) {
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#if defined(__CYGWIN__)
|
2006-10-08 21:34:24 +08:00
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "You must use 'more entropy' under CYGWIN");
|
2005-10-19 21:41:36 +08:00
|
|
|
|
RETURN_FALSE;
|
2002-12-21 01:04:33 +08:00
|
|
|
|
#else
|
1999-08-31 23:20:21 +08:00
|
|
|
|
usleep(1);
|
2002-12-21 01:04:33 +08:00
|
|
|
|
#endif
|
1999-08-31 23:20:21 +08:00
|
|
|
|
}
|
|
|
|
|
#endif
|
1999-04-17 08:37:12 +08:00
|
|
|
|
gettimeofday((struct timeval *) &tv, (struct timezone *) NULL);
|
|
|
|
|
sec = (int) tv.tv_sec;
|
2002-12-21 00:34:42 +08:00
|
|
|
|
usec = (int) (tv.tv_usec % 0x100000);
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
|
|
/* The max value usec can have is 0xF423F, so we use only five hex
|
1999-08-31 23:20:21 +08:00
|
|
|
|
* digits for usecs.
|
1999-04-17 08:37:12 +08:00
|
|
|
|
*/
|
2006-10-07 04:00:37 +08:00
|
|
|
|
if (str_type == IS_UNICODE) {
|
|
|
|
|
/* prefix + 8 (sec) + 5 (usec) + 10 (lcg) */
|
|
|
|
|
int buf_len = prefix_len + 8 + 5 + 10 + 1;
|
|
|
|
|
int written;
|
|
|
|
|
|
|
|
|
|
u_uniqid = eumalloc(buf_len + 1);
|
|
|
|
|
if (more_entropy) {
|
|
|
|
|
written = u_sprintf(u_uniqid, "%S%08x%05x%.8f", prefix.u, sec, usec, php_combined_lcg(TSRMLS_C) * 10);
|
|
|
|
|
} else {
|
|
|
|
|
written = u_sprintf(u_uniqid, "%S%08x%05x", prefix.u, sec, usec);
|
|
|
|
|
}
|
|
|
|
|
u_uniqid[written] = 0;
|
|
|
|
|
RETURN_UNICODEL(u_uniqid, written, 0);
|
1999-08-31 23:20:21 +08:00
|
|
|
|
} else {
|
2006-10-07 04:00:37 +08:00
|
|
|
|
if (more_entropy) {
|
|
|
|
|
spprintf(&uniqid, 0, "%s%08x%05x%.8f", prefix.s, sec, usec, php_combined_lcg(TSRMLS_C) * 10);
|
|
|
|
|
} else {
|
|
|
|
|
spprintf(&uniqid, 0, "%s%08x%05x", prefix.s, sec, usec);
|
|
|
|
|
}
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
2006-10-07 04:00:37 +08:00
|
|
|
|
RETURN_STRING(uniqid, 0);
|
|
|
|
|
}
|
1999-04-17 08:37:12 +08:00
|
|
|
|
}
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#endif
|
1999-04-17 08:37:12 +08:00
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Local variables:
|
|
|
|
|
* tab-width: 4
|
|
|
|
|
* c-basic-offset: 4
|
|
|
|
|
* End:
|
2001-09-09 21:29:31 +08:00
|
|
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
|
|
|
* vim<600: sw=4 ts=4
|
1999-04-17 08:37:12 +08:00
|
|
|
|
*/
|