123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2016 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.php.net/license/3_01.txt |
- | 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. |
- +----------------------------------------------------------------------+
- | Author: Wez Furlong <wez@thebrainroom.com> |
- +----------------------------------------------------------------------+
- */
- /* $Id$ */
- #ifndef PHP_COM_DOTNET_INTERNAL_H
- #define PHP_COM_DOTNET_INTERNAL_H
- #define _WIN32_DCOM
- #define COBJMACROS
- #include <ocidl.h>
- #include <oleauto.h>
- #include <unknwn.h>
- #include <dispex.h>
- #include "win32/winutil.h"
- typedef struct _php_com_dotnet_object {
- zend_object zo;
- VARIANT v;
- int modified;
- ITypeInfo *typeinfo;
- long code_page;
- zend_class_entry *ce;
- /* associated event sink */
- IDispatch *sink_dispatch;
- GUID sink_id;
- DWORD sink_cookie;
- /* cache for method signatures */
- HashTable *method_cache;
- /* cache for name -> DISPID */
- HashTable *id_of_name_cache;
- } php_com_dotnet_object;
- static inline int php_com_is_valid_object(zval *zv TSRMLS_DC)
- {
- zend_class_entry *ce = Z_OBJCE_P(zv);
- return strcmp("com", ce->name) == 0 ||
- strcmp("dotnet", ce->name) == 0 ||
- strcmp("variant", ce->name) == 0;
- }
- #define CDNO_FETCH(zv) (php_com_dotnet_object*)zend_object_store_get_object(zv TSRMLS_CC)
- #define CDNO_FETCH_VERIFY(obj, zv) do { \
- if (!php_com_is_valid_object(zv TSRMLS_CC)) { \
- php_com_throw_exception(E_UNEXPECTED, "expected a variant object" TSRMLS_CC); \
- return; \
- } \
- obj = (php_com_dotnet_object*)zend_object_store_get_object(zv TSRMLS_CC); \
- } while(0)
- /* com_extension.c */
- TsHashTable php_com_typelibraries;
- zend_class_entry *php_com_variant_class_entry, *php_com_exception_class_entry, *php_com_saproxy_class_entry;
- /* com_handlers.c */
- zend_object_value php_com_object_new(zend_class_entry *ce TSRMLS_DC);
- void php_com_object_clone(void *object, void **clone_ptr TSRMLS_DC);
- void php_com_object_free_storage(void *object TSRMLS_DC);
- zend_object_handlers php_com_object_handlers;
- void php_com_object_enable_event_sink(php_com_dotnet_object *obj, int enable TSRMLS_DC);
- /* com_saproxy.c */
- zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC);
- int php_com_saproxy_create(zval *com_object, zval *proxy_out, zval *index TSRMLS_DC);
- /* com_olechar.c */
- PHP_COM_DOTNET_API char *php_com_olestring_to_string(OLECHAR *olestring,
- uint *string_len, int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API OLECHAR *php_com_string_to_olestring(char *string,
- uint string_len, int codepage TSRMLS_DC);
- /* com_com.c */
- PHP_FUNCTION(com_create_instance);
- PHP_FUNCTION(com_event_sink);
- PHP_FUNCTION(com_create_guid);
- PHP_FUNCTION(com_print_typeinfo);
- PHP_FUNCTION(com_message_pump);
- PHP_FUNCTION(com_load_typelib);
- PHP_FUNCTION(com_get_active_object);
- HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
- WORD flags, DISPPARAMS *disp_params, VARIANT *v, int silent, int allow_noarg TSRMLS_DC);
- HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, char *name,
- int namelen, DISPID *dispid TSRMLS_DC);
- int php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
- WORD flags, VARIANT *v, int nargs, zval **args, int silent, int allow_noarg TSRMLS_DC);
- int php_com_do_invoke(php_com_dotnet_object *obj, char *name, int namelen,
- WORD flags, VARIANT *v, int nargs, zval **args, int allow_noarg TSRMLS_DC);
- int php_com_do_invoke_byref(php_com_dotnet_object *obj, char *name, int namelen,
- WORD flags, VARIANT *v, int nargs, zval ***args TSRMLS_DC);
- /* com_wrapper.c */
- int php_com_wrapper_minit(INIT_FUNC_ARGS);
- PHP_COM_DOTNET_API IDispatch *php_com_wrapper_export_as_sink(zval *val, GUID *sinkid, HashTable *id_to_name TSRMLS_DC);
- PHP_COM_DOTNET_API IDispatch *php_com_wrapper_export(zval *val TSRMLS_DC);
- /* com_persist.c */
- int php_com_persist_minit(INIT_FUNC_ARGS);
- /* com_variant.c */
- PHP_FUNCTION(com_variant_create_instance);
- PHP_FUNCTION(variant_set);
- PHP_FUNCTION(variant_add);
- PHP_FUNCTION(variant_cat);
- PHP_FUNCTION(variant_sub);
- PHP_FUNCTION(variant_mul);
- PHP_FUNCTION(variant_and);
- PHP_FUNCTION(variant_div);
- PHP_FUNCTION(variant_eqv);
- PHP_FUNCTION(variant_idiv);
- PHP_FUNCTION(variant_imp);
- PHP_FUNCTION(variant_mod);
- PHP_FUNCTION(variant_or);
- PHP_FUNCTION(variant_pow);
- PHP_FUNCTION(variant_xor);
- PHP_FUNCTION(variant_abs);
- PHP_FUNCTION(variant_fix);
- PHP_FUNCTION(variant_int);
- PHP_FUNCTION(variant_neg);
- PHP_FUNCTION(variant_not);
- PHP_FUNCTION(variant_round);
- PHP_FUNCTION(variant_cmp);
- PHP_FUNCTION(variant_date_to_timestamp);
- PHP_FUNCTION(variant_date_from_timestamp);
- PHP_FUNCTION(variant_get_type);
- PHP_FUNCTION(variant_set_type);
- PHP_FUNCTION(variant_cast);
- PHP_COM_DOTNET_API void php_com_variant_from_zval_with_type(VARIANT *v, zval *z, VARTYPE type, int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API void php_com_variant_from_zval(VARIANT *v, zval *z, int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API int php_com_zval_from_variant(zval *z, VARIANT *v, int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API int php_com_copy_variant(VARIANT *dst, VARIANT *src TSRMLS_DC);
- /* com_dotnet.c */
- PHP_FUNCTION(com_dotnet_create_instance);
- void php_com_dotnet_rshutdown(TSRMLS_D);
- void php_com_dotnet_mshutdown(TSRMLS_D);
- /* com_misc.c */
- void php_com_throw_exception(HRESULT code, char *message TSRMLS_DC);
- PHP_COM_DOTNET_API void php_com_wrap_dispatch(zval *z, IDispatch *disp,
- int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API void php_com_wrap_variant(zval *z, VARIANT *v,
- int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API int php_com_safearray_get_elem(VARIANT *array, VARIANT *dest, LONG dim1 TSRMLS_DC);
- /* com_typeinfo.c */
- PHP_COM_DOTNET_API ITypeLib *php_com_load_typelib_via_cache(char *search_string,
- int codepage, int *cached TSRMLS_DC);
- PHP_COM_DOTNET_API ITypeLib *php_com_load_typelib(char *search_string, int codepage TSRMLS_DC);
- PHP_COM_DOTNET_API int php_com_import_typelib(ITypeLib *TL, int mode,
- int codepage TSRMLS_DC);
- void php_com_typelibrary_dtor(void *pDest);
- ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, int sink TSRMLS_DC);
- int php_com_process_typeinfo(ITypeInfo *typeinfo, HashTable *id_to_name, int printdef, GUID *guid, int codepage TSRMLS_DC);
- /* com_iterator.c */
- zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC);
- #endif
|