File: main.c

package info (click to toggle)
grass 8.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 277,040 kB
  • sloc: ansic: 460,798; python: 227,732; cpp: 42,026; sh: 11,262; makefile: 7,007; xml: 3,637; sql: 968; lex: 520; javascript: 484; yacc: 450; asm: 387; perl: 157; sed: 25; objc: 6; ruby: 4
file content (249 lines) | stat: -rw-r--r-- 7,676 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/***************************************************************************
 *
 * MODULE:       g.version
 * AUTHOR(S):    Michael Shapiro, CERL
 *               Andreas Lange - <andreas.lange rhein-main.de>
 *               Justin Hickey - Thailand - jhickey hpcc.nectec.or.th
 *               Extended info by Martin Landa <landa.martin gmail.com>
 * PURPOSE:      Output GRASS version number, date and copyright message.
 *
 * COPYRIGHT:    (C) 2000-2015 by the GRASS Development Team
 *
 *               This program is free software under the GPL (>=v2)
 *               Read the file COPYING that comes with GRASS for
 *               details.
 *****************************************************************************/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include <grass/gis.h>
#include <grass/glocale.h>

#include "local_proto.h"

#ifdef HAVE_PROJ_H
#include <proj.h>
#else
#include <proj_api.h>
#endif

#ifdef HAVE_GDAL
#include <gdal_version.h>
#endif

#ifdef HAVE_GEOS
#include <geos_c.h>
#endif

#ifdef HAVE_SQLITE
#include <sqlite3.h>
#endif

#ifndef GRASS_VERSION_UPDATE_PKG
#define GRASS_VERSION_UPDATE_PKG "0.1"
#endif

/* TODO: remove this style of include */
static const char COPYING[] =
#include <grass/copying.h>
    ;

static const char CITING[] =
#include <grass/citing.h>
    ;

static const char GRASS_CONFIGURE_PARAMS[] =
#include <grass/confparms.h>
    ;

int main(int argc, char *argv[])
{
    struct GModule *module;
    struct Flag *copyright, *build, *gish_rev, *cite_flag, *shell, *extended;

    G_gisinit(argv[0]);

    module = G_define_module();
    G_add_keyword(_("general"));
    G_add_keyword(_("support"));
    G_add_keyword(_("citing"));
    G_add_keyword(_("copyright"));
    G_add_keyword(_("version"));
    G_add_keyword(_("license"));
    module->label = _("Displays GRASS GIS version info.");
    module->description =
        _("Optionally also prints build or copyright information.");

    copyright = G_define_flag();
    copyright->key = 'c';
    copyright->description = _("Print also the copyright message");
    copyright->guisection = _("Additional info");

    cite_flag = G_define_flag();
    cite_flag->key = 'x';
    cite_flag->description = _("Print also the citation options");
    cite_flag->guisection = _("Additional info");

    build = G_define_flag();
    build->key = 'b';
    build->description = _("Print also the build information");
    build->guisection = _("Additional info");

    gish_rev = G_define_flag();
    gish_rev->key = 'r';
    /* this was never the library revision number and date
     * it was the revision number and date of gis.h
     * now it is the git hash and date of all GRASS headers
     * (and anything else in include) */
    gish_rev->description =
        _("Print also the GIS library revision number and date");
    gish_rev->guisection = _("Additional info");

    extended = G_define_flag();
    extended->key = 'e';
    extended->label = _("Print also extended info for additional libraries");
    extended->description = _("GDAL/OGR, PROJ, GEOS");
    extended->guisection = _("Additional info");

    shell = G_define_flag();
    shell->key = 'g';
    shell->description =
        _("Print info in shell script style (including Git reference commit)");
    shell->guisection = _("Shell");

    if (G_parser(argc, argv))
        exit(EXIT_FAILURE);

    if (shell->answer) {
        fprintf(stdout, "version=%s\n", GRASS_VERSION_NUMBER);
        fprintf(stdout, "date=%s\n", GRASS_VERSION_DATE);
        fprintf(stdout, "revision=%s\n", GRASS_VERSION_GIT);
        fprintf(stdout, "build_date=%d-%02d-%02d\n", YEAR, MONTH, DAY);
        fprintf(stdout, "build_platform=%s\n", ARCH);
        fprintf(stdout, "build_off_t_size=%lu\n", sizeof(off_t));
    }
    else {
        fprintf(stdout, "GRASS %s (%s)\n", GRASS_VERSION_NUMBER,
                GRASS_VERSION_DATE);
    }

    if (copyright->answer) {
        fprintf(stdout, "\n");
        fputs(COPYING, stdout);
    }

    if (cite_flag->answer) {
        fprintf(stdout, "\n");
        fputs(CITING, stdout);
    }

    if (build->answer) {
        fprintf(stdout, "\n");
        fputs(GRASS_CONFIGURE_PARAMS, stdout);
        fprintf(stdout, "\n");
    }

    if (gish_rev->answer) {
        char *rev_ver = GIS_H_VERSION;
        char *rev_time = GIS_H_DATE;
        int no_libgis = FALSE;

        if (*rev_ver && *rev_time) {
            if (shell->answer) {
                fprintf(stdout, "libgis_revision=%s\n", rev_ver);
                fprintf(stdout, "libgis_date=%s\n", rev_time);
            }
            else {
                fprintf(stdout, "libgis revision: %s\n", rev_ver);
                fprintf(stdout, "libgis date: %s\n", rev_time);
            }
        }
        else {
            no_libgis = TRUE;
            if (shell->answer) {
                fprintf(stdout, "libgis_revision=\n");
                fprintf(stdout, "libgis_date=\n");
                G_warning(
                    "GRASS GIS libgis version and date number not available");
                /* this can be alternatively fatal error or it can cause
                   fatal error later */
            }
            else {
                fprintf(
                    stdout,
                    _("Cannot determine GRASS libgis version and date number."
                      " The GRASS build might be broken."
                      " Report this to developers or packagers.\n"));
            }
        }
        if (no_libgis) {
            G_debug(1, _("GRASS GIS libgis version and date number don't have "
                         "the expected format."
                         " Trying to print the original strings..."));
            G_debug(1, _("GIS_H_VERSION=\"%s\""), GIS_H_VERSION);
            G_debug(1, _("GIS_H_DATE=\"%s\""), GIS_H_DATE);
        }
    }

    if (extended->answer) {
        char *proj = NULL;

#ifdef HAVE_PROJ_H
        G_asprintf(&proj, "%d%d%d", PROJ_VERSION_MAJOR, PROJ_VERSION_MINOR,
                   PROJ_VERSION_PATCH);
#else
        G_asprintf(&proj, "%d", PJ_VERSION);
#endif
        if (strlen(proj) == 3) {
            if (shell->answer)
                fprintf(stdout, "proj=%c.%c.%c\n", proj[0], proj[1], proj[2]);
            else
                fprintf(stdout, "PROJ: %c.%c.%c\n", proj[0], proj[1], proj[2]);
        }
        else {
            if (shell->answer)
                fprintf(stdout, "proj=%s\n", proj);
            else
                fprintf(stdout, "PROJ: %s\n", proj);
        }
#ifdef HAVE_GDAL
        if (shell->answer)
            fprintf(stdout, "gdal=%s\n", GDAL_RELEASE_NAME);
        else
            fprintf(stdout, "GDAL/OGR: %s\n", GDAL_RELEASE_NAME);
#else
        if (shell->answer)
            fprintf(stdout, "gdal=\n");
        else
            fprintf(stdout, "%s\n",
                    _("GRASS not compiled with GDAL/OGR support"));
#endif
#ifdef HAVE_GEOS
        if (shell->answer)
            fprintf(stdout, "geos=%s\n", GEOS_VERSION);
        else
            fprintf(stdout, "GEOS: %s\n", GEOS_VERSION);
#else
        if (shell->answer)
            fprintf(stdout, "geos=\n");
        else
            fprintf(stdout, "%s\n", _("GRASS not compiled with GEOS support"));
#endif
#ifdef HAVE_SQLITE
        if (shell->answer)
            fprintf(stdout, "sqlite=%s\n", SQLITE_VERSION);
        else
            fprintf(stdout, "SQLite: %s\n", SQLITE_VERSION);
#else
        if (shell->answer)
            fprintf(stdout, "sqlite=\n");
        else
            fprintf(stdout, "%s\n",
                    _("GRASS not compiled with SQLite support"));
#endif
    }

    return (EXIT_SUCCESS);
}