ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rfluxmtx.c
(Generate patch)

Comparing ray/src/util/rfluxmtx.c (file contents):
Revision 2.28 by greg, Tue May 19 12:13:53 2015 UTC vs.
Revision 2.35 by greg, Fri Mar 4 00:21:21 2016 UTC

# Line 11 | Line 11 | static const char RCSid[] = "$Id$";
11   #include <stdlib.h>
12   #include "rtio.h"
13   #include "rtmath.h"
14 < #include "rtprocess.h"
14 > #include "paths.h"
15   #include "bsdf.h"
16   #include "bsdf_m.h"
17   #include "random.h"
18   #include "triangulate.h"
19   #include "platform.h"
20  
21 #ifdef getc_unlocked            /* avoid horrendous overhead of flockfile */
22 #undef getc
23 #define getc    getc_unlocked
24 #endif
25
26 #ifdef _WIN32
27 #define SPECIALS        " \t\"$*?"
28 #define QUOTCHAR        '"'
29 #else
30 #define SPECIALS        " \t\n'\"()${}*?[];|&"
31 #define QUOTCHAR        '\''
32 #define ALTQUOT         '"'
33 #endif
34
21   #define MAXRCARG        512
22  
23   char            *progname;              /* global argv[0] */
# Line 156 | Line 142 | oconv_command(int ac, char *av[])
142                  strcpy(cp, *av++);
143                  while (*cp) cp++;
144                  *cp++ = ' ';
145 <                if (cp >= oconvbuf+(sizeof(oconvbuf)-32)) {
146 <                        fputs(progname, stderr);
161 <                        fputs(": too many file arguments!\n", stderr);
162 <                        exit(1);
163 <                }
145 >                if (cp >= oconvbuf+(sizeof(oconvbuf)-32))
146 >                        goto overrun;
147          }
148 <        strcpy(cp, recv);       /* receiver goes last */
148 >                                /* receiver goes last */
149 >        if (matchany(recv, SPECIALS)) {
150 >                *cp++ = QUOTCHAR;
151 >                while (*recv) {
152 >                        if (cp >= oconvbuf+(sizeof(oconvbuf)-3))
153 >                                goto overrun;
154 >                        *cp++ = *recv++;
155 >                }
156 >                *cp++ = QUOTCHAR;
157 >                *cp = '\0';
158 >        } else
159 >                strcpy(cp, recv);
160          return(oconvbuf);
161 + overrun:
162 +        fputs(progname, stderr);
163 +        fputs(": too many file arguments!\n", stderr);
164 +        exit(1);
165   }
166  
169 /* Check if any of the characters in str2 are found in str1 */
170 static int
171 matchany(const char *str1, const char *str2)
172 {
173        while (*str1) {
174                const char      *cp = str2;
175                while (*cp)
176                        if (*cp++ == *str1)
177                                return(*str1);
178                ++str1;
179        }
180        return(0);
181 }
182
183
184 /* Convert a set of arguments into a command line for pipe() or system() */
185 static char *
186 convert_commandline(char *cmd, const int len, char *av[])
187 {
188        int     match;
189        char    *cp;
190
191        for (cp = cmd; *av != NULL; av++) {
192                const int       n = strlen(*av);
193                if (cp+n >= cmd+(len-3)) {
194                        fputs(progname, stderr);
195                        return(NULL);
196                }
197                if ((match = matchany(*av, SPECIALS))) {
198                        const int       quote =
199 #ifdef ALTQUOT
200                                (match == QUOTCHAR) ? ALTQUOT :
201 #endif
202                                        QUOTCHAR;
203                        *cp++ = quote;
204                        strcpy(cp, *av);
205                        cp += n;
206                        *cp++ = quote;
207                } else {
208                        strcpy(cp, *av);
209                        cp += n;
210                }
211                *cp++ = ' ';
212        }
213        if (cp <= cmd)
214                return(NULL);
215        *--cp = '\0';
216        return(cmd);
217 }
218
167   /* Open a pipe to/from a command given as an argument list */
168   static FILE *
169   popen_arglist(char *av[], char *mode)
# Line 318 | Line 266 | parse_params(PARAMS *p, char *pargs)
266   {
267          char    *cp = pargs;
268          int     nparams = 0;
269 +        int     quot;
270          int     i;
271  
272          for ( ; ; ) {
# Line 354 | Line 303 | parse_params(PARAMS *p, char *pargs)
303                  case 'o':
304                          if (*cp++ != '=')
305                                  break;
306 +                        quot = 0;
307 +                        if ((*cp == '"') | (*cp == '\''))
308 +                                quot = *cp++;
309                          i = 0;
310 <                        while (*cp && !isspace(*cp++))
311 <                                i++;
310 >                        while (*cp && (quot ? (*cp != quot) : !isspace(*cp))) {
311 >                                i++; cp++;
312 >                        }
313                          if (!i)
314                                  break;
315 <                        *--cp = '\0';
315 >                        if (!*cp) {
316 >                                if (quot)
317 >                                        break;
318 >                                cp[1] = '\0';
319 >                        }
320 >                        *cp = '\0';
321                          p->outfn = savqstr(cp-i);
322 <                        *cp++ = ' ';
322 >                        *cp++ = quot ? quot : ' ';
323                          ++nparams;
324                          continue;
325                  case ' ':
# Line 530 | Line 488 | make_axes(FVECT uva[2], const FVECT nrm)
488   {
489          int     i;
490  
491 <        if (!getperpendicular(uva[0], nrm)) {
491 >        if (!getperpendicular(uva[0], nrm, 1)) {
492                  fputs(progname, stderr);
493                  fputs(": bad surface normal in make_axes!\n", stderr);
494                  exit(1);
# Line 674 | Line 632 | sample_origin(PARAMS *p, FVECT orig, const FVECT rdir,
632                                          /* special case for lone surface */
633          if (p->nsurfs == 1) {
634                  sp = p->slist;
635 <                if (DOT(sp->snrm, rdir) >= -FTINY) {
635 >                if (DOT(sp->snrm, rdir) >= FTINY) {
636                          fprintf(stderr,
637                                  "%s: internal - sample behind sender '%s'\n",
638                                          progname, sp->sname);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines