]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.fastlz/native/fastlz_read.c
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.fastlz / native / fastlz_read.c
index 50314f2590e195b1df372e3aa4390dc0a02df402..63d1e699ddc39aa3bb12c7626712f358995b4ff9 100644 (file)
@@ -1,82 +1,82 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <string.h>\r
-#include "fastlz.h"\r
-\r
-char* uncompressed;\r
-int uncompressedCapacity;\r
-int position;\r
-int uncompressedSize;\r
-char* compressed;\r
-int compressedCapacity;\r
-\r
-FILE* handle;\r
-\r
-void initRead(FILE* _handle) {\r
-    uncompressed = 0;\r
-    uncompressedCapacity = 0;\r
-    position = 0;\r
-    uncompressedSize = 0;    \r
-    compressed = malloc(8);\r
-    compressedCapacity = 8;\r
-    handle = _handle;\r
-}\r
-\r
-void deinitRead() {\r
-    free(uncompressed);\r
-    uncompressed = 0;\r
-    free(compressed);\r
-    compressed = 0;\r
-    handle = 0;\r
-}\r
-\r
-void fillBuffer() {\r
-    int compressedSize;\r
-\r
-    fread(compressed, 8, 1, handle);\r
-    compressedSize = ((int*)compressed)[0];\r
-    uncompressedSize = ((int*)compressed)[1];\r
-    \r
-    if(compressedSize > compressedCapacity) {\r
-        free(compressed);\r
-        compressed = malloc(compressedSize);\r
-        compressedCapacity = compressedSize;\r
-    }\r
-    if(uncompressedSize > uncompressedCapacity) {\r
-        free(uncompressed);\r
-        uncompressed = malloc(uncompressedSize);\r
-        uncompressedCapacity = uncompressedSize;\r
-    }\r
-\r
-    fread(compressed, compressedSize, 1, handle);\r
-    printf("decompress %d %d %d %d\n", compressedSize, compressedCapacity, uncompressedSize, uncompressedCapacity); fflush(stdout);\r
-    fastlz_decompress(compressed, compressedSize, uncompressed, uncompressedSize); \r
-    position = 0;\r
-}\r
-\r
-void read(char* data, int offset, int length) {\r
-    int s;\r
-\r
-    while(length > uncompressedSize - position) {\r
-        s = uncompressedSize - position;\r
-        memcpy(data + offset, uncompressed + position, s);\r
-        offset += s;\r
-        length -= s;\r
-        fillBuffer();\r
-    }\r
-    memcpy(data + offset, uncompressed + position, length);\r
-    position += length;\r
-}\r
-\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "fastlz.h"
+
+char* uncompressed;
+int uncompressedCapacity;
+int position;
+int uncompressedSize;
+char* compressed;
+int compressedCapacity;
+
+FILE* handle;
+
+void initRead(FILE* _handle) {
+    uncompressed = 0;
+    uncompressedCapacity = 0;
+    position = 0;
+    uncompressedSize = 0;    
+    compressed = malloc(8);
+    compressedCapacity = 8;
+    handle = _handle;
+}
+
+void deinitRead() {
+    free(uncompressed);
+    uncompressed = 0;
+    free(compressed);
+    compressed = 0;
+    handle = 0;
+}
+
+void fillBuffer() {
+    int compressedSize;
+
+    fread(compressed, 8, 1, handle);
+    compressedSize = ((int*)compressed)[0];
+    uncompressedSize = ((int*)compressed)[1];
+    
+    if(compressedSize > compressedCapacity) {
+        free(compressed);
+        compressed = malloc(compressedSize);
+        compressedCapacity = compressedSize;
+    }
+    if(uncompressedSize > uncompressedCapacity) {
+        free(uncompressed);
+        uncompressed = malloc(uncompressedSize);
+        uncompressedCapacity = uncompressedSize;
+    }
+
+    fread(compressed, compressedSize, 1, handle);
+    printf("decompress %d %d %d %d\n", compressedSize, compressedCapacity, uncompressedSize, uncompressedCapacity); fflush(stdout);
+    fastlz_decompress(compressed, compressedSize, uncompressed, uncompressedSize); 
+    position = 0;
+}
+
+void read(char* data, int offset, int length) {
+    int s;
+
+    while(length > uncompressedSize - position) {
+        s = uncompressedSize - position;
+        memcpy(data + offset, uncompressed + position, s);
+        offset += s;
+        length -= s;
+        fillBuffer();
+    }
+    memcpy(data + offset, uncompressed + position, length);
+    position += length;
+}
+
+