Annotation of libaitcfg/src/queue.c, revision 1.6.4.5

1.2       misho       1: /*************************************************************************
                      2: * (C) 2008 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.6.4.5 ! misho       6: * $Id: queue.c,v 1.6.4.4 2012/04/02 16:00:00 misho Exp $
1.2       misho       7: *
1.6       misho       8: **************************************************************************
                      9: The ELWIX and AITNET software is distributed under the following
                     10: terms:
                     11: 
                     12: All of the documentation and software included in the ELWIX and AITNET
                     13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
                     14: 
1.6.4.1   misho      15: Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
1.6       misho      16:        by Michael Pounov <misho@elwix.org>.  All rights reserved.
                     17: 
                     18: Redistribution and use in source and binary forms, with or without
                     19: modification, are permitted provided that the following conditions
                     20: are met:
                     21: 1. Redistributions of source code must retain the above copyright
                     22:    notice, this list of conditions and the following disclaimer.
                     23: 2. Redistributions in binary form must reproduce the above copyright
                     24:    notice, this list of conditions and the following disclaimer in the
                     25:    documentation and/or other materials provided with the distribution.
                     26: 3. All advertising materials mentioning features or use of this software
                     27:    must display the following acknowledgement:
                     28: This product includes software developed by Michael Pounov <misho@elwix.org>
                     29: ELWIX - Embedded LightWeight unIX and its contributors.
                     30: 4. Neither the name of AITNET nor the names of its contributors
                     31:    may be used to endorse or promote products derived from this software
                     32:    without specific prior written permission.
                     33: 
                     34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
                     35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     44: SUCH DAMAGE.
                     45: */
1.1       misho      46: #include "global.h"
                     47: 
                     48: 
1.6.4.1   misho      49: static inline struct tagCfg *
                     50: _selectAttribute(cfg_root_t * __restrict cfg, const char *csSec, const char *csAttr)
1.1       misho      51: {
1.6.4.1   misho      52:        struct tagCfg fav;
1.1       misho      53: 
                     54:        if (!cfg)
                     55:                return NULL;
1.6.4.1   misho      56:        else
                     57:                memset(&fav, 0, sizeof fav);
1.1       misho      58: 
1.6.4.1   misho      59:        if (csSec && *csSec)
                     60:                AIT_KEY(&fav.cfg_sec) = crcFletcher16((u_short*) csSec, 
                     61:                                io_align(strlen(csSec), 1) / 2);
                     62:        if (csAttr)
                     63:                AIT_KEY(&fav.cfg_attr) = crcFletcher16((u_short*) csAttr, 
                     64:                                io_align(strlen(csAttr), 1) / 2);
                     65: 
                     66:        if (!csAttr)
                     67:                return RB_NFIND(tagRC, cfg, &fav);
                     68:        else
                     69:                return RB_FIND(tagRC, cfg, &fav);
1.1       misho      70: }
                     71: 
1.6.4.1   misho      72: static inline void
                     73: _destroyAttribute(struct tagCfg *av)
1.1       misho      74: {
1.6.4.1   misho      75:        if (!av)
1.1       misho      76:                return;
                     77: 
                     78: }
                     79: 
1.6.4.5 ! misho      80: /* --------------------------------------------------------------- */
1.1       misho      81: 
                     82: /*
1.6.4.1   misho      83:  * cfg_findAttribute() - Find attribute position in config file
                     84:  *
                     85:  * @cfg = Config root
1.1       misho      86:  * @csSec = Config section //[{csSec}]
                     87:  * @csAttr = Config attribute //{csAttr} = ...
1.6.4.2   misho      88:  * return: 0 not found item, -1 error or >0 position in list
1.6.4.1   misho      89:  */
                     90: inline int
                     91: cfg_findAttribute(cfg_root_t * __restrict cfg, const char *csSec, const char *csAttr)
1.1       misho      92: {
1.6.4.1   misho      93:        struct tagCfg *av, fav;
1.1       misho      94:        register int cx = 0;
                     95: 
1.6.4.1   misho      96:        if (!cfg || !csAttr) {
                     97:                cfg_SetErr(EINVAL, "Invalid argument(s)");
1.1       misho      98:                return -1;
1.6.4.1   misho      99:        } else
                    100:                memset(&fav, 0, sizeof fav);
1.1       misho     101: 
1.6.4.1   misho     102:        if (csSec && *csSec)
                    103:                AIT_KEY(&fav.cfg_sec) = crcFletcher16((u_short*) csSec, 
                    104:                                io_align(strlen(csSec), 1) / 2);
                    105:        if (csAttr)
                    106:                AIT_KEY(&fav.cfg_attr) = crcFletcher16((u_short*) csAttr, 
                    107:                                io_align(strlen(csAttr), 1) / 2);
                    108: 
                    109:        SLIST_FOREACH(av, cfg, cfg_next) {
1.1       misho     110:                ++cx;
1.6.4.1   misho     111:                if (!cfg_tree_cmp(&fav, av))
                    112:                        return cx;
1.1       misho     113:        }
                    114: 
                    115:        return 0;
                    116: }
1.6.4.3   misho     117: 
1.1       misho     118: /*
1.6.4.3   misho     119:  * cfg_unsetAttribute() - Unset item from config and free resources
                    120:  *
                    121:  * @cfg = Config root
1.1       misho     122:  * @csSec = Config section //[{csSec}], if NULL unset in *default* section
1.6.4.3   misho     123:  * @csAttr = Config attribute //{csAttr} = ...
                    124:  * return: 0 item not found, -1 error or 1 removed item
                    125:  */
                    126: int
                    127: cfg_unsetAttribute(cfg_root_t * __restrict cfg, const char *csSec, const char *csAttr)
1.1       misho     128: {
1.6.4.3   misho     129:        struct tagCfg *av;
1.1       misho     130: 
                    131:        if (!cfg || !csAttr)
                    132:                return -1;
                    133: 
1.6.4.3   misho     134:        av = _selectAttribute(cfg, csSec, csAttr);
1.1       misho     135:        if (!av)
                    136:                return 0;
                    137: 
1.6.4.3   misho     138:        CFG_RC_LOCK(cfg);
                    139:        RB_REMOVE(tagRC, cfg, av);
                    140:        SLIST_REMOVE(cfg, av, tagCfg, cfg_next);
                    141:        CFG_RC_UNLOCK(cfg);
1.1       misho     142: 
1.6.4.3   misho     143:        AIT_FREE_VAL(&av->cfg_val);
                    144:        AIT_FREE_VAL(&av->cfg_attr);
                    145:        AIT_FREE_VAL(&av->cfg_sec);
                    146:        free(av);
                    147:        return 1;
1.1       misho     148: }
                    149: 
                    150: /*
1.6.4.2   misho     151:  * cfg_setAttribute() - Set item in config or adding new item if not exists
                    152:  *
                    153:  * @cfg = Config root
1.1       misho     154:  * @csSec = Config section //[{csSec}], if NULL set in *default* section
1.6.4.2   misho     155:  * @csAttr = Config attribute //{csAttr} = ...
1.1       misho     156:  * @csVal = Config value //... = {csVal} to setup
1.6.4.2   misho     157:  * return: 0 nothing changed, -1 error, 1 found and updated item or 2 added new item
                    158:  */
                    159: int
                    160: cfg_setAttribute(cfg_root_t * __restrict cfg, const char *csSec, const char *csAttr, const char *csVal)
1.1       misho     161: {
1.6.4.2   misho     162:        struct tagCfg *av, *section;
1.1       misho     163: 
1.6.4.5 ! misho     164:        if (!cfg || !csAttr)
1.1       misho     165:                return -1;
                    166: 
1.6.4.2   misho     167:        av = _selectAttribute(cfg, csSec, csAttr);
1.1       misho     168:        if (!av) {
1.6.4.2   misho     169:                /* adding new element */
                    170:                section = _selectAttribute(cfg, csSec, NULL);
1.1       misho     171: 
1.6.4.2   misho     172:                av = malloc(sizeof(struct tagCfg));
1.1       misho     173:                if (!av) {
                    174:                        LOGERR;
                    175:                        return -1;
                    176:                } else {
1.6.4.2   misho     177:                        memset(av, 0, sizeof(struct tagCfg));
1.1       misho     178: 
1.6.4.2   misho     179:                        CFG_RC_LOCK(cfg);
                    180:                        if (!section)
                    181:                                SLIST_INSERT_HEAD(cfg, av, cfg_next);
                    182:                        else
                    183:                                SLIST_INSERT_AFTER(section, av, cfg_next);
                    184:                        CFG_RC_UNLOCK(cfg);
1.1       misho     185:                }
1.6.4.2   misho     186: 
1.1       misho     187:                if (csSec && *csSec) {
1.6.4.2   misho     188:                        AIT_SET_STR(&av->cfg_sec, csSec);
                    189:                        AIT_KEY(&av->cfg_sec) = crcFletcher16(AIT_GET_LIKE(&av->cfg_sec, u_short*), 
                    190:                                        io_align(AIT_LEN(&av->cfg_sec) - 1, 1) / 2);
1.1       misho     191:                }
1.6.4.5 ! misho     192:                AIT_SET_STR(&av->cfg_val, csVal ? csVal : "");
1.6.4.2   misho     193:                AIT_SET_STR(&av->cfg_attr, csAttr);
                    194:                AIT_KEY(&av->cfg_attr) = crcFletcher16(AIT_GET_LIKE(&av->cfg_attr, u_short*), 
                    195:                                io_align(AIT_LEN(&av->cfg_attr) - 1, 1) / 2);
                    196: 
                    197:                CFG_RC_LOCK(cfg);
                    198:                RB_INSERT(tagRC, cfg, av);
                    199:                CFG_RC_UNLOCK(cfg);
1.1       misho     200:                return 2;
                    201:        }
                    202: 
1.6.4.5 ! misho     203:        if (csVal && strcmp((char*) csVal, (char*) AIT_GET_STR(&av->cfg_val))) {
1.6.4.2   misho     204:                /* Update element */
                    205:                AIT_FREE_VAL(&av->cfg_val);
                    206:                AIT_SET_STR(&av->cfg_val, csVal);
1.1       misho     207:                return 1;
                    208:        }
                    209: 
1.6.4.2   misho     210:        /* Nothing happens ... found & values is equal! */
1.1       misho     211:        return 0;
                    212: }
                    213: 
                    214: /*
1.6.4.1   misho     215:  * cfg_getAttribute() - Get item from config and return value from it
                    216:  *
                    217:  * @cfg = Config root
1.1       misho     218:  * @csSec = Config section //[{csSec}], if NULL unset in *default* section
                    219:  * @csAttr = Config attribute //{csAttr} = ..., if NULL unset as *any* attribute
1.6.4.2   misho     220:  * return: NULL item not found or null parameters, !=NULL value const string
1.6.4.1   misho     221:  */
                    222: inline const char *
                    223: cfg_getAttribute(cfg_root_t * __restrict cfg, const char *csSec, const char *csAttr)
1.1       misho     224: {
1.6.4.1   misho     225:        struct tagCfg *av;
1.1       misho     226: 
                    227:        if (!cfg || !csAttr)
                    228:                return NULL;
                    229: 
1.6.4.1   misho     230:        av = _selectAttribute(cfg, csSec, csAttr);
1.1       misho     231:        if (!av)
                    232:                return NULL;
                    233: 
1.6.4.1   misho     234:        return AIT_GET_STR(&av->cfg_val);
1.1       misho     235: }
                    236: 
                    237: /*
1.6.4.4   misho     238:  * cfg_loadAttribute() - Get guarded attribute, if not found item return *default value*
                    239:  *
                    240:  * @cfg = Config root
1.1       misho     241:  * @csSec = Config section //[{csSec}], if NULL unset in *default* section
1.6.4.4   misho     242:  * @csAttr = Config attribute //{csAttr} = ...
                    243:  * @val = Return buffer for item Value //... = {val}
                    244:  * @csDefValue = *Default Value* for return in //{val}, if not found item in config
                    245:  * return: 0 item not found, -1 error or >0 number of copied bytes in //{val}
                    246:  */
                    247: int
                    248: cfg_loadAttribute(cfg_root_t * __restrict cfg, const char *csSec, const char *csAttr, 
                    249:                ait_val_t * __restrict val, const char *csDefValue)
1.1       misho     250: {
1.6.4.4   misho     251:        struct tagCfg *av;
1.1       misho     252:        int ret = 0;
                    253: 
1.6.4.4   misho     254:        if (!cfg || !csAttr || !val) {
                    255:                cfg_SetErr(EINVAL, "Invalid argument(s)");
1.1       misho     256:                return -1;
1.6.4.4   misho     257:        }
1.1       misho     258: 
1.6.4.4   misho     259:        av = _selectAttribute(cfg, csSec, csAttr);
1.1       misho     260:        if (!av) {
1.6.4.4   misho     261:                /* not found item */
1.1       misho     262:                if (csDefValue) {
1.6.4.4   misho     263:                        AIT_SET_STR(val, csDefValue);
                    264:                        ret = AIT_LEN(val);
1.1       misho     265:                }
                    266:                return ret;
                    267:        }
                    268: 
1.6.4.4   misho     269:        if (AIT_ISEMPTY(&av->cfg_val) || !*AIT_GET_LIKE(&av->cfg_val, char*)) {
                    270:                /* empty value */
1.1       misho     271:                if (csDefValue) {
1.6.4.4   misho     272:                        AIT_SET_STR(val, csDefValue);
                    273:                        ret = AIT_LEN(val);
1.1       misho     274:                }
                    275:        } else {
1.6.4.4   misho     276:                /* copy value */
                    277:                AIT_SET_STR(val, AIT_GET_STR(&av->cfg_val));
                    278:                ret = AIT_LEN(val);
1.1       misho     279:        }
                    280: 
                    281:        return ret;
                    282: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>