Coverage Report

Created: 2026-08-13 07:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/PROJ/src/pipeline.cpp
Line
Count
Source
1
/*******************************************************************************
2
3
                       Transformation pipeline manager
4
5
                    Thomas Knudsen, 2016-05-20/2016-11-20
6
7
********************************************************************************
8
9
    Geodetic transformations are typically organized in a number of
10
    steps. For example, a datum shift could be carried out through
11
    these steps:
12
13
    1. Convert (latitude, longitude, ellipsoidal height) to
14
       3D geocentric cartesian coordinates (X, Y, Z)
15
    2. Transform the (X, Y, Z) coordinates to the new datum, using a
16
       7 parameter Helmert transformation.
17
    3. Convert (X, Y, Z) back to (latitude, longitude, ellipsoidal height)
18
19
    If the height system used is orthometric, rather than ellipsoidal,
20
    another step is needed at each end of the process:
21
22
    1. Add the local geoid undulation (N) to the orthometric height
23
       to obtain the ellipsoidal (i.e. geometric) height.
24
    2. Convert (latitude, longitude, ellipsoidal height) to
25
       3D geocentric cartesian coordinates (X, Y, Z)
26
    3. Transform the (X, Y, Z) coordinates to the new datum, using a
27
       7 parameter Helmert transformation.
28
    4. Convert (X, Y, Z) back to (latitude, longitude, ellipsoidal height)
29
    5. Subtract the local geoid undulation (N) from the ellipsoidal height
30
       to obtain the orthometric height.
31
32
    Additional steps can be added for e.g. change of vertical datum, so the
33
    list can grow fairly long. None of the steps are, however, particularly
34
    complex, and data flow is strictly from top to bottom.
35
36
    Hence, in principle, the first example above could be implemented using
37
    Unix pipelines:
38
39
    cat my_coordinates | geographic_to_xyz | helmert | xyz_to_geographic >
40
my_transformed_coordinates
41
42
    in the grand tradition of Software Tools [1].
43
44
    The proj pipeline driver implements a similar concept: Stringing together
45
    a number of steps, feeding the output of one step to the input of the next.
46
47
    It is a very powerful concept, that increases the range of relevance of the
48
    proj.4 system substantially. It is, however, not a particularly intrusive
49
    addition to the PROJ.4 code base: The implementation is by and large
50
completed by adding an extra projection called "pipeline" (i.e. this file),
51
which handles all business, and a small amount of added functionality in the
52
    pj_init code, implementing support for multilevel, embedded pipelines.
53
54
    Syntactically, the pipeline system introduces the "+step" keyword (which
55
    indicates the start of each transformation step), and reintroduces the +inv
56
    keyword (indicating that a given transformation step should run in reverse,
57
i.e. forward, when the pipeline is executed in inverse direction, and vice
58
versa).
59
60
    Hence, the first transformation example above, can be implemented as:
61
62
    +proj=pipeline +step proj=cart +step proj=helmert <ARGS> +step proj=cart
63
+inv
64
65
    Where <ARGS> indicate the Helmert arguments: 3 translations (+x=..., +y=...,
66
    +z=...), 3 rotations (+rx=..., +ry=..., +rz=...) and a scale factor
67
(+s=...). Following geodetic conventions, the rotations are given in arcseconds,
68
    and the scale factor is given as parts-per-million.
69
70
    [1] B. W. Kernighan & P. J. Plauger: Software tools.
71
        Reading, Massachusetts, Addison-Wesley, 1976, 338 pp.
72
73
********************************************************************************
74
75
Thomas Knudsen, thokn@sdfe.dk, 2016-05-20
76
77
********************************************************************************
78
* Copyright (c) 2016, 2017, 2018 Thomas Knudsen / SDFE
79
*
80
* Permission is hereby granted, free of charge, to any person obtaining a
81
* copy of this software and associated documentation files (the "Software"),
82
* to deal in the Software without restriction, including without limitation
83
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
84
* and/or sell copies of the Software, and to permit persons to whom the
85
* Software is furnished to do so, subject to the following conditions:
86
*
87
* The above copyright notice and this permission notice shall be included
88
* in all copies or substantial portions of the Software.
89
*
90
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
91
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
92
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
93
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
94
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
95
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
96
* DEALINGS IN THE SOFTWARE.
97
*
98
********************************************************************************/
99
100
#include <math.h>
101
#include <stack>
102
#include <stddef.h>
103
#include <string.h>
104
#include <vector>
105
106
#include "geodesic.h"
107
#include "proj.h"
108
#include "proj_internal.h"
109
110
PROJ_HEAD(pipeline, "Transformation pipeline manager");
111
PROJ_HEAD(pop, "Retrieve coordinate value from pipeline stack");
112
PROJ_HEAD(push, "Save coordinate value on pipeline stack");
113
114
/* Projection specific elements for the PJ object */
115
namespace { // anonymous namespace
116
117
struct Step {
118
    PJ *pj = nullptr;
119
    bool omit_fwd = false;
120
    bool omit_inv = false;
121
122
    Step(PJ *pjIn, bool omitFwdIn, bool omitInvIn)
123
169k
        : pj(pjIn), omit_fwd(omitFwdIn), omit_inv(omitInvIn) {}
124
    Step(Step &&other)
125
177k
        : pj(std::move(other.pj)), omit_fwd(other.omit_fwd),
126
177k
          omit_inv(other.omit_inv) {
127
177k
        other.pj = nullptr;
128
177k
    }
129
    Step(const Step &) = delete;
130
    Step &operator=(const Step &) = delete;
131
132
346k
    ~Step() { proj_destroy(pj); }
133
};
134
135
struct Pipeline {
136
    char **argv = nullptr;
137
    char **current_argv = nullptr;
138
    std::vector<Step> steps{};
139
    std::stack<double> stack[4];
140
};
141
142
struct PushPop {
143
    bool v1;
144
    bool v2;
145
    bool v3;
146
    bool v4;
147
};
148
} // anonymous namespace
149
150
static void pipeline_forward_4d(PJ_COORD &point, PJ *P);
151
static void pipeline_reverse_4d(PJ_COORD &point, PJ *P);
152
static PJ_XYZ pipeline_forward_3d(PJ_LPZ lpz, PJ *P);
153
static PJ_LPZ pipeline_reverse_3d(PJ_XYZ xyz, PJ *P);
154
static PJ_XY pipeline_forward(PJ_LP lp, PJ *P);
155
static PJ_LP pipeline_reverse(PJ_XY xy, PJ *P);
156
157
0
static void pipeline_reassign_context(PJ *P, PJ_CONTEXT *ctx) {
158
0
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
159
0
    for (auto &step : pipeline->steps)
160
0
        proj_assign_context(step.pj, ctx);
161
0
}
162
163
1.97M
static void pipeline_forward_4d(PJ_COORD &point, PJ *P) {
164
1.97M
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
165
5.40M
    for (auto &step : pipeline->steps) {
166
5.40M
        if (!step.omit_fwd) {
167
5.40M
            if (!step.pj->inverted)
168
4.80M
                pj_fwd4d(point, step.pj);
169
603k
            else
170
603k
                pj_inv4d(point, step.pj);
171
5.40M
            if (point.xyzt.x == HUGE_VAL) {
172
20.3k
                break;
173
20.3k
            }
174
5.40M
        }
175
5.40M
    }
176
1.97M
}
177
178
0
static void pipeline_reverse_4d(PJ_COORD &point, PJ *P) {
179
0
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
180
0
    for (auto iterStep = pipeline->steps.rbegin();
181
0
         iterStep != pipeline->steps.rend(); ++iterStep) {
182
0
        const auto &step = *iterStep;
183
0
        if (!step.omit_inv) {
184
0
            if (step.pj->inverted)
185
0
                pj_fwd4d(point, step.pj);
186
0
            else
187
0
                pj_inv4d(point, step.pj);
188
0
            if (point.xyzt.x == HUGE_VAL) {
189
0
                break;
190
0
            }
191
0
        }
192
0
    }
193
0
}
194
195
0
static PJ_XYZ pipeline_forward_3d(PJ_LPZ lpz, PJ *P) {
196
0
    PJ_COORD point = {{0, 0, 0, 0}};
197
0
    point.lpz = lpz;
198
0
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
199
0
    for (auto &step : pipeline->steps) {
200
0
        if (!step.omit_fwd) {
201
0
            point = pj_approx_3D_trans(step.pj, PJ_FWD, point);
202
0
            if (point.xyzt.x == HUGE_VAL) {
203
0
                break;
204
0
            }
205
0
        }
206
0
    }
207
208
0
    return point.xyz;
209
0
}
210
211
0
static PJ_LPZ pipeline_reverse_3d(PJ_XYZ xyz, PJ *P) {
212
0
    PJ_COORD point = {{0, 0, 0, 0}};
213
0
    point.xyz = xyz;
214
0
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
215
0
    for (auto iterStep = pipeline->steps.rbegin();
216
0
         iterStep != pipeline->steps.rend(); ++iterStep) {
217
0
        const auto &step = *iterStep;
218
0
        if (!step.omit_inv) {
219
0
            point = proj_trans(step.pj, PJ_INV, point);
220
0
            if (point.xyzt.x == HUGE_VAL) {
221
0
                break;
222
0
            }
223
0
        }
224
0
    }
225
226
0
    return point.lpz;
227
0
}
228
229
0
static PJ_XY pipeline_forward(PJ_LP lp, PJ *P) {
230
0
    PJ_COORD point = {{0, 0, 0, 0}};
231
0
    point.lp = lp;
232
0
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
233
0
    for (auto &step : pipeline->steps) {
234
0
        if (!step.omit_fwd) {
235
0
            point = pj_approx_2D_trans(step.pj, PJ_FWD, point);
236
0
            if (point.xyzt.x == HUGE_VAL) {
237
0
                break;
238
0
            }
239
0
        }
240
0
    }
241
242
0
    return point.xy;
243
0
}
244
245
0
static PJ_LP pipeline_reverse(PJ_XY xy, PJ *P) {
246
0
    PJ_COORD point = {{0, 0, 0, 0}};
247
0
    point.xy = xy;
248
0
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
249
0
    for (auto iterStep = pipeline->steps.rbegin();
250
0
         iterStep != pipeline->steps.rend(); ++iterStep) {
251
0
        const auto &step = *iterStep;
252
0
        if (!step.omit_inv) {
253
0
            point = pj_approx_2D_trans(step.pj, PJ_INV, point);
254
0
            if (point.xyzt.x == HUGE_VAL) {
255
0
                break;
256
0
            }
257
0
        }
258
0
    }
259
260
0
    return point.lp;
261
0
}
262
263
36.9k
static PJ *destructor(PJ *P, int errlev) {
264
36.9k
    if (nullptr == P)
265
0
        return nullptr;
266
267
36.9k
    if (nullptr == P->opaque)
268
0
        return pj_default_destructor(P, errlev);
269
270
36.9k
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
271
272
36.9k
    free(pipeline->argv);
273
36.9k
    free(pipeline->current_argv);
274
275
36.9k
    delete pipeline;
276
36.9k
    P->opaque = nullptr;
277
278
36.9k
    return pj_default_destructor(P, errlev);
279
36.9k
}
280
281
/* count the number of args in pipeline definition, and mark all args as used */
282
36.9k
static size_t argc_params(paralist *params) {
283
36.9k
    size_t argc = 0;
284
1.93M
    for (; params != nullptr; params = params->next) {
285
1.89M
        argc++;
286
1.89M
        params->used = 1;
287
1.89M
    }
288
36.9k
    return ++argc; /* one extra for the sentinel */
289
36.9k
}
290
291
/* Sentinel for argument list */
292
static const char *argv_sentinel = "step";
293
294
/* turn paralist into argc/argv style argument list */
295
36.9k
static char **argv_params(paralist *params, size_t argc) {
296
36.9k
    char **argv;
297
36.9k
    size_t i = 0;
298
36.9k
    argv = static_cast<char **>(calloc(argc, sizeof(char *)));
299
36.9k
    if (nullptr == argv)
300
0
        return nullptr;
301
1.93M
    for (; params != nullptr; params = params->next)
302
1.89M
        argv[i++] = params->param;
303
36.9k
    argv[i++] = const_cast<char *>(argv_sentinel);
304
36.9k
    return argv;
305
36.9k
}
306
307
/* Being the special operator that the pipeline is, we have to handle the    */
308
/* ellipsoid differently than usual. In general, the pipeline operation does */
309
/* not need an ellipsoid, but in some cases it is beneficial nonetheless.    */
310
/* Unfortunately we can't use the normal ellipsoid setter in pj_init, since  */
311
/* it adds a +ellps parameter to the global args if nothing else is specified*/
312
/* This is problematic since that ellipsoid spec is then passed on to the    */
313
/* pipeline children. This is rarely what we want, so here we implement our  */
314
/* own logic instead. If an ellipsoid is set in the global args, it is used  */
315
/* as the pipeline ellipsoid. Otherwise we use GRS80 parameters as default.  */
316
/* At last we calculate the rest of the ellipsoid parameters and             */
317
/* re-initialize P->geod.                                                    */
318
35.2k
static void set_ellipsoid(PJ *P) {
319
35.2k
    paralist *cur, *attachment;
320
35.2k
    int err = proj_errno_reset(P);
321
322
    /* Break the linked list after the global args */
323
35.2k
    attachment = nullptr;
324
148k
    for (cur = P->params; cur != nullptr; cur = cur->next)
325
        /* cur->next will always be non 0 given argv_sentinel presence, */
326
        /* but this is far from being obvious for a static analyzer */
327
148k
        if (cur->next != nullptr &&
328
148k
            strcmp(argv_sentinel, cur->next->param) == 0) {
329
35.2k
            attachment = cur->next;
330
35.2k
            cur->next = nullptr;
331
35.2k
            break;
332
35.2k
        }
333
334
    /* Check if there's any ellipsoid specification in the global params. */
335
    /* If not, use GRS80 as default                                       */
336
35.2k
    if (0 != pj_ellipsoid(P)) {
337
188
        P->a = 6378137.0;
338
188
        P->f = 1.0 / 298.257222101;
339
188
        P->es = 2 * P->f - P->f * P->f;
340
341
        /* reset an "unerror": In this special use case, the errno is    */
342
        /* not an error signal, but just a reply from pj_ellipsoid,      */
343
        /* telling us that "No - there was no ellipsoid definition in    */
344
        /* the PJ you provided".                                         */
345
188
        proj_errno_reset(P);
346
188
    }
347
35.2k
    P->a_orig = P->a;
348
35.2k
    P->es_orig = P->es;
349
350
35.2k
    if (pj_calc_ellipsoid_params(P, P->a, P->es) == 0)
351
35.2k
        geod_init(P->geod, P->a, P->f);
352
353
    /* Re-attach the dangling list */
354
    /* Note: cur will always be non 0 given argv_sentinel presence, */
355
    /* but this is far from being obvious for a static analyzer */
356
35.2k
    if (cur != nullptr)
357
35.2k
        cur->next = attachment;
358
35.2k
    proj_errno_restore(P, err);
359
35.2k
}
360
361
36.9k
PJ *OPERATION(pipeline, 0) {
362
36.9k
    int i, nsteps = 0, argc;
363
36.9k
    int i_pipeline = -1, i_first_step = -1, i_current_step;
364
36.9k
    char **argv, **current_argv;
365
366
36.9k
    if (P->ctx->pipelineInitRecursiongCounter == 5) {
367
        // Can happen for a string like:
368
        // proj=pipeline step "x="""," u=" proj=pipeline step ste=""[" u="
369
        // proj=pipeline step ste="[" u=" proj=pipeline step ste="[" u="
370
        // proj=pipeline step ste="[" u=" proj=pipeline step ste="[" u="
371
        // proj=pipeline step ste="[" u=" proj=pipeline step ste="[" u="
372
        // proj=pipeline step ste="[" u=" proj=pipeline p step ste="[" u="
373
        // proj=pipeline step ste="[" u=" proj=pipeline step ste="[" u="
374
        // proj=pipeline step ste="[" u=" proj=pipeline step ""x="""""""""""
375
        // Probably an issue with the quoting handling code
376
        // But doesn't hurt to add an extra safety check
377
0
        proj_log_error(P, _("Pipeline: too deep recursion"));
378
0
        return destructor(
379
0
            P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX); /* ERROR: nested pipelines */
380
0
    }
381
382
36.9k
    P->fwd4d = pipeline_forward_4d;
383
36.9k
    P->inv4d = pipeline_reverse_4d;
384
36.9k
    P->fwd3d = pipeline_forward_3d;
385
36.9k
    P->inv3d = pipeline_reverse_3d;
386
36.9k
    P->fwd = pipeline_forward;
387
36.9k
    P->inv = pipeline_reverse;
388
36.9k
    P->destructor = destructor;
389
36.9k
    P->reassign_context = pipeline_reassign_context;
390
391
    /* Currently, the pipeline driver is a raw bit mover, enabling other
392
     * operations */
393
    /* to collaborate efficiently. All prep/fin stuff is done at the step
394
     * levels.
395
     */
396
36.9k
    P->skip_fwd_prepare = 1;
397
36.9k
    P->skip_fwd_finalize = 1;
398
36.9k
    P->skip_inv_prepare = 1;
399
36.9k
    P->skip_inv_finalize = 1;
400
401
36.9k
    P->opaque = new (std::nothrow) Pipeline();
402
36.9k
    if (nullptr == P->opaque)
403
0
        return destructor(P, PROJ_ERR_INVALID_OP /* ENOMEM */);
404
405
36.9k
    argc = (int)argc_params(P->params);
406
36.9k
    auto pipeline = static_cast<struct Pipeline *>(P->opaque);
407
36.9k
    pipeline->argv = argv = argv_params(P->params, argc);
408
36.9k
    if (nullptr == argv)
409
0
        return destructor(P, PROJ_ERR_INVALID_OP /* ENOMEM */);
410
411
36.9k
    pipeline->current_argv = current_argv =
412
36.9k
        static_cast<char **>(calloc(argc, sizeof(char *)));
413
36.9k
    if (nullptr == current_argv)
414
0
        return destructor(P, PROJ_ERR_OTHER /*ENOMEM*/);
415
416
    /* Do some syntactical sanity checking */
417
1.82M
    for (i = 0; i < argc && argv[i] != nullptr; i++) {
418
1.79M
        if (0 == strcmp(argv_sentinel, argv[i])) {
419
345k
            if (-1 == i_pipeline) {
420
3
                proj_log_error(P, _("Pipeline: +step before +proj=pipeline"));
421
3
                return destructor(P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX);
422
3
            }
423
345k
            if (0 == nsteps)
424
35.2k
                i_first_step = i;
425
345k
            nsteps++;
426
345k
            continue;
427
345k
        }
428
429
1.44M
        if (0 == strcmp("proj=pipeline", argv[i])) {
430
36.9k
            if (-1 != i_pipeline) {
431
0
                proj_log_error(P, _("Pipeline: Nesting only allowed when child "
432
0
                                    "pipelines are wrapped in '+init's"));
433
0
                return destructor(
434
0
                    P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX); /* ERROR: nested
435
                                                             pipelines */
436
0
            }
437
36.9k
            i_pipeline = i;
438
1.40M
        } else if (0 == nsteps && 0 == strncmp(argv[i], "proj=", 5)) {
439
            // Non-sensical to have proj= in the general pipeline parameters.
440
            // Would not be a big issue in itself, but this makes bad
441
            // performance in parsing hostile pipelines more likely, such as the
442
            // one of
443
            // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=41290
444
1.61k
            proj_log_error(
445
1.61k
                P, _("Pipeline: proj= operator before first step not allowed"));
446
1.61k
            return destructor(P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX);
447
1.40M
        } else if (0 == nsteps && 0 == strncmp(argv[i], "o_proj=", 7)) {
448
            // Same as above.
449
60
            proj_log_error(
450
60
                P,
451
60
                _("Pipeline: o_proj= operator before first step not allowed"));
452
60
            return destructor(P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX);
453
60
        }
454
1.44M
    }
455
35.2k
    nsteps--; /* Last instance of +step is just a sentinel */
456
457
35.2k
    if (-1 == i_pipeline)
458
0
        return destructor(
459
0
            P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX); /* ERROR: no pipeline def */
460
461
35.2k
    if (0 == nsteps)
462
58
        return destructor(
463
58
            P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX); /* ERROR: no pipeline def */
464
465
35.2k
    set_ellipsoid(P);
466
467
    /* Now loop over all steps, building a new set of arguments for each init */
468
35.2k
    i_current_step = i_first_step;
469
204k
    for (i = 0; i < nsteps; i++) {
470
187k
        int j;
471
187k
        int current_argc = 0;
472
187k
        int err;
473
187k
        PJ *next_step = nullptr;
474
475
        /* Build a set of setup args for the current step */
476
187k
        proj_log_trace(P, "Pipeline: Building arg list for step no. %d", i);
477
478
        /* First add the step specific args */
479
947k
        for (j = i_current_step + 1; 0 != strcmp("step", argv[j]); j++)
480
759k
            current_argv[current_argc++] = argv[j];
481
482
187k
        i_current_step = j;
483
484
        /* Then add the global args */
485
1.32M
        for (j = i_pipeline + 1; 0 != strcmp("step", argv[j]); j++)
486
1.13M
            current_argv[current_argc++] = argv[j];
487
488
187k
        proj_log_trace(P, "Pipeline: init - %s, %d", current_argv[0],
489
187k
                       current_argc);
490
1.89M
        for (j = 1; j < current_argc; j++)
491
1.71M
            proj_log_trace(P, "    %s", current_argv[j]);
492
493
187k
        err = proj_errno_reset(P);
494
495
187k
        P->ctx->pipelineInitRecursiongCounter++;
496
187k
        next_step = pj_create_argv_internal(P->ctx, current_argc, current_argv);
497
187k
        P->ctx->pipelineInitRecursiongCounter--;
498
187k
        proj_log_trace(P, "Pipeline: Step %d (%s) at %p", i, current_argv[0],
499
187k
                       next_step);
500
501
187k
        if (nullptr == next_step) {
502
            /* The step init failed, but possibly without setting errno. If so,
503
             * we say "malformed" */
504
18.4k
            int err_to_report = proj_errno(P);
505
18.4k
            if (0 == err_to_report)
506
0
                err_to_report = PROJ_ERR_INVALID_OP_WRONG_SYNTAX;
507
18.4k
            proj_log_error(P, _("Pipeline: Bad step definition: %s (%s)"),
508
18.4k
                           current_argv[0],
509
18.4k
                           proj_context_errno_string(P->ctx, err_to_report));
510
18.4k
            return destructor(P, err_to_report); /* ERROR: bad pipeline def */
511
18.4k
        }
512
169k
        next_step->parent = P;
513
514
169k
        proj_errno_restore(P, err);
515
516
        /* Is this step inverted? */
517
1.92M
        for (j = 0; j < current_argc; j++) {
518
1.75M
            if (0 == strcmp("inv", current_argv[j])) {
519
                /* if +inv exists in both global and local args the forward
520
                 * operation should be used */
521
50.0k
                next_step->inverted = next_step->inverted == 0 ? 1 : 0;
522
50.0k
            }
523
1.75M
        }
524
525
169k
        bool omit_fwd = pj_param(P->ctx, next_step->params, "bomit_fwd").i != 0;
526
169k
        bool omit_inv = pj_param(P->ctx, next_step->params, "bomit_inv").i != 0;
527
169k
        pipeline->steps.emplace_back(next_step, omit_fwd, omit_inv);
528
529
169k
        proj_log_trace(P, "Pipeline at [%p]:    step at [%p] (%s) done", P,
530
169k
                       next_step, current_argv[0]);
531
169k
    }
532
533
    /* Require a forward path through the pipeline */
534
95.6k
    for (auto &step : pipeline->steps) {
535
95.6k
        PJ *Q = step.pj;
536
95.6k
        if (step.omit_fwd) {
537
79
            continue;
538
79
        }
539
95.5k
        if (Q->inverted) {
540
26.1k
            if (Q->inv || Q->inv3d || Q->inv4d) {
541
25.5k
                continue;
542
25.5k
            }
543
579
            proj_log_error(
544
579
                P, _("Pipeline: Inverse operation for %s is not available"),
545
579
                Q->short_name);
546
579
            return destructor(P, PROJ_ERR_OTHER_NO_INVERSE_OP);
547
69.4k
        } else {
548
69.4k
            if (Q->fwd || Q->fwd3d || Q->fwd4d) {
549
69.4k
                continue;
550
69.4k
            }
551
0
            proj_log_error(
552
0
                P, _("Pipeline: Forward operation for %s is not available"),
553
0
                Q->short_name);
554
0
            return destructor(P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX);
555
69.4k
        }
556
95.5k
    }
557
558
    /* determine if an inverse operation is possible */
559
94.5k
    for (auto &step : pipeline->steps) {
560
94.5k
        PJ *Q = step.pj;
561
94.5k
        if (step.omit_inv || pj_has_inverse(Q)) {
562
93.7k
            continue;
563
93.7k
        } else {
564
861
            P->inv = nullptr;
565
861
            P->inv3d = nullptr;
566
861
            P->inv4d = nullptr;
567
861
            break;
568
861
        }
569
94.5k
    }
570
571
    /* Replace PJ_IO_UNITS_WHATEVER with input/output units of neighbouring
572
     * steps where */
573
    /* it make sense. It does in most cases but not always, for instance */
574
    /*      proj=pipeline step proj=unitconvert xy_in=deg xy_out=rad step ... */
575
    /* where the left-hand side units of the first step shouldn't be changed to
576
     * RADIANS */
577
    /* as it will result in deg->rad conversions in cs2cs and other
578
     * applications.
579
     */
580
581
94.7k
    for (i = nsteps - 2; i >= 0; --i) {
582
78.6k
        auto pj = pipeline->steps[i].pj;
583
78.6k
        if (pj_left(pj) == PJ_IO_UNITS_WHATEVER &&
584
25.6k
            pj_right(pj) == PJ_IO_UNITS_WHATEVER) {
585
22.7k
            const auto right_pj = pipeline->steps[i + 1].pj;
586
22.7k
            const auto right_pj_left = pj_left(right_pj);
587
22.7k
            const auto right_pj_right = pj_right(right_pj);
588
22.7k
            if (right_pj_left != right_pj_right ||
589
21.1k
                right_pj_left != PJ_IO_UNITS_WHATEVER) {
590
21.1k
                pj->left = right_pj_left;
591
21.1k
                pj->right = right_pj_left;
592
21.1k
            }
593
22.7k
        }
594
78.6k
    }
595
596
94.7k
    for (i = 1; i < nsteps; i++) {
597
78.6k
        auto pj = pipeline->steps[i].pj;
598
78.6k
        if (pj_left(pj) == PJ_IO_UNITS_WHATEVER &&
599
6.73k
            pj_right(pj) == PJ_IO_UNITS_WHATEVER) {
600
3.84k
            const auto left_pj = pipeline->steps[i - 1].pj;
601
3.84k
            const auto left_pj_left = pj_left(left_pj);
602
3.84k
            const auto left_pj_right = pj_right(left_pj);
603
3.84k
            if (left_pj_left != left_pj_right ||
604
2.80k
                left_pj_right != PJ_IO_UNITS_WHATEVER) {
605
2.80k
                pj->left = left_pj_right;
606
2.80k
                pj->right = left_pj_right;
607
2.80k
            }
608
3.84k
        }
609
78.6k
    }
610
611
    /* Check that units between each steps match each other, fail if they don't
612
     */
613
89.7k
    for (i = 0; i + 1 < nsteps; i++) {
614
74.3k
        enum pj_io_units curr_step_output = pj_right(pipeline->steps[i].pj);
615
74.3k
        enum pj_io_units next_step_input = pj_left(pipeline->steps[i + 1].pj);
616
617
74.3k
        if (curr_step_output == PJ_IO_UNITS_WHATEVER ||
618
68.6k
            next_step_input == PJ_IO_UNITS_WHATEVER)
619
7.88k
            continue;
620
621
66.4k
        if (curr_step_output != next_step_input) {
622
709
            proj_log_error(
623
709
                P, _("Pipeline: Mismatched units between step %d and %d"),
624
709
                i + 1, i + 2);
625
709
            return destructor(P, PROJ_ERR_INVALID_OP_WRONG_SYNTAX);
626
709
        }
627
66.4k
    }
628
629
15.4k
    proj_log_trace(
630
15.4k
        P, "Pipeline: %d steps built. Determining i/o characteristics", nsteps);
631
632
    /* Determine forward input (= reverse output) data type */
633
15.4k
    P->left = pj_left(pipeline->steps.front().pj);
634
635
    /* Now, correspondingly determine forward output (= reverse input) data type
636
     */
637
15.4k
    P->right = pj_right(pipeline->steps.back().pj);
638
15.4k
    return P;
639
16.1k
}
640
641
53.9k
static void push(PJ_COORD &point, PJ *P) {
642
53.9k
    if (P->parent == nullptr)
643
0
        return;
644
645
53.9k
    struct Pipeline *pipeline =
646
53.9k
        static_cast<struct Pipeline *>(P->parent->opaque);
647
53.9k
    struct PushPop *pushpop = static_cast<struct PushPop *>(P->opaque);
648
649
53.9k
    if (pushpop->v1)
650
9.40k
        pipeline->stack[0].push(point.v[0]);
651
53.9k
    if (pushpop->v2)
652
18.4k
        pipeline->stack[1].push(point.v[1]);
653
53.9k
    if (pushpop->v3)
654
14.4k
        pipeline->stack[2].push(point.v[2]);
655
53.9k
    if (pushpop->v4)
656
9.07k
        pipeline->stack[3].push(point.v[3]);
657
53.9k
}
658
659
223k
static void pop(PJ_COORD &point, PJ *P) {
660
223k
    if (P->parent == nullptr)
661
0
        return;
662
663
223k
    struct Pipeline *pipeline =
664
223k
        static_cast<struct Pipeline *>(P->parent->opaque);
665
223k
    struct PushPop *pushpop = static_cast<struct PushPop *>(P->opaque);
666
667
223k
    if (pushpop->v1 && !pipeline->stack[0].empty()) {
668
7.38k
        point.v[0] = pipeline->stack[0].top();
669
7.38k
        pipeline->stack[0].pop();
670
7.38k
    }
671
672
223k
    if (pushpop->v2 && !pipeline->stack[1].empty()) {
673
12.7k
        point.v[1] = pipeline->stack[1].top();
674
12.7k
        pipeline->stack[1].pop();
675
12.7k
    }
676
677
223k
    if (pushpop->v3 && !pipeline->stack[2].empty()) {
678
8.88k
        point.v[2] = pipeline->stack[2].top();
679
8.88k
        pipeline->stack[2].pop();
680
8.88k
    }
681
682
223k
    if (pushpop->v4 && !pipeline->stack[3].empty()) {
683
6.71k
        point.v[3] = pipeline->stack[3].top();
684
6.71k
        pipeline->stack[3].pop();
685
6.71k
    }
686
223k
}
687
688
35.2k
static PJ *setup_pushpop(PJ *P) {
689
35.2k
    auto pushpop =
690
35.2k
        static_cast<struct PushPop *>(calloc(1, sizeof(struct PushPop)));
691
35.2k
    P->opaque = pushpop;
692
35.2k
    if (nullptr == P->opaque)
693
0
        return destructor(P, PROJ_ERR_OTHER /*ENOMEM*/);
694
695
35.2k
    if (pj_param_exists(P->params, "v_1"))
696
1.26k
        pushpop->v1 = true;
697
698
35.2k
    if (pj_param_exists(P->params, "v_2"))
699
1.42k
        pushpop->v2 = true;
700
701
35.2k
    if (pj_param_exists(P->params, "v_3"))
702
28.9k
        pushpop->v3 = true;
703
704
35.2k
    if (pj_param_exists(P->params, "v_4"))
705
914
        pushpop->v4 = true;
706
707
35.2k
    P->left = PJ_IO_UNITS_WHATEVER;
708
35.2k
    P->right = PJ_IO_UNITS_WHATEVER;
709
710
35.2k
    return P;
711
35.2k
}
712
713
17.1k
PJ *OPERATION(push, 0) {
714
17.1k
    P->fwd4d = push;
715
17.1k
    P->inv4d = pop;
716
717
17.1k
    return setup_pushpop(P);
718
17.1k
}
719
720
18.0k
PJ *OPERATION(pop, 0) {
721
18.0k
    P->inv4d = push;
722
18.0k
    P->fwd4d = pop;
723
724
18.0k
    return setup_pushpop(P);
725
18.0k
}