1e0aa38569e2371232788e0e89edabf461303f4a
[ctsim.git] / tools / 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.4 2000/12/16 07:28:25 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 static const char* g_szIdStr = "$Id: ifinfo.cpp,v 1.4 2000/12/16 07:28:25 kevin Exp $";
50
51
52 void 
53 ifinfo_usage (const char *program)
54 {
55   std::cout << "usage: " << fileBasename(program) << " image-filename [OPTIONS]\n";
56   std::cout << "Imagefile information\n";
57   std::cout << std::endl;
58   std::cout << "     infile       Name of input IF file\n";
59   std::cout << "     --display    Display image\n";
60   std::cout << "     --labels     Print image labels (default)\n";
61   std::cout << "     --no-labels  Do not print image labels\n";
62   std::cout << "     --stats      Print image statistics (default)\n";
63   std::cout << "     --no-stats   Do not print image statistics\n";
64   std::cout << "     --debug      Debug mode\n";
65   std::cout << "     --verbose    Verbose mode\n";
66   std::cout << "     --version    Print version\n";
67   std::cout << "     --help       Print this help message\n";
68 }
69
70 int 
71 ifinfo_main (int argc, char *const argv[])
72 {
73   ImageFile *im = NULL;
74   std::string in_file;
75   int opt_verbose = 0;
76   int opt_stats = 1;
77   int opt_labels = 1;
78   int opt_debug = 0;
79
80   while (1)
81     {
82       int c = getopt_long (argc, argv, "", my_options, NULL);
83       
84       if (c == -1)
85         break;
86       
87       switch (c)
88         {
89         case O_LABELS:
90           opt_labels = 1;
91           break;
92         case O_STATS:
93           opt_stats = 1;
94           break;
95         case O_NO_LABELS:
96           opt_labels = 0;
97           break;
98         case O_NO_STATS:
99           opt_stats = 0;
100           break;
101         case O_VERBOSE:
102           opt_verbose = 1;
103           break;
104         case O_DEBUG:
105           opt_debug = 0;
106           break;
107         case O_VERSION:
108 #ifdef VERSION
109           std::cout << "Version " << VERSION << std::endl << g_szIdStr << std::endl;
110 #else
111           std::cout << "Unknown version number\n";
112 #endif
113           return (0);
114         case O_HELP:
115         case '?':
116           ifinfo_usage(argv[0]);
117           return (0);
118         default:
119           ifinfo_usage(argv[0]);
120           return (1);
121         }
122     }
123
124   if (optind + 1 != argc) {
125     ifinfo_usage (argv[0]);
126     return (1);
127   }
128   
129   in_file = argv[optind];
130
131   im = new ImageFile ();
132   if (! im->fileRead (in_file)) {
133     sys_error (ERR_WARNING, "Unable to read file %s", in_file.c_str());
134     return (1);
135   }
136
137   if (opt_labels) 
138     im->printLabels (std::cout);
139
140   if (opt_stats) {
141     std::cout << "Size: (" << im->nx() << "," << im->ny() << ")\n";
142     im->printStatistics (std::cout);
143   }
144
145   return (0);
146 }
147
148 #ifndef NO_MAIN
149 int 
150 main (int argc, char *const argv[])
151 {
152   int retval = 1;
153
154   try {
155     retval = ifinfo_main(argc, argv);
156   } catch (exception e) {
157     cerr << "Exception: " << e.what() << std::endl;
158   } catch (...) {
159     cerr << "Unknown exception\n";
160   }
161
162   return (retval);
163 }
164 #endif