亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? gzio.c

?? funambol windows mobile plugin source code, the source code is taken from the funambol site
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* gzio.c -- IO on .gz files
 * Copyright (C) 1995-2002 Jean-loup Gailly.
 * Copyright (C) 2000-2002 Tenik Co.,Ltd.(for WindowsCE)
 * For conditions of distribution and use, see copyright notice in zlib.h
 *
 * Compile this file with -DNO_DEFLATE to avoid the compression code.
 */

/* @(#) $Id: gzio.c,v 1.1.1.1 2006/12/05 17:55:40 gazza Exp $ */

#ifdef _WIN32_WCE
#include <windows.h>
#else
#include <stdio.h>
#endif

#include "zutil.h"

struct internal_state {int dummy;}; /* for buggy compilers */

#ifndef Z_BUFSIZE
#  ifdef MAXSEG_64K
#    define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
#  else
#    define Z_BUFSIZE 16384
#  endif
#endif
#ifndef Z_PRINTF_BUFSIZE
#  define Z_PRINTF_BUFSIZE 4096
#endif

#define ALLOC(size) malloc(size)
#define TRYFREE(p) {if (p) free(p);}

static int gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */

/* gzip flag byte */
#define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */
#define HEAD_CRC     0x02 /* bit 1 set: header CRC present */
#define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
#define ORIG_NAME    0x08 /* bit 3 set: original file name present */
#define COMMENT      0x10 /* bit 4 set: file comment present */
#define RESERVED     0xE0 /* bits 5..7: reserved */

typedef struct gz_stream {
    z_stream stream;
    int      z_err;   /* error code for last stream operation */
    int      z_eof;   /* set if end of input file */
#ifdef _WIN32_WCE
    HANDLE   file;    /* .gz file */
#else
    FILE     *file;   /* .gz file */
#endif
    Byte     *inbuf;  /* input buffer */
    Byte     *outbuf; /* output buffer */
    uLong    crc;     /* crc32 of uncompressed data */
    char     *msg;    /* error message */
    char     *path;   /* path name for debugging only */
    int      transparent; /* 1 if input file is not a .gz file */
    char     mode;    /* 'w' or 'r' */
    long     startpos; /* start of compressed data in file (header skipped) */
} gz_stream;


local gzFile gz_open      OF((const char *path, const char *mode, int  fd));
local int do_flush        OF((gzFile file, int flush));
local int    get_byte     OF((gz_stream *s));
local void   check_header OF((gz_stream *s));
local int    destroy      OF((gz_stream *s));
#ifdef _WIN32_WCE
local void   putLong      OF((HANDLE file, uLong x));
#else
local void   putLong      OF((FILE *file, uLong x));
#endif
local uLong  getLong      OF((gz_stream *s));

/* ===========================================================================
     Opens a gzip (.gz) file for reading or writing. The mode parameter
   is as in fopen ("rb" or "wb"). The file is given either by file descriptor
   or path name (if fd == -1).
     gz_open return NULL if the file could not be opened or if there was
   insufficient memory to allocate the (de)compression state; errno
   can be checked to distinguish the two cases (if errno is zero, the
   zlib error is Z_MEM_ERROR).
*/
local gzFile gz_open (path, mode, fd)
    const char *path;
    const char *mode;
    int  fd;
{
    int err;
    int level = Z_DEFAULT_COMPRESSION; /* compression level */
    int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */
    char *p = (char*)mode;
    gz_stream *s;
    char fmode[80]; /* copy of mode, without the compression level */
    char *m = fmode;
#ifdef _WIN32_WCE
    char cbuff[10];
    DWORD size;
    TCHAR file[MAX_PATH];
#endif

    if (!path || !mode) return Z_NULL;

    s = (gz_stream *)ALLOC(sizeof(gz_stream));
    if (!s) return Z_NULL;

    s->stream.zalloc = (alloc_func)0;
    s->stream.zfree = (free_func)0;
    s->stream.opaque = (voidpf)0;
    s->stream.next_in = s->inbuf = Z_NULL;
    s->stream.next_out = s->outbuf = Z_NULL;
    s->stream.avail_in = s->stream.avail_out = 0;
#ifdef _WIN32_WCE
    s->file = INVALID_HANDLE_VALUE;
#else
    s->file = NULL;
#endif
    s->z_err = Z_OK;
    s->z_eof = 0;
    s->crc = crc32(0L, Z_NULL, 0);
    s->msg = NULL;
    s->transparent = 0;

    s->path = (char*)ALLOC(strlen(path)+1);
    if (s->path == NULL) {
        return destroy(s), (gzFile)Z_NULL;
    }
    strcpy(s->path, path); /* do this early for debugging */

    s->mode = '\0';
    do {
        if (*p == 'r') s->mode = 'r';
        if (*p == 'w' || *p == 'a') s->mode = 'w';
        if (*p >= '0' && *p <= '9') {
	    level = *p - '0';
	} else if (*p == 'f') {
	  strategy = Z_FILTERED;
	} else if (*p == 'h') {
	  strategy = Z_HUFFMAN_ONLY;
	} else {
	    *m++ = *p; /* copy the mode */
	}
    } while (*p++ && m != fmode + sizeof(fmode));
    if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL;
    
    if (s->mode == 'w') {
#ifdef NO_DEFLATE
        err = Z_STREAM_ERROR;
#else
        err = deflateInit2(&(s->stream), level,
                           Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
        /* windowBits is passed < 0 to suppress zlib header */

        s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
#endif
        if (err != Z_OK || s->outbuf == Z_NULL) {
            return destroy(s), (gzFile)Z_NULL;
        }
    } else {
        s->stream.next_in  = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);

        err = inflateInit2(&(s->stream), -MAX_WBITS);
        /* windowBits is passed < 0 to tell that there is no zlib header.
         * Note that in this case inflate *requires* an extra "dummy" byte
         * after the compressed stream in order to complete decompression and
         * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
         * present after the compressed stream.
         */
        if (err != Z_OK || s->inbuf == Z_NULL) {
            return destroy(s), (gzFile)Z_NULL;
        }
    }
    s->stream.avail_out = Z_BUFSIZE;

#ifdef _WIN32_WCE
    SetLastError(NO_ERROR);
    if ((HANDLE)fd == INVALID_HANDLE_VALUE) {
        MultiByteToWideChar(CP_ACP, 0, path, -1, file, MAX_PATH);
        s->file = CreateFile(file, GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, 0, NULL);
    } else {
        s->file = (HANDLE)fd;
    }
#else
    errno = 0;
    s->file = fd < 0 ? F_OPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
#endif

#ifdef _WIN32_WCE
    if (s->file == INVALID_HANDLE_VALUE) {
#else
    if (s->file == NULL) {
#endif
        return destroy(s), (gzFile)Z_NULL;
    }
    if (s->mode == 'w') {
        /* Write a very simple .gz header:
         */
#ifdef _WIN32_WCE
        cbuff[0] = gz_magic[0];
        cbuff[1] = gz_magic[1];
        cbuff[2] = Z_DEFLATED;
        cbuff[3] = 0; /*flags*/
        cbuff[4] = 0;
        cbuff[5] = 0;
        cbuff[6] = 0;
        cbuff[7] = 0; /*time*/;
        cbuff[8] = 0; /*xflags*/;
        cbuff[9] = OS_CODE;
        WriteFile(s->file, cbuff, 10, &size, NULL);
#else
        fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1],
             Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE);
#endif
	s->startpos = 10L;
	/* We use 10L instead of ftell(s->file) to because ftell causes an
         * fflush on some systems. This version of the library doesn't use
         * startpos anyway in write mode, so this initialization is not
         * necessary.
         */
    } else {
	check_header(s); /* skip the .gz header */
#ifdef _WIN32_WCE
        s->startpos = (SetFilePointer(s->file, 0, NULL, FILE_CURRENT) - s->stream.avail_in);
#else
	s->startpos = (ftell(s->file) - s->stream.avail_in);
#endif
    }
    
    return (gzFile)s;
}

/* ===========================================================================
     Opens a gzip (.gz) file for reading or writing.
*/
gzFile ZEXPORT gzopen (path, mode)
    const char *path;
    const char *mode;
{
    return gz_open (path, mode, -1);
}

/* ===========================================================================
     Associate a gzFile with the file descriptor fd. fd is not dup'ed here
   to mimic the behavio(u)r of fdopen.
*/
gzFile ZEXPORT gzdopen (fd, mode)
    int fd;
    const char *mode;
{
    char name[20];

#ifdef _WIN32_WCE
    if ((HANDLE)fd == INVALID_HANDLE_VALUE) return (gzFile)Z_NULL;
    strcpy(name, "<gzdopen>"); /* for debugging */
#else
    if (fd < 0) return (gzFile)Z_NULL;
    sprintf(name, "<fd:%d>", fd); /* for debugging */
#endif

    return gz_open (name, mode, fd);
}

/* ===========================================================================
 * Update the compression level and strategy
 */
int ZEXPORT gzsetparams (file, level, strategy)
    gzFile file;
    int level;
    int strategy;
{
    gz_stream *s = (gz_stream*)file;
#ifdef _WIN32_WCE
    DWORD size;
#endif

    if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;

    /* Make room to allow flushing */
    if (s->stream.avail_out == 0) {

	s->stream.next_out = s->outbuf;
#ifdef _WIN32_WCE
        if (!WriteFile(s->file, s->outbuf, Z_BUFSIZE, &size, NULL) || size != Z_BUFSIZE) {
#else
	if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
#endif
	    s->z_err = Z_ERRNO;
	}
	s->stream.avail_out = Z_BUFSIZE;
    }

    return deflateParams (&(s->stream), level, strategy);
}

/* ===========================================================================
     Read a byte from a gz_stream; update next_in and avail_in. Return EOF
   for end of file.
   IN assertion: the stream s has been sucessfully opened for reading.
*/
local int get_byte(s)
    gz_stream *s;
{
    if (s->z_eof) return EOF;
    if (s->stream.avail_in == 0) {
#ifdef _WIN32_WCE
        SetLastError(NO_ERROR);
        if (!ReadFile(s->file, s->inbuf, Z_BUFSIZE, &s->stream.avail_in, NULL)) {
            s->z_err = Z_ERRNO;
        }
        if (s->stream.avail_in == 0) {
            s->z_eof = 1;
            return -1;
        }
#else
	errno = 0;
	s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
	if (s->stream.avail_in == 0) {
	    s->z_eof = 1;
	    if (ferror(s->file)) s->z_err = Z_ERRNO;
	    return EOF;
	}
#endif
	s->stream.next_in = s->inbuf;
    }
    s->stream.avail_in--;
    return *(s->stream.next_in)++;
}

/* ===========================================================================
      Check the gzip header of a gz_stream opened for reading. Set the stream
    mode to transparent if the gzip magic header is not present; set s->err
    to Z_DATA_ERROR if the magic header is present but the rest of the header
    is incorrect.
    IN assertion: the stream s has already been created sucessfully;
       s->stream.avail_in is zero for the first time, but may be non-zero
       for concatenated .gz files.
*/
local void check_header(s)
    gz_stream *s;
{
    int method; /* method byte */
    int flags;  /* flags byte */
    uInt len;
    int c;

    /* Check the gzip magic header */
    for (len = 0; len < 2; len++) {
	c = get_byte(s);
	if (c != gz_magic[len]) {
	    if (len != 0) s->stream.avail_in++, s->stream.next_in--;
	    if (c != EOF) {
		s->stream.avail_in++, s->stream.next_in--;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一个色妞综合视频在线观看| 日韩精品一级二级| 国产精品国产自产拍高清av| 国产精品成人午夜| 日韩高清在线一区| 成人黄色一级视频| 欧美日韩日本视频| 精品日产卡一卡二卡麻豆| 国产精品视频免费| 亚洲成av人影院在线观看网| 国产呦精品一区二区三区网站| gogo大胆日本视频一区| 6080国产精品一区二区| 91精品国产综合久久久久久 | 日韩亚洲欧美成人一区| 日韩欧美一级二级三级久久久| 久久精品亚洲精品国产欧美| 亚洲小少妇裸体bbw| 国产成人精品三级麻豆| 4438成人网| 一区二区三区中文在线观看| 久久99精品久久只有精品| 色噜噜狠狠一区二区三区果冻| 在线观看视频一区二区欧美日韩| 精品国产91乱码一区二区三区 | 91蜜桃视频在线| 欧美午夜寂寞影院| 国产欧美日韩视频在线观看| 午夜不卡在线视频| 在线一区二区视频| 国产精品丝袜黑色高跟| 精品一二三四区| 欧美猛男超大videosgay| 欧美精品一卡二卡| 亚洲另类在线一区| 狠狠色丁香婷综合久久| 制服丝袜中文字幕一区| 亚洲综合久久久久| 99精品桃花视频在线观看| 国产欧美日韩不卡| 国产乱码字幕精品高清av| 欧美精品一级二级| 亚洲一区中文在线| 丁香天五香天堂综合| 久久亚洲影视婷婷| 韩国成人精品a∨在线观看| 欧美男女性生活在线直播观看| 一二三四社区欧美黄| 色综合天天综合网天天狠天天| 久久久一区二区三区| 国产一区不卡视频| 久久综合色综合88| 久久国产精品色| 日韩免费福利电影在线观看| 奇米777欧美一区二区| 91.xcao| 亚洲国产精品久久人人爱蜜臀| 一本大道综合伊人精品热热| 亚洲同性gay激情无套| 一本色道亚洲精品aⅴ| 亚洲情趣在线观看| 欧美日韩中文字幕精品| 亚洲电影视频在线| 欧美一区二区视频观看视频| 亚洲国产精品一区二区www| 在线综合视频播放| 日日摸夜夜添夜夜添亚洲女人| 制服.丝袜.亚洲.中文.综合| 夜夜嗨av一区二区三区中文字幕 | 亚洲一区二区三区四区中文字幕| 一本色道久久综合狠狠躁的推荐| 亚洲另类一区二区| 欧美日韩在线播放一区| 男女男精品网站| 久久久激情视频| 97久久精品人人做人人爽| 亚洲欧美韩国综合色| 91久久精品午夜一区二区| 午夜一区二区三区视频| 日韩视频免费观看高清完整版在线观看 | 97se亚洲国产综合自在线不卡| 国产精品美女久久久久久久网站| 91色乱码一区二区三区| 午夜精品久久一牛影视| 久久久青草青青国产亚洲免观| 国产一区二区三区日韩| 久久久精品影视| 欧美日韩一区二区三区不卡| 日本伊人精品一区二区三区观看方式 | 在线视频你懂得一区二区三区| 亚洲综合色成人| 欧美成人伊人久久综合网| 成人精品国产免费网站| 亚洲一区二区三区国产| 91 com成人网| av午夜一区麻豆| 日韩精品每日更新| 中文字幕综合网| 精品国产一区二区三区久久久蜜月 | 蜜桃精品视频在线| 亚洲色图在线播放| 久久久一区二区| 中文字幕亚洲一区二区av在线 | 亚洲精品日产精品乱码不卡| 久久色中文字幕| 日韩欧美一级二级| 91麻豆精品国产91久久久久久久久 | 日韩精品中文字幕一区二区三区 | 美女视频黄 久久| 国产成人在线视频播放| 青青草国产成人av片免费| 一区二区三区四区在线播放| 亚洲欧洲日韩综合一区二区| 亚洲国产精品成人久久综合一区| 久久综合久久综合久久综合| 欧美xxxxxxxxx| 久久这里只有精品首页| 精品国产123| 久久久精品蜜桃| 国产欧美日韩在线看| 中文字幕在线播放不卡一区| 国产精品高潮呻吟久久| 亚洲欧美日韩国产手机在线| 亚洲欧美aⅴ...| 丝袜美腿亚洲一区二区图片| 日韩福利视频网| 精品一区二区免费| 国产乱码字幕精品高清av| 高清不卡一区二区| 色偷偷一区二区三区| 欧美日韩中文一区| 337p粉嫩大胆噜噜噜噜噜91av| 精品国产露脸精彩对白| 国产三级欧美三级日产三级99| 国产人妖乱国产精品人妖| 亚洲男人的天堂网| 丝袜美腿亚洲综合| 国产又黄又大久久| 99精品偷自拍| 5月丁香婷婷综合| 国产欧美精品一区二区色综合朱莉 | 精品久久久久久久久久久久包黑料| 欧美大黄免费观看| 国产精品天干天干在线综合| 亚洲视频1区2区| 蜜桃久久久久久久| 波多野结衣中文字幕一区二区三区| 在线精品视频一区二区三四| 精品乱码亚洲一区二区不卡| 国产精品久久久久久久浪潮网站| 一级女性全黄久久生活片免费| 久久99精品国产麻豆婷婷| www.日韩大片| 日韩丝袜美女视频| 亚洲男人的天堂网| 极品美女销魂一区二区三区| 91视频国产观看| 精品毛片乱码1区2区3区| 自拍av一区二区三区| 久久精品国产久精国产| 国产调教视频一区| 伊人一区二区三区| 国产精品自在在线| 欧美日韩精品二区第二页| 中文一区二区完整视频在线观看| 亚洲成人激情综合网| 成人永久aaa| 日韩午夜激情av| 亚洲一区二三区| 国产凹凸在线观看一区二区| 91精品国产乱码久久蜜臀| 亚洲啪啪综合av一区二区三区| 精品一区二区三区免费观看| 色悠久久久久综合欧美99| 日本一区二区三区电影| 奇米一区二区三区| 91国产精品成人| 日韩伦理免费电影| 国产成人av一区二区三区在线| 91精品免费在线观看| 香港成人在线视频| 色8久久人人97超碰香蕉987| 国产精品拍天天在线| 国产资源精品在线观看| 日韩一区二区三区观看| 亚洲成国产人片在线观看| 色婷婷综合久久久中文字幕| 国产精品久久久久永久免费观看| 激情六月婷婷综合| 日韩欧美国产精品一区| 热久久免费视频| 在线不卡欧美精品一区二区三区| 一区二区不卡在线播放| 972aa.com艺术欧美| 中文字幕在线不卡| 91无套直看片红桃| 亚洲精品国产无套在线观| 99re在线视频这里只有精品| 亚洲天堂精品在线观看| 97精品国产97久久久久久久久久久久 |