mirror of
https://github.com/php-win-ext/pecl-caching-varnish.git
synced 2026-03-24 00:52:07 +01:00
git-svn-id: http://svn.php.net/repository/pecl/varnish/trunk@345222 c90b9560-bf6c-de11-be94-00142212c4b1
102 lines
2.7 KiB
C
102 lines
2.7 KiB
C
/*-
|
|
* Copyright (c) 2011-2018 Anatol Belski
|
|
* All rights reserved.
|
|
*
|
|
* Author: Anatol Belski <ab@php.net>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "php.h"
|
|
#include "php_ini.h"
|
|
#include "ext/standard/info.h"
|
|
#include "php_varnish.h"
|
|
#include "zend_exceptions.h"
|
|
|
|
#include "exception.h"
|
|
|
|
void
|
|
php_varnish_throw_comm_exception(TSRMLS_D)
|
|
{
|
|
zend_throw_exception_ex(
|
|
VarnishException_ce,
|
|
PHP_VARNISH_COMM_EXCEPTION TSRMLS_CC,
|
|
"Varnish communication error"
|
|
);
|
|
}
|
|
|
|
void
|
|
php_varnish_throw_ident_vs_host_exception(TSRMLS_D)
|
|
{
|
|
zend_throw_exception_ex(
|
|
VarnishException_ce,
|
|
PHP_VARNISH_PARAM_EXCEPTION TSRMLS_CC,
|
|
"Ident vs host/port configuration are mutually exclusive"
|
|
);
|
|
}
|
|
|
|
void
|
|
php_varnish_throw_auth_exception(TSRMLS_D)
|
|
{
|
|
zend_throw_exception_ex(
|
|
VarnishException_ce,
|
|
PHP_VARNISH_AUTH_EXCEPTION TSRMLS_CC,
|
|
"Not authenticated"
|
|
);
|
|
}
|
|
|
|
void
|
|
php_varnish_throw_conn_exception(TSRMLS_D)
|
|
{
|
|
zend_throw_exception_ex(
|
|
VarnishException_ce,
|
|
PHP_VARNISH_CONN_EXCEPTION TSRMLS_CC,
|
|
"Not connected to any varnish instance"
|
|
);
|
|
}
|
|
|
|
void
|
|
php_varnish_throw_win_unimpl_exception(char *msg TSRMLS_DC)
|
|
{
|
|
zend_throw_exception_ex(
|
|
VarnishException_ce,
|
|
PHP_VARNISH_UNIMPL_EXCEPTION TSRMLS_CC,
|
|
"%s",
|
|
(NULL != msg) ? msg : "The functionality you're trying to use is not available on windows"
|
|
);
|
|
}
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
* vim<600: noet sw=4 ts=4
|
|
*/
|