예제 #1
0
			public ZipUpdate(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
			{
				command_ = UpdateCommand.Add;
				entry_ = new ZipEntry(entryName);
				entry_.CompressionMethod = compressionMethod;
#if FORCE_ZIP64
				entry_.ForceZip64();
#endif
				dataSource_ = dataSource;
			}
예제 #2
0
		/// <summary>
		/// Add a file entry with data.
		/// </summary>
		/// <param name="dataSource">The source of the data for this entry.</param>
		/// <param name="entryName">The name to give to the entry.</param>
		/// <param name="compressionMethod">The compression method to use.</param>
		public void Add( IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod ) {
			if( dataSource == null ) {
				throw new ArgumentNullException( "dataSource" );
			}

			if( entryName == null ) {
				throw new ArgumentNullException( "entryName" );
			}

			CheckUpdating();

			BlubbZipEntry entry = EntryFactory.MakeFileEntry( entryName, false );
			entry.CompressionMethod = compressionMethod;

			AddUpdate( new BlubbUpdate( dataSource, entry ) );
		}
예제 #3
0
        /// <summary>
        /// Add a file entry with data.
        /// </summary>
        /// <param name="dataSource">The source of the data for this entry.</param>
        /// <param name="entryName">The name to give to the entry.</param>
        /// <param name="compressionMethod">The compression method to use.</param>
        /// <param name="useUnicodeText">Ensure Unicode text is used for name and comments for this entry.</param>
        public void Add(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod, bool useUnicodeText)
        {
            if (dataSource == null)
            {
                throw new ArgumentNullException("dataSource");
            }

            CheckUpdating();
            contentsEdited_ = true;
            ZipUpdate update = new ZipUpdate(dataSource, GetTransformedFileName(entryName),
                                       compressionMethod);
            update.Entry.IsUnicodeText = useUnicodeText;
            updates_.Add(update);
        }
예제 #4
0
		/// <summary>
		/// Add a file entry with data.
		/// </summary>
		/// <param name="dataSource">The source of the data for this entry.</param>
		/// <param name="entryName">The name to give to the entry.</param>
		public void Add(IStaticDataSource dataSource, string entryName)
		{
			if ( dataSource == null ) {
				throw new ArgumentNullException("dataSource");
			}

			CheckUpdating();
			contentsEdited_ = true;
			updates_.Add(new ZipUpdate(dataSource, entryName, CompressionMethod.Deflated));
		}
예제 #5
0
 public ZipUpdate(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
 {
     _sizePatchOffset = -1L;
     _crcPatchOffset = -1L;
     _offsetBasedSize = -1L;
     _command = UpdateCommand.Add;
     _entry = new ZipEntry(entryName);
     _entry.CompressionMethod = compressionMethod;
     _dataSource = dataSource;
 }
예제 #6
0
        /// <summary>
        /// Add a file entry with data.
        /// </summary>
        /// <param name="dataSource">The source of the data for this entry.</param>
        /// <param name="entryName">The name to give to the entry.</param>
        /// <param name="compressionMethod">The compression method to use.</param>
        public void Add(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
        {
            if ( dataSource == null ) {
                throw new ArgumentNullException("dataSource");
            }

            CheckUpdating();
            contentsEdited_ = true;
            updates_.Add(new ZipUpdate(dataSource, GetTransformedFileName(entryName),
                                       compressionMethod));
        }
예제 #7
0
파일: ZipFile.cs 프로젝트: ouyh18/LteTools
 public ZipUpdate(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
 {
     sizePatchOffset_ = -1L;
     crcPatchOffset_ = -1L;
     _offsetBasedSize = -1L;
     command_ = UpdateCommand.Add;
     entry_ = new ZipEntry(entryName);
     entry_.CompressionMethod = compressionMethod;
     dataSource_ = dataSource;
 }
예제 #8
0
			public ZipUpdate(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
			{
				command_ = UpdateCommand.Add;
				entry_ = new ZipEntry(entryName);
				entry_.CompressionMethod = compressionMethod;
				dataSource_ = dataSource;
			}
예제 #9
0
 public HfsUpdate(IStaticDataSource dataSource, HfsEntry entry)
 {
     command_ = UpdateCommand.Add;
     entry_ = entry;
     dataSource_ = dataSource;
 }
예제 #10
0
파일: ZipFile.cs 프로젝트: ouyh18/LteTools
 public ZipUpdate(IStaticDataSource dataSource, ZipEntry entry)
 {
     sizePatchOffset_ = -1L;
     crcPatchOffset_ = -1L;
     _offsetBasedSize = -1L;
     command_ = UpdateCommand.Add;
     entry_ = entry;
     dataSource_ = dataSource;
 }
예제 #11
0
파일: ZipFile.cs 프로젝트: Gremlin2/Fb2Fix
        /// <summary>
        /// Add a file entry with data.
        /// </summary>
        /// <param name="dataSource">The source of the data for this entry.</param>
        /// <param name="entry">The entry to add.</param>
        public void Add(IStaticDataSource dataSource, ZipEntry entry)
        {
            if (dataSource == null)
            {
                throw new ArgumentNullException("dataSource");
            }

            if (entry == null)
            {
                throw new ArgumentNullException("entry");
            }

            CheckUpdating();

            AddUpdate(new ZipUpdate(dataSource, entry));
        }
예제 #12
0
 public ZipUpdate(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
 {
     this.sizePatchOffset_ = -1L;
     this.crcPatchOffset_ = -1L;
     this._offsetBasedSize = -1L;
     this.command_ = ZipFile.UpdateCommand.Add;
     this.entry_ = new ZipEntry(entryName);
     this.entry_.CompressionMethod = compressionMethod;
     this.dataSource_ = dataSource;
 }
예제 #13
0
 public ZipUpdate(IStaticDataSource dataSource, ZipEntry entry)
 {
     this.sizePatchOffset_ = -1L;
     this.crcPatchOffset_ = -1L;
     this._offsetBasedSize = -1L;
     this.command_ = ZipFile.UpdateCommand.Add;
     this.entry_ = entry;
     this.dataSource_ = dataSource;
 }
예제 #14
0
		/// <summary>
		/// Add a file entry with data.
		/// </summary>
		/// <param name="dataSource">The source of the data for this entry.</param>
		/// <param name="entryName">The name to give to the entry.</param>
		public void Add(IStaticDataSource dataSource, string entryName)
		{
			if ( dataSource == null ) {
				throw new ArgumentNullException("dataSource");
			}

			if ( entryName == null ) {
				throw new ArgumentNullException("entryName");
			}

			CheckUpdating();
			AddUpdate(new ZipUpdate(dataSource, EntryFactory.MakeFileEntry(entryName, false)));
		}
예제 #15
0
			public ZipUpdate(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod)
			{
				_command = UpdateCommand.Add;
				_entry = new ZipEntry(entryName);
				_entry.CompressionMethod = compressionMethod;
				_dataSource = dataSource;
			}
예제 #16
0
		/// <summary>
		/// Add a file entry with data.
		/// </summary>
		/// <param name="dataSource">The source of the data for this entry.</param>
		/// <param name="entryName">The name to give to the entry.</param>
		/// <param name="compressionMethod">The compression method to use.</param>
		/// <param name="useUnicodeText">Ensure Unicode text is used for name and comments for this entry.</param>
		public void Add(IStaticDataSource dataSource, string entryName, CompressionMethod compressionMethod, bool useUnicodeText)
		{
			if (dataSource == null) {
				throw new ArgumentNullException("dataSource");
			}

			if ( entryName == null ) {
				throw new ArgumentNullException("entryName");
			}

			CheckUpdating();

			ZipEntry entry = EntryFactory.MakeFileEntry(entryName, false);
			entry.IsUnicodeText = useUnicodeText;
			entry.CompressionMethod = compressionMethod;

			AddUpdate(new ZipUpdate(dataSource, entry));
		}
예제 #17
0
			public ZipUpdate(IStaticDataSource dataSource, ZipEntry entry)
			{
				_command = UpdateCommand.Add;
				_entry = entry;
				_dataSource = dataSource;
			}
예제 #18
0
			public ZipUpdate(IStaticDataSource dataSource, ZipEntry entry)
			{
				command_ = UpdateCommand.Add;
				entry_ = entry;
				dataSource_ = dataSource;
			}
예제 #19
0
 public ZipUpdate(IStaticDataSource dataSource, ZipEntry entry)
 {
     _sizePatchOffset = -1L;
     _crcPatchOffset = -1L;
     _offsetBasedSize = -1L;
     _command = UpdateCommand.Add;
     _entry = entry;
     _dataSource = dataSource;
 }