main.c 4.38 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
/*
*				main.c
*
* Command line parsing.
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*
*	This file part of:	SExtractor
*
*	Copyright:		(C) 1993,1998-2010 IAP/CNRS/UPMC
*				(C) 1994,1997 ESO
*				(C) 1995,1996 Sterrewacht Leiden
Emmanuel Bertin's avatar
Emmanuel Bertin committed
13
*
14
*	Author:			Emmanuel Bertin (IAP)
Emmanuel Bertin's avatar
Emmanuel Bertin committed
15
*
16
*	License:		GNU General Public License
Emmanuel Bertin's avatar
Emmanuel Bertin committed
17
*
18
19
20
21
22
23
24
25
26
27
*	SExtractor is free software: you can redistribute it and/or modify
*	it under the terms of the GNU General Public License as published by
*	the Free Software Foundation, either version 3 of the License, or
*	(at your option) any later version.
*	SExtractor is distributed in the hope that it will be useful,
*	but WITHOUT ANY WARRANTY; without even the implied warranty of
*	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*	GNU General Public License for more details.
*	You should have received a copy of the GNU General Public License
*	along with SExtractor. If not, see <http://www.gnu.org/licenses/>.
Emmanuel Bertin's avatar
Emmanuel Bertin committed
28
*
29
*	Last modified:		11/10/2010
Emmanuel Bertin's avatar
Emmanuel Bertin committed
30
*
31
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
Emmanuel Bertin's avatar
Emmanuel Bertin committed
32
33
34
35
36
37
38
39
40
41
42
43
44

#ifdef HAVE_CONFIG_H
#include        "config.h"
#endif

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

#include	"define.h"
#include	"globals.h"
#include	"prefs.h"
Emmanuel Bertin's avatar
Emmanuel Bertin committed
45
#include "pattern.h"
Emmanuel Bertin's avatar
Emmanuel Bertin committed
46
47
#define		SYNTAX \
EXECUTABLE " <image> [<image2>][-c <configuration_file>][-<keyword> <value>]\n" \
Emmanuel Bertin's avatar
Emmanuel Bertin committed
48
49
50
"> to dump a default configuration file:          " EXECUTABLE " -d \n" \
"> to dump a default extended configuration file: " EXECUTABLE " -dd \n" \
"> to dump a full list of measurement parameters: " EXECUTABLE " -dp \n"
Emmanuel Bertin's avatar
Emmanuel Bertin committed
51
52

extern const char       notokstr[];
Emmanuel Bertin's avatar
Emmanuel Bertin committed
53
extern keystruct	objkey[];
Emmanuel Bertin's avatar
Emmanuel Bertin committed
54
55
56
57
58

/********************************** main ************************************/
int	main(int argc, char *argv[])

  {
59
   double	tdiff, lines, dets;
Emmanuel Bertin's avatar
Emmanuel Bertin committed
60
61
62
   int		a, narg, nim, opt, opt2;
   char		**argkey, **argval, *str;

63
64
setlinebuf(stdout);
 if (argc<2)
Emmanuel Bertin's avatar
Emmanuel Bertin committed
65
66
    {
    fprintf(OUTPUT, "\n         %s  version %s (%s)\n", BANNER,MYVERSION,DATE);
67
68
69
70
    fprintf(OUTPUT, "\nby %s\n", AUTHORS);
    fprintf(OUTPUT, "Copyright %s\n", COPYRIGHT);
    fprintf(OUTPUT, "\nvisit %s\n", WEBSITE);
    fprintf(OUTPUT, "\n%s\n", DISCLAIMER);
Emmanuel Bertin's avatar
Emmanuel Bertin committed
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
    error(EXIT_SUCCESS, "SYNTAX: ", SYNTAX);
    }
  QMALLOC(argkey, char *, argc);
  QMALLOC(argval, char *, argc);

/*default parameters */
  prefs.command_line = argv;
  prefs.ncommand_line = argc;
  prefs.pipe_flag = 0;
  prefs.nimage_name = 1;
  prefs.image_name[0] = "image";
  strcpy(prefs.prefs_name, "default.sex");
  narg = nim = 0;

  for (a=1; a<argc; a++)
    {
    if (*(argv[a]) == '-')
      {
      opt = (int)argv[a][1];
      if (strlen(argv[a])<4 || opt == '-')
        {
        opt2 = (int)tolower((int)argv[a][2]);
        if (opt == '-')
          {
          opt = opt2;
          opt2 = (int)tolower((int)argv[a][3]);
          }
        switch(opt)
          {
          case 'c':
            if (a<(argc-1))
              strcpy(prefs.prefs_name, argv[++a]);
            break;
          case 'd':
Emmanuel Bertin's avatar
Emmanuel Bertin committed
105
106
107
108
109
110
            if (opt2=='d')
              dumpprefs(1);
            else if (opt2=='p')
              dumpparams();
            else
              dumpprefs(0);
Emmanuel Bertin's avatar
Emmanuel Bertin committed
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
            exit(EXIT_SUCCESS);
            break;
          case 'v':
            printf("%s version %s (%s)\n", BANNER,MYVERSION,DATE);
            exit(0);
            break;
          case 'h':
          default:
            error(EXIT_SUCCESS,"SYNTAX: ", SYNTAX);
          }
        }
      else
        {
/*------ Config parameters */
        argkey[narg] = &argv[a][1];
        argval[narg++] = argv[++a];
        }       
      }
    else
      {
/*---- The input image filename(s) */
      for(; (a<argc) && (*argv[a]!='-'); a++)
        for (str=NULL;(str=strtok(str?NULL:argv[a], notokstr)); nim++)
          if (nim<MAXIMAGE)
            prefs.image_name[nim] = str;
          else
            error(EXIT_FAILURE, "*Error*: Too many input images: ", str);
      prefs.nimage_name = nim;
      a--;
      }
    }

  readprefs(prefs.prefs_name, argkey, argval, narg);
Emmanuel Bertin's avatar
Emmanuel Bertin committed
144
  preprefs();
Emmanuel Bertin's avatar
Emmanuel Bertin committed
145
146
147
148
149
150

  free(argkey);
  free(argval);

  makeit();

Emmanuel Bertin's avatar
Emmanuel Bertin committed
151
  endprefs();
Emmanuel Bertin's avatar
Emmanuel Bertin committed
152
  NFPRINTF(OUTPUT, "");
153
  tdiff = prefs.time_diff>0.0? prefs.time_diff : 0.001;
154
155
156
  lines = (double)thefield1.height/tdiff;
  dets = (double)thecat.ntotal/tdiff;
  NPRINTF(OUTPUT,
157
	"> All done (in %.1f s: %.1f line%s/s , %.1f detection%s/s)\n",
158
	prefs.time_diff, lines, lines>1.0? "s":"", dets, dets>1.0? "s":"");
Emmanuel Bertin's avatar
Emmanuel Bertin committed
159
160
161
162

  return EXIT_SUCCESS;
  }