123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version='1.0' encoding='iso-8859-1'?>
- <!doctype html public '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
- <html xmlns='http://www.w3c.org/1999/xhtml' lang='en-us'>
- <head>
- <title>
- xmlread.c
- </title>
- <meta http-equiv='content-type' content='text/html;iso-8859-1'/>
- <meta name='generator' content='motley-tools 1.9.4 13:40:33 Feb 18 2015'/>
- <meta name='author' content='cmaier@cmassoc.net'/>
- <meta name='robots' content='noindex,nofollow'/>
- <link href='toolkit.css' rel='stylesheet' type='text/css'/>
- </head>
- <body>
- <div class='headerlink'>
- [<a href='xmlopen.c.html' title=' xmlopen.c '>PREV</a>]
- [<a href='toolkit.html' title=' Index '>HOME</a>]
- [<a href='xmlscan.c.html' title=' xmlscan.c '>NEXT</a>]
- </div>
- <pre>
- /*====================================================================*
- *
- * NODE * xmlread (NODE * node, char const * filename);
- *
- * node.h
- *
- * open an XML file and return the parse tree root;
- *
- * the entire file is read into a buffer associated with the text
- * member in the root node; the buffer is then split into strings
- * referenced by child nodes, forming a hierarchial string vector;
- *
- * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
- * Copyright (c) 2001-2006 by Charles Maier Associates;
- * Licensed under the Internet Software Consortium License;
- *
- *--------------------------------------------------------------------*/
- #ifndef XMLREAD_SOURCE
- #define XMLREAD_SOURCE
- #include <unistd.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #include <memory.h>
- #include <fcntl.h>
- #include <errno.h>
- #include "../tools/error.h"
- #include "../tools/files.h"
- #include "../nodes/node.h"
- signed xmlread (NODE * node, char const * filename)
- {
- struct stat stat;
- signed fd;
- memset (node, 0, sizeof (NODE));
- if (lstat (filename, &stat))
- {
- error (1, errno, FILE_CANTSTAT, filename);
- }
- if (!(node->text = malloc (stat.st_size + 1)))
- {
- error (1, errno, FILE_CANTLOAD, filename);
- }
- if ((fd = open (filename, O_BINARY|O_RDONLY)) == -1)
- {
- error (1, errno, FILE_CANTOPEN, filename);
- }
- if (read (fd, node->text, stat.st_size) != stat.st_size)
- {
- error (1, errno, FILE_CANTREAD, filename);
- }
- node->text [stat.st_size] = (char)(0);
- close (fd);
- return (0);
- }
- #endif
- </pre>
- <div class='footerlink'>
- [<a href='xmlopen.c.html' title=' xmlopen.c '>PREV</a>]
- [<a href='toolkit.html' title=' Index '>HOME</a>]
- [<a href='xmlscan.c.html' title=' xmlscan.c '>NEXT</a>]
- </div>
- </body>
- </html>
|