- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <malloc.h>
- #include <assert.h>
- #include <stdarg.h>
- #include <stdint.h>
- #include <time.h>
- #include <limits.h>
- #include <string.h>
- #include <unistd.h>
- #include <stddef.h>
- #include <errno.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #define false 0
- #define true 1
- #define TCFILEMODE 00644 // permission of a creating file
- #define TCIOBUFSIZ 16384 // size of an I/O buffer
- #define TCXSTRUNIT 12 // allocation unit size of an extensible string
- #define MYMALLOC malloc
- #define MYCALLOC calloc
- #define MYREALLOC realloc
- #define MYFREE free
- /* Alias of `tcxstrsize'. */
- #define TCXSTRSIZE(TC_xstr) \
- ((TC_xstr)->size)
- /* Alias of `tcrealloc'. */
- #if defined(_MYFASTEST)
- #define TCREALLOC(TC_res, TC_ptr, TC_size) \
- do { \
- (TC_res) = MYREALLOC((TC_ptr), (TC_size)); \
- } while(false)
- #else
- #define TCREALLOC(TC_res, TC_ptr, TC_size) \
- do { \
- if(!((TC_res) = MYREALLOC((TC_ptr), (TC_size)))) ; \
- } while(false)
- #endif
- /* Alias of `tcmalloc'. */
- #if defined(_MYFASTEST)
- #define TCMALLOC(TC_res, TC_size) \
- do { \
- (TC_res) = MYMALLOC(TC_size); \
- } while(false)
- #else
- #define TCMALLOC(TC_res, TC_size) \
- do { \
- if(!((TC_res) = MYMALLOC(TC_size))); \
- } while(false)
- #endif
- /* Alias of `tcfree'. */
- #define TCFREE(TC_ptr) \
- do { \
- MYFREE(TC_ptr); \
- } while(false)
- /* Convert an extensible string object into a usual allocated region. */
- typedef struct { /* type of structure for an extensible string object */
- char *ptr; /* pointer to the region */
- int size; /* size of the region */
- int asize; /* size of the allocated region */
- } TCXSTR;
- /* Alias of `tcxstrcat'. */
- #define TCXSTRCAT(TC_xstr, TC_ptr, TC_size) \
- do { \
- int TC_mysize = (TC_size); \
- int TC_nsize = (TC_xstr)->size + TC_mysize + 1; \
- if((TC_xstr)->asize < TC_nsize){ \
- while((TC_xstr)->asize < TC_nsize){ \
- (TC_xstr)->asize *= 2; \
- if((TC_xstr)->asize < TC_nsize) (TC_xstr)->asize = TC_nsize; \
- } \
- TCREALLOC((TC_xstr)->ptr, (TC_xstr)->ptr, (TC_xstr)->asize); \
- } \
- memcpy((TC_xstr)->ptr + (TC_xstr)->size, (TC_ptr), TC_mysize); \
- (TC_xstr)->size += TC_mysize; \
- (TC_xstr)->ptr[(TC_xstr)->size] = '\0'; \
- } while(false)
- void *tcxstrtomalloc(TCXSTR *xstr){
- assert(xstr);
- char *ptr;
- ptr = xstr->ptr;
- TCFREE(xstr);
- return ptr;
- }
- /* Create an extensible string object. */
- TCXSTR *tcxstrnew(void){
- TCXSTR *xstr;
- xstr = malloc(sizeof(*xstr));
- xstr->ptr = malloc(TCXSTRUNIT);
- xstr->size = 0;
- xstr->asize = TCXSTRUNIT;
- xstr->ptr[0] = '\0';
- return xstr;
- }
- /* Get the larger value of two integers. */
- long tclmax(long a, long b){
- return (a > b) ? a : b;
- }
- /* Get the lesser value of two integers. */
- long tclmin(long a, long b){
- return (a < b) ? a : b;
- }
- /* Read whole data of a file. */
- void *tcreadfile(const char *path, int limit, int *sp){
- int fd = path ? open(path, O_RDONLY, TCFILEMODE) : 0;
- if(fd == -1) return NULL;
- if(fd == 0){
- TCXSTR *xstr = tcxstrnew();
- char buf[TCIOBUFSIZ];
- limit = limit > 0 ? limit : INT_MAX;
- int rsiz;
- while((rsiz = read(fd, buf, tclmin(TCIOBUFSIZ, limit))) > 0){
- TCXSTRCAT(xstr, buf, rsiz);
- limit -= rsiz;
- }
- if(sp) *sp = TCXSTRSIZE(xstr);
- return tcxstrtomalloc(xstr);
- }
- struct stat sbuf;
- if(fstat(fd, &sbuf) == -1 || !S_ISREG(sbuf.st_mode)){
- close(fd);
- return NULL;
- }
- limit = limit > 0 ? tclmin((int)sbuf.st_size, limit) : sbuf.st_size;
- char *buf;
- TCMALLOC(buf, sbuf.st_size + 1);
- char *wp = buf;
- int rsiz;
- while((rsiz = read(fd, wp, limit - (wp - buf))) > 0){
- wp += rsiz;
- }
- *wp = '\0';
- close(fd);
- if(sp) *sp = wp - buf;
- return buf;
- }
- int main()
- {
- char *numstr = tcreadfile("/ttserver/ttserver.pid", -1, NULL);
- }
复制代码 哪位大侠解释一下open函数返回0是什么意思啊,为什么等于0的时候要用结构体存取结构体中的内容 |
|