source: git/src/extend.c @ 002e35b

RELEASE/1.0RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 002e35b was 168df28, checked in by Olly Betts <olly@…>, 19 years ago

Backport a whole pile of fixes and minor tweaks from 1.1.7.

git-svn-id: file:///home/survex-svn/survex/trunk@3114 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 18.4 KB
Line 
1/* extend.c
2 * Produce an extended elevation
3 * Copyright (C) 1995-2002,2005 Olly Betts
4 * Copyright (C) 2004,2005 John Pybus
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21#ifdef HAVE_CONFIG_H
22# include <config.h>
23#endif
24
25#include <float.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29
30#include "cmdline.h"
31#include "debug.h"
32#include "filelist.h"
33#include "filename.h"
34#include "hash.h"
35#include "img.h"
36#include "message.h"
37#include "useful.h"
38
39/* To save memory we should probably use the prefix hash for the prefix on
40 * point labels (FIXME) */
41
42typedef struct stn {
43   const char *label;
44   int flags;
45   const struct stn *next;
46} stn;
47
48typedef struct POINT {
49   img_point p;
50   const stn *stns;
51   unsigned int order;
52   char dir;
53   char fDone;
54   char fBroken;
55   struct POINT *next;
56} point;
57
58typedef struct LEG {
59   point *fr, *to;
60   const char *prefix;
61   char dir;
62   char fDone;
63   char broken;
64   int flags;
65   struct LEG *next;
66} leg;
67
68/* Values for leg.broken: */
69#define BREAK_FR    0x01
70#define BREAK_TO    0x02
71
72/* Values for point.dir and leg.dir: */
73#define ELEFT  0x01
74#define ERIGHT 0x02
75#define ESWAP  0x04
76
77static point headpoint = {{0, 0, 0}, NULL, 0, 0, 0, 0, NULL};
78
79static leg headleg = {NULL, NULL, NULL, 0, 0, 0, 0, NULL};
80
81static img *pimg_out;
82
83static void do_stn(point *, double, const char *, int, int);
84
85typedef struct pfx {
86   const char *label;
87   struct pfx *next;
88} pfx;
89
90static pfx **htab;
91
92#define HTAB_SIZE 0x2000
93
94static const char *
95find_prefix(const char *prefix)
96{
97   pfx *p;
98   int hash;
99
100   SVX_ASSERT(prefix);
101
102   hash = hash_string(prefix) & (HTAB_SIZE - 1);
103   for (p = htab[hash]; p; p = p->next) {
104      if (strcmp(prefix, p->label) == 0) return p->label;
105   }
106
107   p = osnew(pfx);
108   p->label = osstrdup(prefix);
109   p->next = htab[hash];
110   htab[hash] = p;
111
112   return p->label;
113}
114
115static point *
116find_point(const img_point *pt)
117{
118   point *p;
119   for (p = headpoint.next; p != NULL; p = p->next) {
120      if (pt->x == p->p.x && pt->y == p->p.y && pt->z == p->p.z) {
121         return p;
122      }
123   }
124
125   p = osmalloc(ossizeof(point));
126   p->p = *pt;
127   p->stns = NULL;
128   p->order = 0;
129   p->dir = 0;
130   p->fDone = 0;
131   p->fBroken = 0;
132   p->next = headpoint.next;
133   headpoint.next = p;
134   return p;
135}
136
137static void
138add_leg(point *fr, point *to, const char *prefix, int flags)
139{
140   leg *l;
141   fr->order++;
142   to->order++;
143   l = osmalloc(ossizeof(leg));
144   l->fr = fr;
145   l->to = to;
146   if (prefix)
147      l->prefix = find_prefix(prefix);
148   else
149      l->prefix = NULL;
150   l->next = headleg.next;
151   l->dir = 0;
152   l->fDone = 0;
153   l->broken = 0;
154   l->flags = flags;
155   headleg.next = l;
156}
157
158static void
159add_label(point *p, const char *label, int flags)
160{
161   stn *s = osnew(stn);
162   s->label = osstrdup(label);
163   s->flags = flags;
164   s->next = p->stns;
165   p->stns = s;
166}
167
168/* Read in config file */
169
170
171/* lifted from img.c Should be put somewhere common? JPNP*/
172static char *
173getline_alloc(FILE *fh, size_t ilen)
174{
175   int ch;
176   size_t i = 0;
177   size_t len = ilen;
178   char *buf = xosmalloc(len);
179   if (!buf) return NULL;
180
181   ch = getc(fh);
182   while (ch != '\n' && ch != '\r' && ch != EOF) {
183      buf[i++] = ch;
184      if (i == len - 1) {
185         char *p;
186         len += len;
187         p = xosrealloc(buf, len);
188         if (!p) {
189            osfree(buf);
190            return NULL;
191         }
192         buf = p;
193      }
194      ch = getc(fh);
195   }
196   if (ch == '\n' || ch == '\r') {
197      int otherone = ch ^ ('\n' ^ '\r');
198      ch = getc(fh);
199      /* if it's not the other eol character, put it back */
200      if (ch != otherone) ungetc(ch, fh);
201   }
202   buf[i++] = '\0';
203   return buf;
204}
205
206static int lineno = 0;
207static point *start = NULL;
208
209static char*
210delimword(char *ln, char** lr)
211{
212   char *le;
213
214   while (*ln == ' ' || *ln == '\t' || *ln == '\n' || *ln == '\r')
215      ln++;
216
217   le = ln;
218   while (*le != ' ' && *le != '\t' && *le != '\n' && *le != '\r' && *le != ';' && *le != '\0')
219      le++;
220
221   if (*le == '\0' || *le == ';') {
222      *lr = le;
223   } else {
224      *lr = le + 1;
225   }
226
227   *le = '\0';
228   return ln;
229}
230
231static void
232parseconfigline(char *ln)
233{
234   point *p;
235   const stn *s;
236   const stn *t;
237   leg *l;
238   char *lc = NULL;
239
240   ln = delimword(ln, &lc);
241
242   if (*ln == '\0') return;
243
244   if (strcmp(ln, "*start")==0) {
245      ln = delimword(lc, &lc);
246      if (*ln == 0) fatalerror(/*Command without station name in config, line %i*/602, lineno);
247      for (p = headpoint.next; p != NULL; p = p->next) {
248         for (s = p->stns; s; s = s->next) {
249            if (strcmp(s->label, ln)==0) {
250               start = p;
251               printf(msg(/*Starting from station %s*/604),ln);
252               putnl();
253               goto loopend;
254            }
255         }
256      }
257      warning(/*Failed to find station %s in config, line %i*/603, ln, lineno);
258   } else if (strcmp(ln, "*eleft")==0) {
259      char *ll = delimword(lc, &lc);
260      if (*ll == 0) fatalerror(/*Command without station name in config, line %i*/602,lineno);
261      ln = delimword(lc, &lc);
262      if (*ln == 0) { /* One argument, look for point to switch at. */
263         for (p = headpoint.next; p != NULL; p = p->next) {
264            for (s = p->stns; s; s = s->next) {
265               if (strcmp(s->label, ll)==0) {
266                  printf(msg(/*Plotting to the left from station %s*/605),ll);
267                  putnl();
268                  p->dir = ELEFT;
269                  goto loopend;
270               }
271            }
272         }
273         warning(/*Failed to find station %s in config, line %i*/603, ll, lineno);
274      } else { /* Two arguments look for a specific leg */
275         for (l = headleg.next; l; l=l->next) {
276            point * fr = l->fr;
277            point * to = l->to;
278            if (fr && to) {
279               for (s=fr->stns; s; s=s->next) {
280                  int b = 0;
281                  if (strcmp(s->label,ll)==0 || (strcmp(s->label, ln)==0 && (b = 1)) ) {
282                     char * lr = (b ? ll : ln);
283                     for (t=to->stns; t; t=t->next) {
284                        if (strcmp(t->label,lr)==0) {
285                           printf(msg(/*Plotting to the left from leg %s -> %s*/607), s->label, t->label);
286                           putnl();
287                           l->dir = ELEFT;
288                           goto loopend;
289                        }
290                     }
291                  }
292               }
293            }
294         }
295         warning(/*Failed to find leg %s-%s in config, line %i*/606, ll, ln, lineno);
296      }
297   } else if (strcmp(ln, "*eright")==0) {
298      char *ll = delimword(lc, &lc);
299      if (*ll == 0) fatalerror(/*Command without station name in config, line %i*/602,lineno);
300      ln = delimword(lc, &lc);
301      if (*ln == 0) { /* One argument, look for point to switch at. */
302         for (p = headpoint.next; p != NULL; p = p->next) {
303            for (s = p->stns; s; s = s->next) {
304               if (strcmp(s->label, ll)==0) {
305                  printf(msg(/*Plotting to the right from station %s*/608),ll);
306                  putnl();
307                  p->dir = ERIGHT;
308                  goto loopend;
309               }
310            }
311         }
312         warning(/*Failed to find station %s in config, line %i*/603, ll, lineno);
313      } else { /* Two arguments look for a specific leg */
314         for (l = headleg.next; l; l=l->next) {
315            point * fr = l->fr;
316            point * to = l->to;
317            if (fr && to) {
318               for (s=fr->stns; s; s=s->next) {
319                  int b = 0;
320                  if (strcmp(s->label,ll)==0 || (strcmp(s->label, ln)==0 && (b = 1)) ) {
321                     char * lr = (b ? ll : ln);
322                     for (t=to->stns; t; t=t->next) {
323                        if (strcmp(t->label,lr)==0) {
324                           printf(msg(/*Plotting to the right from leg %s -> %s*/609), s->label, t->label);
325                           printf("\n");
326                           l->dir=ERIGHT;
327                           goto loopend;
328                        }
329                     }
330                  }
331               }
332            }
333         }
334         warning(/*Failed to find leg %s-%s in config, line %i*/606, ll, ln, lineno);
335      }
336   } else if (strcmp(ln, "*eswap")==0) {
337      char *ll = delimword(lc, &lc);
338      if (*ll == 0) fatalerror(/*Command without station name in config, line %i*/602,lineno);
339      ln = delimword(lc, &lc);
340      if (*ln == 0) { /* One argument, look for point to switch at. */
341         for (p = headpoint.next; p != NULL; p = p->next) {
342            for (s = p->stns; s; s = s->next) {
343               if (strcmp(s->label, ll)==0) {
344                  printf(msg(/*Swapping plot direction from station %s*/615),ll);
345                  putnl();
346                  p->dir = ESWAP;
347                  goto loopend;
348               }
349            }
350         }
351         warning(/*Failed to find station %s in config, line %i*/603, ll, lineno);
352      } else { /* Two arguments look for a specific leg */
353         for (l = headleg.next; l; l=l->next) {
354            point * fr = l->fr;
355            point * to = l->to;
356            if (fr && to) {
357               for (s=fr->stns; s; s=s->next) {
358                  int b = 0;
359                  if (strcmp(s->label,ll)==0 || (strcmp(s->label, ln)==0 && (b = 1)) ) {
360                     char * lr = (b ? ll : ln);
361                     for (t=to->stns; t; t=t->next) {
362                        if (strcmp(t->label,lr)==0) {
363                           printf(msg(/*Swapping plot direction from leg %s -> %s*/616), s->label, t->label);
364                           printf("\n");
365                           l->dir = ESWAP;
366                           goto loopend;
367                        }
368                     }
369                  }
370               }
371            }
372         }
373         warning(/*Failed to find leg %s-%s in config, line %i*/606, ll, ln, lineno);
374      }
375   } else if (strcmp(ln, "*break")==0) {
376      char *ll = delimword(lc, &lc);
377      if (*ll == 0) fatalerror(/*Command without station name in config, line %i*/602,lineno);
378      ln = delimword(lc, &lc);
379      if (*ln == 0) { /* One argument, look for point to break at. */
380         for (p = headpoint.next; p != NULL; p = p->next) {
381            for (s = p->stns; s; s = s->next) {
382               if (strcmp(s->label, ll)==0) {
383                  printf(msg(/*Breaking survey at station %s*/610), ll);
384                  putnl();
385                  p->fBroken = 1;
386                  goto loopend;
387               }
388            }
389         }
390         warning(/*Failed to find station %s in config, line %i*/603, ll, lineno);
391      } else { /* Two arguments look for a specific leg */
392         for (l = headleg.next; l; l=l->next) {
393            point * fr = l->fr;
394            point * to = l->to;
395            if (fr && to) {
396               for (s=fr->stns; s; s=s->next) {
397                  int b = 0;
398                  if (strcmp(s->label,ll)==0 || (strcmp(s->label, ln)==0 && (b = 1)) ) {
399                     char * lr = (b ? ll : ln);
400                     for (t=to->stns; t; t=t->next) {
401                        if (strcmp(t->label,lr)==0) {
402                           printf(msg(/*Breaking survey at leg %s -> %s*/611), s->label, t->label);
403                           putnl();
404                           l->broken = (b ? BREAK_TO : BREAK_FR);
405                           goto loopend;
406                        }
407                     }
408                  }
409               }
410            }
411         }
412         warning(/*Failed to find leg %s-%s in config, line %i*/606, ll, ln, lineno);
413      }
414   } else {
415      fatalerror(/*Don't understand command `%s' in config, line %i*/600, ln, lineno);
416   }
417 loopend:
418   ln = delimword(lc, &lc);
419   if (*ln != 0) {
420      fatalerror(/*Unexpected content `%s' in config, line %i*/601, ln, lineno);
421   }
422}
423
424static const struct option long_opts[] = {
425   /* const char *name; int has_arg (0 no_argument, 1 required_*, 2 optional_*); int *flag; int val; */
426   {"survey", required_argument, 0, 's'},
427   {"specfile", required_argument, 0, 'p'},
428   {"help", no_argument, 0, HLP_HELP},
429   {"version", no_argument, 0, HLP_VERSION},
430   {0, 0, 0, 0}
431};
432
433#define short_opts "s:p:"
434
435static struct help_msg help[] = {
436/*                              <-- */
437   {HLP_ENCODELONG(0),          "only load the sub-survey with this prefix"},
438   {HLP_ENCODELONG(1),          "apply specifications from the named file"},
439   {0, 0}
440};
441
442int
443main(int argc, char **argv)
444{
445   const char *fnm_in, *fnm_out;
446   char *desc;
447   img_point pt;
448   int result;
449   point *fr = NULL, *to;
450   double zMax = -DBL_MAX;
451   point *p;
452   const char *survey = NULL;
453   const char *specfile = NULL;
454   img *pimg;
455
456   msg_init(argv);
457
458   cmdline_set_syntax_message("INPUT_3D_FILE [OUTPUT_3D_FILE]", NULL);
459   cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 1, 2);
460   while (1) {
461      int opt = cmdline_getopt();
462      if (opt == EOF) break;
463      if (opt == 's') survey = optarg;
464      if (opt == 'p') specfile = optarg;
465   }
466   fnm_in = argv[optind++];
467   if (argv[optind]) {
468      fnm_out = argv[optind];
469   } else {
470      char * base_in = base_from_fnm(fnm_in);
471      char * base_out = osmalloc(strlen(base_in) + 8);
472      strcpy(base_out, base_in);
473      strcat(base_out, "_extend");
474      fnm_out = add_ext(base_out, EXT_SVX_3D);
475      osfree(base_in);
476      osfree(base_out);
477   }
478
479   /* try to open image file, and check it has correct header */
480   pimg = img_open_survey(fnm_in, survey);
481   if (pimg == NULL) fatalerror(img_error(), fnm_in);
482
483   putnl();
484   puts(msg(/*Reading in data - please wait...*/105));
485
486   htab = osmalloc(ossizeof(pfx*) * HTAB_SIZE);
487   {
488       int i;
489       for (i = 0; i < HTAB_SIZE; ++i) htab[i] = NULL;
490   }
491
492   do {
493      result = img_read_item(pimg, &pt);
494      switch (result) {
495      case img_MOVE:
496         fr = find_point(&pt);
497         break;
498      case img_LINE:
499         if (!fr) {
500            result = img_BAD;
501            break;
502         }
503         to = find_point(&pt);
504         if (!(pimg->flags & (img_FLAG_SURFACE|img_FLAG_SPLAY)))
505            add_leg(fr, to, pimg->label, pimg->flags);
506         fr = to;
507         break;
508      case img_LABEL:
509         to = find_point(&pt);
510         add_label(to, pimg->label, pimg->flags);
511         break;
512      case img_BAD:
513         (void)img_close(pimg);
514         fatalerror(img_error(), fnm_in);
515      }
516   } while (result != img_STOP);
517
518   desc = osmalloc(strlen(pimg->title) + 11 + 1);
519   strcpy(desc, pimg->title);
520   strcat(desc, " (extended)");
521
522   (void)img_close(pimg);
523
524   if (specfile) {
525      FILE *fs = NULL;
526      printf(msg(/*Applying specfile: `%s'*/613), specfile);
527      putnl();
528      fs = fopenWithPthAndExt("", specfile, NULL, "r", NULL);
529      if (fs == NULL) fatalerror(/*Unable to open file*/93, specfile);
530      while (!feof(fs)) {
531         char *lbuf = NULL;
532         lbuf = getline_alloc(fs, 32);
533         lineno++;
534         if (!lbuf) {
535            error(/*Error reading line %i from spec file*/612, lineno);
536            osfree(lbuf);
537            break;
538         }
539         parseconfigline(lbuf);
540         osfree(lbuf);
541      }
542   }
543
544   if (start == NULL) { /* i.e. start wasn't specified in specfile */
545
546      /* start at the highest entrance with some legs attached */
547      for (p = headpoint.next; p != NULL; p = p->next) {
548         if (p->order > 0 && p->p.z > zMax) {
549            const stn *s;
550            for (s = p->stns; s; s = s->next) {
551               if (s->flags & img_SFLAG_ENTRANCE) {
552                  start = p;
553                  zMax = p->p.z;
554                  break;
555               }
556            }
557         }
558      }
559      if (start == NULL) {
560         /* if no entrances with legs, start at the highest 1-node */
561         for (p = headpoint.next; p != NULL; p = p->next) {
562            if (p->order == 1 && p->p.z > zMax) {
563               start = p;
564               zMax = p->p.z;
565            }
566         }
567         /* of course we may have no 1-nodes... */
568         if (start == NULL) {
569            for (p = headpoint.next; p != NULL; p = p->next) {
570               if (p->order != 0 && p->p.z > zMax) {
571                  start = p;
572                  zMax = p->p.z;
573               }
574            }
575            if (start == NULL) {
576               /* There are no legs - just pick the highest station... */
577               for (p = headpoint.next; p != NULL; p = p->next) {
578                  if (p->p.z > zMax) {
579                     start = p;
580                     zMax = p->p.z;
581                  }
582               }
583               if (!start) fatalerror(/*No survey data*/43);
584            }
585         }
586      }
587   }
588
589   printf(msg(/*Writing out .3d file...*/614));
590   putnl();
591   pimg_out = img_open_write(fnm_out, desc, fTrue);
592
593   /* Only does single connected component currently. */
594   do_stn(start, 0.0, NULL, ERIGHT, 0);
595   if (!img_close(pimg_out)) {
596      (void)remove(fnm_out);
597      fatalerror(img_error(), fnm_out);
598   }
599
600   return EXIT_SUCCESS;
601}
602
603static int adjust_direction(int dir, int by) {
604    if (by == ESWAP)
605        return dir ^ (ELEFT|ERIGHT);
606    if (by)
607        return by;
608    return dir;
609}
610
611static void
612do_stn(point *p, double X, const char *prefix, int dir, int labOnly)
613{
614   leg *l, *lp;
615   double dX;
616   const stn *s;
617   int odir = dir;
618
619   for (s = p->stns; s; s = s->next) {
620      img_write_item(pimg_out, img_LABEL, s->flags, s->label, X, 0, p->p.z);
621   }
622   if (labOnly || p->fBroken) {
623      return;
624   }
625
626   lp = &headleg;
627   for (l = lp->next; l; lp = l, l = lp->next) {
628      dir = odir;
629      if (l->fDone) {
630         /* this case happens if a recursive call causes the next leg to be
631          * removed, leaving our next pointing to a leg which has been dealt
632          * with... */
633         continue;
634      }
635      if (l->prefix != prefix) {
636         continue;
637      }
638      if (l->to == p) {
639         if (l->broken & BREAK_TO) continue;
640         lp->next = l->next;
641         /* adjust direction of extension if necessary */
642         dir = adjust_direction(dir, l->to->dir);
643         dir = adjust_direction(dir, l->dir);
644
645         dX = hypot(l->fr->p.x - l->to->p.x, l->fr->p.y - l->to->p.y);
646         if (dir == ELEFT) dX = -dX;
647         img_write_item(pimg_out, img_MOVE, 0, NULL, X + dX, 0, l->fr->p.z);
648         img_write_item(pimg_out, img_LINE, l->flags, l->prefix,
649                        X, 0, l->to->p.z);
650         l->fDone = 1;
651         do_stn(l->fr, X + dX, l->prefix, dir, (l->broken & BREAK_FR));
652         l = lp;
653      } else if (l->fr == p) {
654         if (l->broken & BREAK_FR) continue;
655         lp->next = l->next;
656         /* adjust direction of extension if necessary */
657         dir = adjust_direction(dir, l->fr->dir);
658         dir = adjust_direction(dir, l->dir);
659
660         dX = hypot(l->fr->p.x - l->to->p.x, l->fr->p.y - l->to->p.y);
661         if (dir == ELEFT) dX = -dX;
662         img_write_item(pimg_out, img_MOVE, 0, NULL, X, 0, l->fr->p.z);
663         img_write_item(pimg_out, img_LINE, l->flags, l->prefix,
664                        X + dX, 0, l->to->p.z);
665         l->fDone = 1;
666         do_stn(l->to, X + dX, l->prefix, dir, (l->broken & BREAK_TO));
667         l = lp;
668      }
669   }
670   lp = &headleg;
671   for (l = lp->next; l; lp = l, l = lp->next) {
672      dir = odir;
673      if (l->fDone) {
674         /* this case happens iff a recursive call causes the next leg to be
675          * removed, leaving our next pointing to a leg which has been dealt
676          * with... */
677         continue;
678      }
679      if (l->to == p) {
680         if (l->broken & BREAK_TO) continue;
681         lp->next = l->next;
682         /* adjust direction of extension if necessary */
683         dir = adjust_direction(dir, l->to->dir);
684         dir = adjust_direction(dir, l->dir);
685
686         dX = hypot(l->fr->p.x - l->to->p.x, l->fr->p.y - l->to->p.y);
687         if (dir == ELEFT) dX = -dX;
688         img_write_item(pimg_out, img_MOVE, 0, NULL, X + dX, 0, l->fr->p.z);
689         img_write_item(pimg_out, img_LINE, l->flags, l->prefix,
690                        X, 0, l->to->p.z);
691         l->fDone = 1;
692         do_stn(l->fr, X + dX, l->prefix, dir, (l->broken & BREAK_FR));
693         l = lp;
694      } else if (l->fr == p) {
695         if (l->broken & BREAK_FR) continue;
696         lp->next = l->next;
697         /* adjust direction of extension if necessary */
698         dir = adjust_direction(dir, l->fr->dir);
699         dir = adjust_direction(dir, l->dir);
700
701         dX = hypot(l->fr->p.x - l->to->p.x, l->fr->p.y - l->to->p.y);
702         if (dir == ELEFT) dX = -dX;
703         img_write_item(pimg_out, img_MOVE, 0, NULL, X, 0, l->fr->p.z);
704         img_write_item(pimg_out, img_LINE, l->flags, l->prefix,
705                        X + dX, 0, l->to->p.z);
706         l->fDone = 1;
707         do_stn(l->to, X + dX, l->prefix, dir, (l->broken & BREAK_TO));
708         l = lp;
709      }
710   }
711}
Note: See TracBrowser for help on using the repository browser.