mirror of https://github.com/grpc/grpc.git
Merge pull request #4 from stanley-cheung/php_creds_api_change
PHP: Core credentials API refactoringreviewable/pr3765/r1
commit
f3d051a409
10 changed files with 309 additions and 105 deletions
@ -0,0 +1,138 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2015, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * 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. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT |
||||
* OWNER 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. |
||||
* |
||||
*/ |
||||
|
||||
#include "channel_credentials.h" |
||||
#include "call_credentials.h" |
||||
|
||||
#ifdef HAVE_CONFIG_H |
||||
#include "config.h" |
||||
#endif |
||||
|
||||
#include <php.h> |
||||
#include <php_ini.h> |
||||
#include <ext/standard/info.h> |
||||
#include <ext/spl/spl_exceptions.h> |
||||
#include "php_grpc.h" |
||||
|
||||
#include <zend_exceptions.h> |
||||
#include <zend_hash.h> |
||||
|
||||
#include <grpc/grpc.h> |
||||
#include <grpc/grpc_security.h> |
||||
|
||||
zend_class_entry *grpc_ce_call_credentials; |
||||
|
||||
/* Frees and destroys an instance of wrapped_grpc_call_credentials */ |
||||
void free_wrapped_grpc_call_credentials(void *object TSRMLS_DC) { |
||||
wrapped_grpc_call_credentials *creds = |
||||
(wrapped_grpc_call_credentials *)object; |
||||
if (creds->wrapped != NULL) { |
||||
grpc_call_credentials_release(creds->wrapped); |
||||
} |
||||
efree(creds); |
||||
} |
||||
|
||||
/* Initializes an instance of wrapped_grpc_call_credentials to be
|
||||
* associated with an object of a class specified by class_type */ |
||||
zend_object_value create_wrapped_grpc_call_credentials( |
||||
zend_class_entry *class_type TSRMLS_DC) { |
||||
zend_object_value retval; |
||||
wrapped_grpc_call_credentials *intern; |
||||
|
||||
intern = (wrapped_grpc_call_credentials *)emalloc( |
||||
sizeof(wrapped_grpc_call_credentials)); |
||||
memset(intern, 0, sizeof(wrapped_grpc_call_credentials)); |
||||
|
||||
zend_object_std_init(&intern->std, class_type TSRMLS_CC); |
||||
object_properties_init(&intern->std, class_type); |
||||
retval.handle = zend_objects_store_put( |
||||
intern, (zend_objects_store_dtor_t)zend_objects_destroy_object, |
||||
free_wrapped_grpc_call_credentials, NULL TSRMLS_CC); |
||||
retval.handlers = zend_get_std_object_handlers(); |
||||
return retval; |
||||
} |
||||
|
||||
zval *grpc_php_wrap_call_credentials(grpc_call_credentials *wrapped) { |
||||
zval *credentials_object; |
||||
MAKE_STD_ZVAL(credentials_object); |
||||
object_init_ex(credentials_object, grpc_ce_call_credentials); |
||||
wrapped_grpc_call_credentials *credentials = |
||||
(wrapped_grpc_call_credentials *)zend_object_store_get_object( |
||||
credentials_object TSRMLS_CC); |
||||
credentials->wrapped = wrapped; |
||||
return credentials_object; |
||||
} |
||||
|
||||
/**
|
||||
* Create composite credentials from two existing credentials. |
||||
* @param CallCredentials cred1 The first credential |
||||
* @param CallCredentials cred2 The second credential |
||||
* @return CallCredentials The new composite credentials object |
||||
*/ |
||||
PHP_METHOD(CallCredentials, createComposite) { |
||||
zval *cred1_obj; |
||||
zval *cred2_obj; |
||||
|
||||
/* "OO" == 3 Objects */ |
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "OO", &cred1_obj, |
||||
grpc_ce_call_credentials, &cred2_obj, |
||||
grpc_ce_call_credentials) == FAILURE) { |
||||
zend_throw_exception(spl_ce_InvalidArgumentException, |
||||
"createComposite expects 2 CallCredentials", |
||||
1 TSRMLS_CC); |
||||
return; |
||||
} |
||||
wrapped_grpc_call_credentials *cred1 = |
||||
(wrapped_grpc_call_credentials *)zend_object_store_get_object( |
||||
cred1_obj TSRMLS_CC); |
||||
wrapped_grpc_call_credentials *cred2 = |
||||
(wrapped_grpc_call_credentials *)zend_object_store_get_object( |
||||
cred2_obj TSRMLS_CC); |
||||
grpc_call_credentials *creds = |
||||
grpc_composite_call_credentials_create(cred1->wrapped, cred2->wrapped, |
||||
NULL); |
||||
zval *creds_object = grpc_php_wrap_call_credentials(creds); |
||||
RETURN_DESTROY_ZVAL(creds_object); |
||||
} |
||||
|
||||
static zend_function_entry call_credentials_methods[] = { |
||||
PHP_ME(CallCredentials, createComposite, NULL, |
||||
ZEND_ACC_PUBLIC | ZEND_ACC_STATIC) |
||||
PHP_FE_END}; |
||||
|
||||
void grpc_init_call_credentials(TSRMLS_D) { |
||||
zend_class_entry ce; |
||||
INIT_CLASS_ENTRY(ce, "Grpc\\CallCredentials", call_credentials_methods); |
||||
ce.create_object = create_wrapped_grpc_call_credentials; |
||||
grpc_ce_call_credentials = zend_register_internal_class(&ce TSRMLS_CC); |
||||
} |
@ -0,0 +1,63 @@ |
||||
/*
|
||||
* |
||||
* Copyright 2015, Google Inc. |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* * 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. |
||||
* * Neither the name of Google Inc. nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT |
||||
* OWNER 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. |
||||
* |
||||
*/ |
||||
|
||||
#ifndef NET_GRPC_PHP_GRPC_CHANNEL_CREDENTIALS_H_ |
||||
#define NET_GRPC_PHP_GRPC_CHANNEL_CREDENTIALS_H_ |
||||
|
||||
#ifdef HAVE_CONFIG_H |
||||
#include "config.h" |
||||
#endif |
||||
|
||||
#include "php.h" |
||||
#include "php_ini.h" |
||||
#include "ext/standard/info.h" |
||||
#include "php_grpc.h" |
||||
|
||||
#include "grpc/grpc.h" |
||||
#include "grpc/grpc_security.h" |
||||
|
||||
/* Class entry for the ChannelCredentials PHP class */ |
||||
extern zend_class_entry *grpc_ce_channel_credentials; |
||||
|
||||
/* Wrapper struct for grpc_channel_credentials that can be associated
|
||||
* with a PHP object */ |
||||
typedef struct wrapped_grpc_channel_credentials { |
||||
zend_object std; |
||||
|
||||
grpc_channel_credentials *wrapped; |
||||
} wrapped_grpc_channel_credentials; |
||||
|
||||
/* Initializes the ChannelCredentials PHP class */ |
||||
void grpc_init_channel_credentials(TSRMLS_D); |
||||
|
||||
#endif /* NET_GRPC_PHP_GRPC_CHANNEL_CREDENTIALS_H_ */ |
Loading…
Reference in new issue