X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Ftypes%2Fdecl_abi.h;h=331ee9294219c3609a7876cad746b4675fbfb095;hp=48731a3d2632d705dced4311734e7167c865dc9e;hb=2fa436074ca9a5e87f39b696de832fa2188fcfc6;hpb=5359ad5c181e5772f350fe1cba060cbed3a05b91 diff --git a/src/types/decl_abi.h b/src/types/decl_abi.h index 48731a3..331ee92 100644 --- a/src/types/decl_abi.h +++ b/src/types/decl_abi.h @@ -1,23 +1,42 @@ -#ifndef _PSI_TYPES_DECL_ABI_H -#define _PSI_TYPES_DECL_ABI_H +/******************************************************************************* + Copyright (c) 2016, Michael Wallner . + All rights reserved. -typedef struct decl_abi { + 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_DECL_ABI_H +#define PSI_TYPES_DECL_ABI_H + +struct psi_token; +struct psi_data; + +struct psi_decl_abi { struct psi_token *token; - char *convention; -} decl_abi; - -static inline decl_abi *init_decl_abi(const char *convention) { - decl_abi *abi = calloc(1, sizeof(*abi)); - abi->convention = strdup(convention); - return abi; -} - -static inline void free_decl_abi(decl_abi *abi) { - if (abi->token) { - free(abi->token); - } - free(abi->convention); - free(abi); -} + zend_string *convention; +}; + +struct psi_decl_abi *psi_decl_abi_init(zend_string *convention); +void psi_decl_abi_free(struct psi_decl_abi **abi_ptr); +void psi_decl_abi_dump(int fd, struct psi_decl_abi *abi); +bool psi_decl_abi_validate(struct psi_data *data, struct psi_decl_abi *abi); #endif