2001-11-15 17:53:40 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
| PHP Version 5 |
|
2001-11-15 17:53:40 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 21:10:10 +08:00
|
|
|
| Copyright (c) 1997-2006 The PHP Group |
|
2001-11-15 17:53:40 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 21:10:10 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2001-11-15 17:53:40 +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 |
|
2001-11-15 17:53:40 +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. |
|
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Author: Andrew Sitnikov <sitnikov@infonet.ee> |
|
2001-11-15 17:53:40 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2002-11-05 04:08:09 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_IPC_H
|
2001-11-15 17:53:40 +08:00
|
|
|
#include <sys/ipc.h>
|
2002-11-05 04:08:09 +08:00
|
|
|
#endif
|
2001-11-15 17:53:40 +08:00
|
|
|
|
2002-10-20 21:35:56 +08:00
|
|
|
#if HAVE_FTOK
|
2001-12-16 18:18:45 +08:00
|
|
|
/* {{{ proto int ftok(string pathname, string proj)
|
|
|
|
Convert a pathname and a project identifier to a System V IPC key */
|
2001-11-15 17:53:40 +08:00
|
|
|
PHP_FUNCTION(ftok)
|
|
|
|
{
|
2005-01-29 00:42:26 +08:00
|
|
|
zval **pathname, **proj;
|
|
|
|
key_t k;
|
2001-11-15 17:53:40 +08:00
|
|
|
|
2005-01-29 00:42:26 +08:00
|
|
|
if(ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &pathname, &proj) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
2001-11-15 17:53:40 +08:00
|
|
|
|
2005-01-29 00:42:26 +08:00
|
|
|
convert_to_string_ex(pathname);
|
|
|
|
convert_to_string_ex(proj);
|
2001-11-15 17:53:40 +08:00
|
|
|
|
2005-01-29 00:42:26 +08:00
|
|
|
if (Z_STRLEN_PP(pathname)==0){
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Pathname is invalid");
|
|
|
|
RETURN_LONG(-1);
|
|
|
|
}
|
2001-11-15 17:53:40 +08:00
|
|
|
|
2005-01-29 00:42:26 +08:00
|
|
|
if (Z_STRLEN_PP(proj)!=1){
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Project identifier is invalid");
|
|
|
|
RETURN_LONG(-1);
|
2001-11-15 17:53:40 +08:00
|
|
|
}
|
|
|
|
|
2005-01-29 00:42:26 +08:00
|
|
|
k = ftok(Z_STRVAL_PP(pathname),Z_STRVAL_PP(proj)[0]);
|
2005-01-29 00:36:46 +08:00
|
|
|
if (k == -1) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "ftok() failed - %s", strerror(errno));
|
|
|
|
}
|
2001-11-15 17:53:40 +08:00
|
|
|
|
2005-01-29 00:42:26 +08:00
|
|
|
RETURN_LONG(k);
|
2001-11-15 17:53:40 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
2002-10-20 21:35:56 +08:00
|
|
|
#endif
|
2001-11-15 17:53:40 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|