X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Ftypes%2Fimpl_func.h;h=f55f10c17c5fa2c3cd01ccff9411ff3d213d4b53;hp=a9d6270956d249d24f2c35c31b3d2b9f4e40be63;hb=a0f437f26cd0f121ee911a55327a68a3544bf15f;hpb=5359ad5c181e5772f350fe1cba060cbed3a05b91 diff --git a/src/types/impl_func.h b/src/types/impl_func.h index a9d6270..f55f10c 100644 --- a/src/types/impl_func.h +++ b/src/types/impl_func.h @@ -1,31 +1,53 @@ -#ifndef _PSI_TYPES_IMPL_FUNC_H -#define _PSI_TYPES_IMPL_FUNC_H +/******************************************************************************* + Copyright (c) 2016, Michael Wallner . + All rights reserved. -typedef struct impl_func { + 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. + + 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 PSI_TYPES_IMPL_FUNC_H +#define PSI_TYPES_IMPL_FUNC_H + +struct psi_data; +struct psi_token; +struct psi_plist; +struct psi_impl; +struct psi_impl_arg; +struct psi_impl_type; + +struct psi_impl_func { struct psi_token *token; - char *name; - impl_args *args; - impl_type *return_type; + zend_string *name; + struct psi_plist *args; + struct psi_impl_arg *vararg; + struct psi_impl_type *return_type; unsigned return_reference:1; -} impl_func; - -static inline impl_func *init_impl_func(char *name, impl_args *args, impl_type *type, int ret_reference) { - impl_func *func = calloc(1, sizeof(*func)); - func->name = strdup(name); - func->args = args ? args : init_impl_args(NULL); - func->return_type = type; - func->return_reference = ret_reference; - return func; -} - -static inline void free_impl_func(impl_func *f) { - if (f->token) { - free(f->token); - } - free_impl_type(f->return_type); - free_impl_args(f->args); - free(f->name); - free(f); -} + unsigned static_memory:1; +}; + +struct psi_impl_func *psi_impl_func_init(zend_string *name, + struct psi_plist *args, struct psi_impl_type *return_type); +void psi_impl_func_free(struct psi_impl_func **f_ptr); +void psi_impl_func_dump(struct psi_dump *dump, struct psi_impl_func *func); +bool psi_impl_func_validate(struct psi_data *data, struct psi_impl_func *func, + struct psi_validate_scope *scope); #endif