root/ext/com_dotnet/php_com_dotnet_internal.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. php_com_is_valid_object

   1 /*
   2    +----------------------------------------------------------------------+
   3    | PHP Version 7                                                        |
   4    +----------------------------------------------------------------------+
   5    | Copyright (c) 1997-2016 The PHP Group                                |
   6    +----------------------------------------------------------------------+
   7    | This source file is subject to version 3.01 of the PHP license,      |
   8    | that is bundled with this package in the file LICENSE, and is        |
   9    | available through the world-wide-web at the following url:           |
  10    | http://www.php.net/license/3_01.txt                                  |
  11    | If you did not receive a copy of the PHP license and are unable to   |
  12    | obtain it through the world-wide-web, please send a note to          |
  13    | license@php.net so we can mail you a copy immediately.               |
  14    +----------------------------------------------------------------------+
  15    | Author: Wez Furlong <wez@thebrainroom.com>                           |
  16    +----------------------------------------------------------------------+
  17  */
  18 
  19 /* $Id$ */
  20 
  21 #ifndef PHP_COM_DOTNET_INTERNAL_H
  22 #define PHP_COM_DOTNET_INTERNAL_H
  23 
  24 #define _WIN32_DCOM
  25 #define COBJMACROS
  26 #include <ocidl.h>
  27 #include <oleauto.h>
  28 #include <unknwn.h>
  29 #include <dispex.h>
  30 #include "win32/winutil.h"
  31 
  32 #include "zend_ts_hash.h"
  33 
  34 typedef struct _php_com_dotnet_object {
  35         zend_object zo;
  36 
  37         VARIANT v;
  38         int modified;
  39 
  40         int code_page;
  41 
  42         ITypeInfo *typeinfo;
  43 
  44         zend_class_entry *ce;
  45 
  46         /* associated event sink */
  47         IDispatch *sink_dispatch;
  48         GUID sink_id;
  49         DWORD sink_cookie;
  50 
  51         /* cache for method signatures */
  52         HashTable *method_cache;
  53         /* cache for name -> DISPID */
  54         HashTable *id_of_name_cache;
  55 } php_com_dotnet_object;
  56 
  57 static inline int php_com_is_valid_object(zval *zv)
  58 {
  59         zend_class_entry *ce = Z_OBJCE_P(zv);
  60         return strcmp("com", ce->name->val) == 0 ||
  61                 strcmp("dotnet", ce->name->val) == 0 ||
  62                 strcmp("variant", ce->name->val) == 0;
  63 }
  64 
  65 #define CDNO_FETCH(zv)                  (php_com_dotnet_object*)Z_OBJ_P(zv)
  66 #define CDNO_FETCH_VERIFY(obj, zv)      do { \
  67         if (!php_com_is_valid_object(zv)) { \
  68                 php_com_throw_exception(E_UNEXPECTED, "expected a variant object"); \
  69                 return; \
  70         } \
  71         obj = (php_com_dotnet_object*)Z_OBJ_P(zv); \
  72 } while(0)
  73 
  74 /* com_extension.c */
  75 TsHashTable php_com_typelibraries;
  76 zend_class_entry *php_com_variant_class_entry, *php_com_exception_class_entry, *php_com_saproxy_class_entry;
  77 
  78 /* com_handlers.c */
  79 zend_object* php_com_object_new(zend_class_entry *ce);
  80 zend_object* php_com_object_clone(zval *object);
  81 void php_com_object_free_storage(zend_object *object);
  82 zend_object_handlers php_com_object_handlers;
  83 void php_com_object_enable_event_sink(php_com_dotnet_object *obj, int enable);
  84 
  85 /* com_saproxy.c */
  86 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref);
  87 int php_com_saproxy_create(zval *com_object, zval *proxy_out, zval *index);
  88 
  89 /* com_olechar.c */
  90 PHP_COM_DOTNET_API char *php_com_olestring_to_string(OLECHAR *olestring,
  91                 size_t *string_len, int codepage);
  92 PHP_COM_DOTNET_API OLECHAR *php_com_string_to_olestring(char *string,
  93                 size_t string_len, int codepage);
  94 
  95 
  96 /* com_com.c */
  97 PHP_FUNCTION(com_create_instance);
  98 PHP_FUNCTION(com_event_sink);
  99 PHP_FUNCTION(com_create_guid);
 100 PHP_FUNCTION(com_print_typeinfo);
 101 PHP_FUNCTION(com_message_pump);
 102 PHP_FUNCTION(com_load_typelib);
 103 PHP_FUNCTION(com_get_active_object);
 104 
 105 HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
 106                 WORD flags, DISPPARAMS *disp_params, VARIANT *v, int silent, int allow_noarg);
 107 HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, char *name,
 108                 size_t namelen, DISPID *dispid);
 109 int php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
 110                 WORD flags,     VARIANT *v, int nargs, zval *args, int silent, int allow_noarg);
 111 int php_com_do_invoke(php_com_dotnet_object *obj, char *name, size_t namelen,
 112                 WORD flags,     VARIANT *v, int nargs, zval *args, int allow_noarg);
 113 int php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f,
 114                 WORD flags,     VARIANT *v, int nargs, zval *args);
 115 
 116 /* com_wrapper.c */
 117 int php_com_wrapper_minit(INIT_FUNC_ARGS);
 118 PHP_COM_DOTNET_API IDispatch *php_com_wrapper_export_as_sink(zval *val, GUID *sinkid, HashTable *id_to_name);
 119 PHP_COM_DOTNET_API IDispatch *php_com_wrapper_export(zval *val);
 120 
 121 /* com_persist.c */
 122 int php_com_persist_minit(INIT_FUNC_ARGS);
 123 
 124 /* com_variant.c */
 125 PHP_FUNCTION(com_variant_create_instance);
 126 PHP_FUNCTION(variant_set);
 127 PHP_FUNCTION(variant_add);
 128 PHP_FUNCTION(variant_cat);
 129 PHP_FUNCTION(variant_sub);
 130 PHP_FUNCTION(variant_mul);
 131 PHP_FUNCTION(variant_and);
 132 PHP_FUNCTION(variant_div);
 133 PHP_FUNCTION(variant_eqv);
 134 PHP_FUNCTION(variant_idiv);
 135 PHP_FUNCTION(variant_imp);
 136 PHP_FUNCTION(variant_mod);
 137 PHP_FUNCTION(variant_or);
 138 PHP_FUNCTION(variant_pow);
 139 PHP_FUNCTION(variant_xor);
 140 PHP_FUNCTION(variant_abs);
 141 PHP_FUNCTION(variant_fix);
 142 PHP_FUNCTION(variant_int);
 143 PHP_FUNCTION(variant_neg);
 144 PHP_FUNCTION(variant_not);
 145 PHP_FUNCTION(variant_round);
 146 PHP_FUNCTION(variant_cmp);
 147 PHP_FUNCTION(variant_date_to_timestamp);
 148 PHP_FUNCTION(variant_date_from_timestamp);
 149 PHP_FUNCTION(variant_get_type);
 150 PHP_FUNCTION(variant_set_type);
 151 PHP_FUNCTION(variant_cast);
 152 
 153 PHP_COM_DOTNET_API void php_com_variant_from_zval_with_type(VARIANT *v, zval *z, VARTYPE type, int codepage);
 154 PHP_COM_DOTNET_API void php_com_variant_from_zval(VARIANT *v, zval *z, int codepage);
 155 PHP_COM_DOTNET_API int php_com_zval_from_variant(zval *z, VARIANT *v, int codepage);
 156 PHP_COM_DOTNET_API int php_com_copy_variant(VARIANT *dst, VARIANT *src);
 157 
 158 /* com_dotnet.c */
 159 PHP_FUNCTION(com_dotnet_create_instance);
 160 void php_com_dotnet_rshutdown(void);
 161 void php_com_dotnet_mshutdown(void);
 162 
 163 /* com_misc.c */
 164 void php_com_throw_exception(HRESULT code, char *message);
 165 PHP_COM_DOTNET_API void php_com_wrap_dispatch(zval *z, IDispatch *disp,
 166                 int codepage);
 167 PHP_COM_DOTNET_API void php_com_wrap_variant(zval *z, VARIANT *v,
 168                 int codepage);
 169 PHP_COM_DOTNET_API int php_com_safearray_get_elem(VARIANT *array, VARIANT *dest, LONG dim1);
 170 
 171 /* com_typeinfo.c */
 172 PHP_COM_DOTNET_API ITypeLib *php_com_load_typelib_via_cache(char *search_string,
 173                 int codepage, int *cached);
 174 PHP_COM_DOTNET_API ITypeLib *php_com_load_typelib(char *search_string, int codepage);
 175 PHP_COM_DOTNET_API int php_com_import_typelib(ITypeLib *TL, int mode,
 176                 int codepage);
 177 void php_com_typelibrary_dtor(void *pDest);
 178 ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, int sink);
 179 int php_com_process_typeinfo(ITypeInfo *typeinfo, HashTable *id_to_name, int printdef, GUID *guid, int codepage);
 180 
 181 /* com_iterator.c */
 182 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref);
 183 
 184 
 185 #endif

/* [<][>][^][v][top][bottom][index][help] */