/* -*- Mode: c; c-basic-offset: 2 -*- * * args.c - Flickcurl method arg functions * * Copyright (C) 2007, David Beckett http://purl.org/net/dajobe/ * * This file is licensed under the following three licenses as alternatives: * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version * 2. GNU General Public License (GPL) V2 or any newer version * 3. Apache License, V2.0 or any newer version * * You may not use this file except in compliance with at least one of * the above three licenses. * * See LICENSE.html or LICENSE.txt at the top of this package for the * complete terms and further detail along with the license texts for * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. * */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #include #include void flickcurl_free_arg(flickcurl_arg *arg) { if(arg->name) free(arg->name); if(arg->description) free(arg->description); free(arg); } flickcurl_arg** flickcurl_build_args(flickcurl* fc, xmlXPathContextPtr xpathCtx, const xmlChar* xpathExpr, int* arg_count_p) { flickcurl_arg** args=NULL; int nodes_count; int arg_count; int i; xmlXPathObjectPtr xpathObj=NULL; xmlNodeSetPtr nodes; /* Now do args */ xpathObj = xmlXPathEvalExpression(xpathExpr, xpathCtx); if(!xpathObj) { flickcurl_error(fc, "Unable to evaluate XPath expression \"%s\"", xpathExpr); fc->failed=1; goto tidy; } nodes=xpathObj->nodesetval; /* This is a max size - it can include nodes that are CDATA */ nodes_count=xmlXPathNodeSetGetLength(nodes); args=(flickcurl_arg**)calloc(sizeof(flickcurl_arg*), nodes_count+1); for(i=0, arg_count=0; i < nodes_count; i++) { xmlNodePtr node=nodes->nodeTab[i]; xmlAttr* attr; flickcurl_arg* arg; xmlNodePtr chnode; if(node->type != XML_ELEMENT_NODE) { flickcurl_error(fc, "Got unexpected node type %d", node->type); fc->failed=1; break; } arg=(flickcurl_arg*)calloc(sizeof(flickcurl_arg), 1); for(attr=node->properties; attr; attr=attr->next) { const char *attr_name=(const char*)attr->name; if(!strcmp(attr_name, "name")) { arg->name=(char*)malloc(strlen((const char*)attr->children->content)+1); strcpy(arg->name, (const char*)attr->children->content); } else if(!strcmp(attr_name, "optional")) arg->optional=atoi((const char*)attr->children->content); } /* Walk children nodes for description text */ for(chnode=node->children; chnode; chnode=chnode->next) { if(chnode->type == XML_TEXT_NODE) { arg->description=(char*)malloc(strlen((const char*)chnode->content)+1); strcpy(arg->description, (const char*)chnode->content); break; } } #if FLICKCURL_DEBUG > 1 fprintf(stderr, "arg: name %s %s description '%s'\n", arg->name, (arg->optional? "" : "(required)"), arg->description); #endif args[arg_count++]=arg; } /* for nodes */ if(arg_count_p) *arg_count_p=arg_count; tidy: if(xpathObj) xmlXPathFreeObject(xpathObj); return args; }