ZipArchiveConstants.st
changeset 2502 333bf972be34
child 2510 661f5e28cd6d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ZipArchiveConstants.st	Fri Nov 19 15:49:09 2010 +0100
@@ -0,0 +1,101 @@
+"
+ COPYRIGHT (c) 1998,2010 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+"{ Package: 'stx:libbasic2' }"
+
+SharedPool subclass:#ZipArchiveConstants
+	instanceVariableNames:''
+	classVariableNames:'ECREC_SIZE LREC_SIZE CREC_SIZE CENTRAL_DIRECTORY_SIZE
+		TOTAL_ENTRIES_CENTRAL_DIR C_COMPRESSED_SIZE
+		C_RELATIVE_OFFSET_LOCAL_HEADER C_FILENAME_LENGTH
+		C_UNCOMPRESSED_SIZE C_CENTRAL_HEADER_SIGNATURE
+		C_LOCAL_HEADER_SIGNATURE C_CENTRAL_END_SIGNATURE
+		COMPRESSION_STORED COMPRESSION_SHRUNK COMPRESSION_REDUCED1
+		COMPRESSION_REDUCED2 COMPRESSION_REDUCED3 COMPRESSION_REDUCED4
+		COMPRESSION_IMPLODED COMPRESSION_TOKENIZED COMPRESSION_DEFLATED
+		EXTERNALFILEATTRIBUTES_ISFILE EXTERNALFILEATTRIBUTES_ISDIRECTORY'
+	poolDictionaries:''
+	category:'System-Support-FileFormats'
+!
+
+!ZipArchiveConstants class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1998,2010 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    refactored shared constants to here
+
+    [author:]
+        Claus Gittinger
+"
+! !
+
+!ZipArchiveConstants class methodsFor:'class initialization'!
+
+initialize
+    ECREC_SIZE := 18.
+    LREC_SIZE := 26.
+    CREC_SIZE := 42.
+
+    TOTAL_ENTRIES_CENTRAL_DIR := 10.
+    CENTRAL_DIRECTORY_SIZE := 12.
+
+    C_COMPRESSED_SIZE := 16.
+    C_UNCOMPRESSED_SIZE := 20.
+    C_FILENAME_LENGTH := 24.
+    C_RELATIVE_OFFSET_LOCAL_HEADER := 38.
+
+    C_CENTRAL_HEADER_SIGNATURE := 16r02014b50.
+    C_LOCAL_HEADER_SIGNATURE := 16r04034b50.
+    C_CENTRAL_END_SIGNATURE := 16r06054b50.
+
+    "/ compression methods
+
+    COMPRESSION_STORED := 0.
+    COMPRESSION_SHRUNK := 1.
+    COMPRESSION_REDUCED1 := 2.
+    COMPRESSION_REDUCED2 := 3.
+    COMPRESSION_REDUCED3 := 4.
+    COMPRESSION_REDUCED4 := 5.
+    COMPRESSION_IMPLODED := 6.
+    COMPRESSION_TOKENIZED := 7.
+    COMPRESSION_DEFLATED := 8.
+
+    EXTERNALFILEATTRIBUTES_ISFILE := 32.
+    EXTERNALFILEATTRIBUTES_ISDIRECTORY := 16.
+
+    "
+     ZipArchiveConstants initialize
+    "
+
+    "Modified: / 19-11-2010 / 15:36:16 / cg"
+! !
+
+!ZipArchiveConstants class methodsFor:'documentation'!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic2/ZipArchiveConstants.st,v 1.1 2010-11-19 14:49:09 cg Exp $'
+! !
+
+ZipArchiveConstants initialize!