]> gerrit.simantics Code Review - simantics/fmil.git/blob - org.simantics.fmil.core/native/FMILibrary/Test/compress_test_fmu_zip.c
Merge "Added getters and setters for all FMI data types."
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / Test / compress_test_fmu_zip.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 <JM/jm_types.h>
19 #include <JM/jm_callbacks.h>
20 #include <FMI/fmi_zip_zip.h>
21
22 static void importlogger(jm_callbacks* c, jm_string module, jm_log_level_enu_t log_level, jm_string message)
23 {
24         printf("module = %s, log level = %d: %s\n", module, log_level, message);
25 }
26
27 int main(int argc, char *argv[])
28 {
29         jm_status_enu_t status;
30         jm_callbacks callbacks;
31         char* output_name;      
32         const char** files_to_zip;
33         int i, n_files_to_zip;
34
35         callbacks.malloc = malloc;
36     callbacks.calloc = calloc;
37     callbacks.realloc = realloc;
38     callbacks.free = free;
39     callbacks.logger = importlogger;
40         callbacks.log_level = jm_log_level_warning;
41
42     callbacks.context = 0;
43
44         if (argc < 3) {
45                 printf("Not enought input arguments\n");
46                 return 1;
47         }
48
49         output_name = argv[1];
50         files_to_zip = (const char**)&argv[2];
51         n_files_to_zip = argc - 2;
52
53         printf("Will compress following files: \n");
54         for (i = 0; i < n_files_to_zip; i++) {
55                 printf( "\t%s\n", files_to_zip[i]);
56         }
57         status = fmi_zip_zip(output_name, n_files_to_zip, files_to_zip, &callbacks);
58
59         if (status == jm_status_error) {
60                 printf("Failed to compress the file\n");
61                 return 1;
62         } else {
63                 printf("Succesfully compressed the file\n");
64                 return 0;
65         }       
66         
67 }