File: gdalgetgdalpath.cpp

package info (click to toggle)
gdal 3.12.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 92,396 kB
  • sloc: cpp: 1,224,305; ansic: 206,456; python: 26,284; java: 6,001; xml: 4,769; sh: 3,869; cs: 2,513; yacc: 1,306; makefile: 214
file content (225 lines) | stat: -rw-r--r-- 7,783 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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
105
106
107
108
109
110
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/******************************************************************************
 *
 * Project:  GDAL
 * Purpose:  Return the path of the "gdal" binary
 * Author:   Even Rouault <even dot rouault at spatialys.com>
 *
 ******************************************************************************
 * Copyright (c) 2025, Even Rouault <even dot rouault at spatialys.com>
 *
 * SPDX-License-Identifier: MIT
 ****************************************************************************/

#include "cpl_config.h"

#if HAVE_DL_ITERATE_PHDR
#if !defined(_GNU_SOURCE)
#define _GNU_SOURCE
#endif
#include <link.h>

#elif defined(__MACH__) && defined(__APPLE__)
#include <mach-o/dyld.h>

#endif

#include "cpl_spawn.h"
#include "cpl_vsi_virtual.h"
#include "gdal.h"
#include "gdalgetgdalpath.h"

#include <cassert>

/************************************************************************/
/*                   GDALGetGDALPathDLIterateCbk()                      */
/************************************************************************/

#if HAVE_DL_ITERATE_PHDR && !defined(STATIC_BUILD)

static int GDALGetGDALPathDLIterateCbk(struct dl_phdr_info *info,
                                       size_t /*size*/, void *data)
{
    if (info->dlpi_name && strstr(info->dlpi_name, "/libgdal.so."))
    {
        *static_cast<std::string *>(data) = info->dlpi_name;
        return 1;
    }
    return 0;  // continue iteration
}

#endif

/************************************************************************/
/*                         GDALGetGDALPath()                            */
/************************************************************************/

/** Return the path of the "gdal" binary, or an empty string if it cannot be
 * found.
 *
 * The GDAL_PATH configuration option may be set to point to the directory where
 * the GDAL binary is located.
 */
std::string GDALGetGDALPath()
{
    const char *pszGDAL_PATH = CPLGetConfigOption("GDAL_PATH", nullptr);
    if (pszGDAL_PATH)
    {
        VSIStatBufL sStat;
        for (const char *pszProgramName : {"gdal"
#ifdef _WIN32
                                           ,
                                           "gdal.exe"
#endif
             })
        {
            std::string osPath =
                CPLFormFilenameSafe(pszGDAL_PATH, pszProgramName, nullptr);
            if (VSIStatL(osPath.c_str(), &sStat) == 0)
                return osPath;
        }
        CPLError(CE_Failure, CPLE_AppDefined,
                 "No 'gdal' binary can be found in '%s'", pszGDAL_PATH);
        return std::string();
    }

    constexpr int MAXPATH_SIZE = 4096;
    std::string osPath;
    osPath.resize(MAXPATH_SIZE);
    if (CPLGetExecPath(osPath.data(), MAXPATH_SIZE))
    {
        osPath.resize(strlen(osPath.c_str()));
        if (!cpl::ends_with(osPath, "/gdal") &&
            !cpl::ends_with(osPath, "\\gdal") &&
            !cpl::ends_with(osPath, "\\gdal.exe"))
        {
            osPath.clear();
#if (HAVE_DL_ITERATE_PHDR || (defined(__MACH__) && defined(__APPLE__))) &&     \
    !defined(STATIC_BUILD)
            std::string osGDALLib;
#if HAVE_DL_ITERATE_PHDR
            dl_iterate_phdr(GDALGetGDALPathDLIterateCbk, &osGDALLib);
#else
            const uint32_t imageCount = _dyld_image_count();
            for (uint32_t i = 0; i < imageCount; ++i)
            {
                const char *imageName = _dyld_get_image_name(i);
                if (imageName && strstr(imageName, "/libgdal."))
                {
                    osGDALLib = imageName;
                    break;
                }
            }
#endif
            if (!osGDALLib.empty() && osGDALLib[0] == '/')
            {
                const std::string osPathOfGDALLib =
                    CPLGetDirnameSafe(osGDALLib.c_str());
                std::string osBinFilename = CPLFormFilenameSafe(
                    CPLGetDirnameSafe(osPathOfGDALLib.c_str()).c_str(),
                    "bin/gdal", nullptr);
                VSIStatBufL sStat;
                if (VSIStatL(osBinFilename.c_str(), &sStat) == 0)
                {
                    // Case if osGDALLib=/usr/lib/libgdal.so.xxx
                    osPath = std::move(osBinFilename);
                }
                else
                {
                    osBinFilename = CPLFormFilenameSafe(
                        CPLGetDirnameSafe(
                            CPLGetDirnameSafe(osPathOfGDALLib.c_str()).c_str())
                            .c_str(),
                        "bin/gdal", nullptr);
                    if (VSIStatL(osBinFilename.c_str(), &sStat) == 0)
                    {
                        // Case if pszLibName=/usr/lib/libgdal.so.xxx
                        osPath = std::move(osBinFilename);
                    }
                    else
                    {
                        osBinFilename = CPLFormFilenameSafe(
                            osPathOfGDALLib.c_str(), "apps/gdal", nullptr);
                        if (VSIStatL(osBinFilename.c_str(), &sStat) == 0)
                        {
                            // Case if pszLibName=/usr/lib/yyyyy/libgdal.so.xxx
                            osPath = std::move(osBinFilename);
                        }
                        else
                        {
                            osBinFilename = CPLFormFilenameSafe(
                                osPathOfGDALLib.c_str(), "apps/gdal", nullptr);
                            if (VSIStatL(osBinFilename.c_str(), &sStat) == 0)
                            {
                                // Case if pszLibName=/path/to/build_dir/libgdal.so.xxx
                                osPath = std::move(osBinFilename);
                            }
                        }
                    }
                }
            }
#endif
        }
        if (!osPath.empty())
        {
            CPLDebug("GDAL", "gdal binary found at '%s'", osPath.c_str());
        }
    }
    else
    {
        osPath.clear();
    }
    if (osPath.empty())
    {
        // Try to locate from the path
#ifdef _WIN32
        osPath = "gdal.exe";
#else
        osPath = "gdal";
#endif
    }

    const char *const apszArgv[] = {osPath.c_str(), "--version", nullptr};
    const std::string osTmpFilenameVersion =
        VSIMemGenerateHiddenFilename(nullptr);
    auto fpOut = std::unique_ptr<VSIVirtualHandle>(
        VSIFOpenL(osTmpFilenameVersion.c_str(), "wb+"));
    VSIUnlink(osTmpFilenameVersion.c_str());
    CPLAssert(fpOut);
    CPLSpawn(apszArgv, nullptr, fpOut.get(), /* bDisplayErr = */ false);
    const auto nPos = fpOut->Tell();
    std::string osVersion;
    osVersion.resize(128);
    if (nPos > 0 && nPos < osVersion.size())
    {
        osVersion.resize(static_cast<size_t>(nPos));
        fpOut->Seek(0, SEEK_SET);
        fpOut->Read(osVersion.data(), 1, osVersion.size());
        for (const char ch : {'\n', '\r'})
        {
            if (!osVersion.empty() && osVersion.back() == ch)
            {
                osVersion.pop_back();
            }
        }
        if (osVersion == GDALVersionInfo(""))
        {
            return osPath;
        }
        else
        {
            CPLError(CE_Failure, CPLE_AppDefined,
                     "'%s --version' returned '%s', whereas '%s' "
                     "expected. Make sure the gdal binary corresponding "
                     "to the version of the libgdal of the current "
                     "process is in the PATH environment variable",
                     osPath.c_str(), osVersion.c_str(), GDALVersionInfo(""));
        }
    }
    else
    {
        CPLError(CE_Failure, CPLE_AppDefined,
                 "Could not find 'gdal' binary. Make sure it is in the "
                 "PATH environment variable.");
    }
    return std::string();
}