zip.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * zip.h: Module (access+filter) to extract different archives, based on zlib
  3.  *****************************************************************************
  4.  * Copyright (C) 2009 the VideoLAN team
  5.  * $Id: a6d7b62fcdbb5b0a58ff33e93aa817f3c57d7a2c $
  6.  *
  7.  * Authors: Jean-Philippe André <jpeg@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /** **************************************************************************
  24.  * Common includes and shared headers
  25.  *****************************************************************************/
  26. #ifndef ZIP_ACCESSDEMUX_H
  27. #define ZIP_ACCESSDEMUX_H
  28. #include <vlc/vlc.h>
  29. #include <vlc_common.h>
  30. #include <vlc_url.h>
  31. #include <vlc_strings.h>
  32. #include <vlc_arrays.h>
  33. #include <vlc_plugin.h>
  34. #include <vlc_stream.h>
  35. #include "unzip.h"
  36. #include "ioapi.h"
  37. #include <assert.h>
  38. #define ZIP_FILENAME_LEN 512
  39. #define ZIP_BUFFER_LEN 32768
  40. #define ZIP_SEP      "!/"
  41. #define ZIP_SEP_LEN  2
  42. /** **************************************************************************
  43.  * Module access points: stream_filter
  44.  *****************************************************************************/
  45. int StreamOpen( vlc_object_t* );
  46. void StreamClose( vlc_object_t* );
  47. /** **************************************************************************
  48.  * Module access points: access
  49.  *****************************************************************************/
  50. int AccessOpen( vlc_object_t *p_this );
  51. void AccessClose( vlc_object_t *p_this );
  52. /** Common function */
  53. bool isAllowedChar( char c );
  54. /** **************************************************************************
  55.  * zipIO function headers : how to use vlc_stream to read the zip
  56.  * Note: static because the implementations differ
  57.  *****************************************************************************/
  58. static void* ZCALLBACK ZipIO_Open( void* opaque, const char* filename, int m );
  59. static uLong ZCALLBACK ZipIO_Read( void*, void* stream, void* buf, uLong sz );
  60. static uLong ZCALLBACK ZipIO_Write( void*, void* stream, const void*, uLong );
  61. static long ZCALLBACK ZipIO_Tell( void*, void* stream );
  62. static long ZCALLBACK ZipIO_Seek( void*, void* stream, uLong offset, int ori );
  63. static int ZCALLBACK ZipIO_Close( void*, void* stream );
  64. static int ZCALLBACK ZipIO_Error( void*, void* stream );
  65. #endif /* ZIP_ACCESSDEMUX_H */