]> gerrit.simantics Code Review - simantics/fmil.git/blob - org.simantics.fmil.core/native/FMILibrary/Test/FMI1/fmi_zip_unzip_test.c
Merge "Added getters and setters for all FMI data types."
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / Test / FMI1 / fmi_zip_unzip_test.c
1 /*
2     Copyright (C) 2012 Modelon AB
3
4     This program is free software: you can redistribute it and/or modify
5     it under the terms of the BSD style license.
6
7      This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10     FMILIB_License.txt file for more details.
11
12     You should have received a copy of the FMILIB_License.txt file
13     along with this program. If not, contact Modelon AB <http://www.modelon.com>.
14 */
15
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <stdarg.h>
19 #include <string.h>
20 #include <errno.h>
21
22 #include <JM/jm_types.h>
23 #include <JM/jm_callbacks.h>
24 #include <FMI/fmi_zip_unzip.h>
25 #include "config_test.h"
26
27
28 void do_exit(int code)
29 {
30         printf("Press any key to exit\n");
31         /* getchar(); */
32         exit(code);
33 }
34
35 /* Logger function */
36 void importlogger(jm_callbacks* c, jm_string module, jm_log_level_enu_t log_level, jm_string message)
37 {
38         printf("module = %s, log level = %d: %s\n", module, log_level, message);
39 }
40
41 /**
42  * \brief Unzip test. Tests the fmi_zip_unzip function by uncompressing some file.
43  *
44  */
45 int main(int argc, char *argv[])
46 {
47         jm_callbacks callbacks;
48         jm_status_enu_t status; 
49
50         callbacks.malloc = malloc;
51     callbacks.calloc = calloc;
52     callbacks.realloc = realloc;
53     callbacks.free = free;
54     callbacks.logger = importlogger;
55         callbacks.log_level = jm_log_level_debug;
56     callbacks.context = 0;
57
58         status = fmi_zip_unzip(UNCOMPRESSED_DUMMY_FILE_PATH_SRC, UNCOMPRESSED_DUMMY_FOLDER_PATH_DIST, &callbacks);
59
60         if (status == jm_status_error) {
61                 printf("Failed to uncompress the file\n");
62                 do_exit(CTEST_RETURN_FAIL);
63         } else {
64                 printf("Succesfully uncompressed the file\n");
65                 do_exit(CTEST_RETURN_SUCCESS);
66         }
67     return 0;
68 }
69
70