r140: *** empty log message ***
[ctsim.git] / src / ifinfo.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          ifinfo.cpp
5 **   Purpose:       Display information about an image file
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  April 2000
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2000 Kevin Rosenberg
11 **
12 **  $Id: ifinfo.cpp,v 1.13 2000/07/09 08:16:18 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 /* FILE
29  *   ifinfo.c             Display info on sdf files
30  */
31
32 #include "ct.h"
33
34 enum { O_LABELS, O_STATS, O_NO_STATS, O_NO_LABELS, O_VERBOSE, O_HELP, O_VERSION, O_DEBUG };
35
36 static struct option my_options[] =
37 {
38   {"labels", 0, 0, O_LABELS},
39   {"no-labels", 0, 0, O_NO_LABELS},
40   {"stats", 0, 0, O_STATS},
41   {"no-stats", 0, 0, O_NO_STATS},
42   {"debug", 0, 0, O_DEBUG},
43   {"verbose", 0, 0, O_VERBOSE},
44   {"help", 0, 0, O_HELP},
45   {"version", 0, 0, O_VERSION},
46   {0, 0, 0, 0}
47 };
48
49 void 
50 ifinfo_usage (const char *program)
51 {
52   cout << "usage: " << fileBasename(program) << " image-filename [OPTIONS]" << endl;
53   cout << "Imagefile information" << endl;
54   cout << endl;
55   cout << "     infile       Name of input IF file" << endl;
56   cout << "     --display    Display image" << endl;
57   cout << "     --labels     Print image labels (default)" << endl;
58   cout << "     --no-labels  Do not print image labels" << endl;
59   cout << "     --stats      Print image statistics (default)" << endl;
60   cout << "     --no-stats   Do not print image statistics" << endl;
61   cout << "     --debug      Debug mode" << endl;
62   cout << "     --verbose    Verbose mode" << endl;
63   cout << "     --version    Print version" << endl;
64   cout << "     --help       Print this help message" << endl;
65 }
66
67 int 
68 ifinfo_main (int argc, char *const argv[])
69 {
70   ImageFile *im = NULL;
71   string in_file;
72   int opt_verbose = 0;
73   int opt_stats = 1;
74   int opt_labels = 1;
75   int opt_debug = 0;
76
77   while (1)
78     {
79       int c = getopt_long (argc, argv, "", my_options, NULL);
80       
81       if (c == -1)
82         break;
83       
84       switch (c)
85         {
86         case O_LABELS:
87           opt_labels = 1;
88           break;
89         case O_STATS:
90           opt_stats = 1;
91           break;
92         case O_NO_LABELS:
93           opt_labels = 0;
94           break;
95         case O_NO_STATS:
96           opt_stats = 0;
97           break;
98         case O_VERBOSE:
99           opt_verbose = 1;
100           break;
101         case O_DEBUG:
102           opt_debug = 0;
103           break;
104         case O_VERSION:
105 #ifdef VERSION
106           cout << "Version " <<  VERSION << endl;
107 #else
108           cout << "Unknown version number" << endl;
109 #endif
110           return (0);
111         case O_HELP:
112         case '?':
113           ifinfo_usage(argv[0]);
114           return (0);
115         default:
116           ifinfo_usage(argv[0]);
117           return (1);
118         }
119     }
120
121   if (optind + 1 != argc) {
122     ifinfo_usage (argv[0]);
123     return (1);
124   }
125   
126   in_file = argv[optind];
127
128   im = new ImageFile ();
129   if (! im->fileRead (in_file)) {
130     sys_error (ERR_WARNING, "Unable to read file %s", in_file.c_str());
131     return (1);
132   }
133
134   if (opt_labels) 
135     im->printLabels (cout);
136
137   if (opt_stats) {
138     cout << "Size: (" << im->nx() << "," << im->ny() << ")" << endl;
139     im->printStatistics (cout);
140   }
141
142   return (0);
143 }
144
145 #ifndef NO_MAIN
146 int 
147 main (int argc, char *const argv[])
148 {
149   int retval = 1;
150
151   try {
152     retval = ifinfo_main(argc, argv);
153   } catch (exception e) {
154     cerr << "Exception: " << e.what() << endl;
155   } catch (...) {
156     cerr << "Unknown exception" << endl;
157   }
158
159   return (retval);
160 }
161 #endif