source: git/src/diffpos.c @ fc4ee5b

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since fc4ee5b was ee1ec59, checked in by Olly Betts <olly@…>, 22 years ago

Merging from 1.0 branch again.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@2063 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 6.3 KB
Line 
1/* diffpos.c */
2/* Utility to compare two SURVEX .pos or .3d files */
3/* Copyright (C) 1994,1996,1998-2002 Olly Betts
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19
20#ifdef HAVE_CONFIG_H
21# include <config.h>
22#endif
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <math.h>
28
29#include "cavern.h" /* just for REAL_EPSILON */
30#include "cmdline.h"
31#include "debug.h"
32#include "filelist.h"
33#include "hash.h"
34#include "img.h"
35#include "namecmp.h"
36#include "useful.h"
37
38/* very small value for comparing floating point numbers with */
39#define EPSILON (REAL_EPSILON * 1000)
40
41/* default threshold is 1cm */
42#define DFLT_MAX_THRESHOLD 0.01
43
44static double threshold = DFLT_MAX_THRESHOLD;
45
46static const struct option long_opts[] = {
47   /* const char *name; int has_arg (0 no_argument, 1 required_*, 2 optional_*); int *flag; int val; */
48   {"survey", required_argument, 0, 's'},
49   {"help", no_argument, 0, HLP_HELP},
50   {"version", no_argument, 0, HLP_VERSION},
51   {0, 0, 0, 0}
52};
53
54#define short_opts "s:"
55
56static struct help_msg help[] = {
57/*                              <-- */
58   {HLP_ENCODELONG(0),          "only load the sub-survey with this prefix"},
59   {0, 0}
60};
61
62typedef struct station {
63   struct station *next;
64   char *name;
65   img_point pt;
66} station;
67
68typedef struct added {
69   struct added *next;
70   char *name;
71} added;
72
73static int old_separator, new_separator, sort_separator;
74
75static int
76cmp_pname(const void *a, const void *b)
77{
78   return name_cmp(*(const char **)a, *(const char **)b, sort_separator);
79}
80
81static station **htab;
82static bool fChanged = fFalse;
83
84static added *added_list = NULL;
85static OSSIZE_T c_added = 0;
86
87static void
88tree_init(void)
89{
90   size_t i;
91   htab = osmalloc(0x2000 * ossizeof(station *));
92   for (i = 0; i < 0x2000; i++) htab[i] = NULL;
93}
94
95static void
96tree_insert(const char *name, const img_point *pt)
97{
98   int v = hash_string(name) & 0x1fff;
99   station *stn;
100
101   /* Catch duplicate labels - .3d files shouldn't have them, but some do
102    * due to a couple of bugs in some versions of Survex
103    */
104   for (stn = htab[v]; stn; stn = stn->next) {
105      if (strcmp(stn->name, name) == 0) return; /* found dup */
106   }
107
108   stn = osnew(station);
109   stn->name = osstrdup(name);
110   stn->pt = *pt;
111   stn->next = htab[v];
112   htab[v] = stn;
113}
114
115static void
116tree_remove(const char *name, const img_point *pt)
117{
118   int v = hash_string(name) & 0x1fff;
119   station **prev;
120   station *p;
121
122   for (prev = &htab[v]; *prev; prev = &((*prev)->next)) {
123      if (strcmp((*prev)->name, name) == 0) break;
124   }
125
126   if (!*prev) {
127      added *add = osnew(added);
128      add->name = osstrdup(name);
129      add->next = added_list;
130      added_list = add;
131      c_added++;
132      fChanged = fTrue;
133      return;
134   }
135
136   if (fabs(pt->x - (*prev)->pt.x) - threshold > EPSILON ||
137       fabs(pt->y - (*prev)->pt.y) - threshold > EPSILON ||
138       fabs(pt->z - (*prev)->pt.z) - threshold > EPSILON) {
139      printf(msg(/*Moved by (%3.2f,%3.2f,%3.2f): %s*/500),
140             pt->x - (*prev)->pt.x,
141             pt->y - (*prev)->pt.y,
142             pt->z - (*prev)->pt.z,
143             name);
144      putnl();
145      fChanged = fTrue;
146   }
147
148   osfree((*prev)->name);
149   p = *prev;
150   *prev = p->next;
151   osfree(p);
152}
153
154static int
155tree_check(void)
156{
157   size_t c = 0;
158   char **names;
159   size_t i;
160
161   if (c_added) {
162      names = osmalloc(c_added * ossizeof(char *));
163      for (i = 0; i < c_added; i++) {
164         added *old;
165         SVX_ASSERT(added_list);
166         names[i] = added_list->name;
167         old = added_list;
168         added_list = old->next;
169         osfree(old);
170      }
171      SVX_ASSERT(added_list == NULL);
172      sort_separator = new_separator;
173      qsort(names, c_added, sizeof(char *), cmp_pname);
174      for (i = 0; i < c_added; i++) {
175         printf(msg(/*Added: %s*/501), names[i]);
176         putnl();
177         osfree(names[i]);
178      }
179      osfree(names);
180   }
181
182   for (i = 0; i < 0x2000; i++) {
183      station *p;
184      for (p = htab[i]; p; p = p->next) c++;
185   }
186   if (c == 0) return fChanged;
187
188   names = osmalloc(c * ossizeof(char *));
189   c = 0;
190   for (i = 0; i < 0x2000; i++) {
191      station *p;
192      for (p = htab[i]; p; p = p->next) names[c++] = p->name;
193   }
194   sort_separator = old_separator;
195   qsort(names, c, sizeof(char *), cmp_pname);
196   for (i = 0; i < c; i++) {
197      printf(msg(/*Deleted: %s*/502), names[i]);
198      putnl();
199   }
200   return fTrue;
201}
202
203static int
204parse_file(const char *fnm, const char *survey,
205           void (*tree_func)(const char *, const img_point *))
206{
207   img_point pt;
208   int result;
209   int separator;
210
211   img *pimg = img_open_survey(fnm, survey);
212   if (!pimg) fatalerror(img_error(), fnm);
213   separator = pimg->separator;
214
215   do {
216      result = img_read_item(pimg, &pt);
217      switch (result) {
218       case img_MOVE:
219       case img_LINE:
220         break;
221       case img_LABEL:
222         tree_func(pimg->label, &pt);
223         break;
224       case img_BAD:
225         img_close(pimg);
226         fatalerror(img_error(), fnm);
227      }
228   } while (result != img_STOP);
229
230   img_close(pimg);
231   return separator;
232}
233
234int
235main(int argc, char **argv)
236{
237   char *fnm1, *fnm2;
238   const char *survey = NULL;
239
240   msg_init(argv);
241
242   cmdline_set_syntax_message("FILE1 FILE2 [THRESHOLD]",
243                              "FILE1 and FILE2 can be .pos or .3d files\n"
244                              "THRESHOLD is the max. ignorable change along "
245                              "any axis in metres (default "
246                              STRING(DFLT_MAX_THRESHOLD)")");
247   cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 2, 3);
248   while (1) {
249      int opt = cmdline_getopt();
250      if (opt == EOF) break;
251      if (opt == 's') survey = optarg;
252   }
253   fnm1 = argv[optind++];
254   fnm2 = argv[optind++];
255   if (argv[optind]) {
256      optarg = argv[optind];
257      threshold = cmdline_double_arg();
258   }
259
260   tree_init();
261
262   old_separator = parse_file(fnm1, survey, tree_insert);
263
264   new_separator = parse_file(fnm2, survey, tree_remove);
265
266   return tree_check() ? EXIT_FAILURE : EXIT_SUCCESS;
267}
Note: See TracBrowser for help on using the repository browser.