/usr/include/pdal/PyArray.hpp is in libpdal-dev 1.6.0-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 226 227 228 229 230 231 232 233 234 235 236 237 | /******************************************************************************
* Copyright (c) 2011, Michael P. Gerlek (mpg@flaxen.com)
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Hobu, Inc. or Flaxen Geo Consulting nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
****************************************************************************/
#pragma once
#include <pdal/PointView.hpp>
#include <algorithm>
#ifdef PDAL_COMPILER_MSVC
# pragma warning(disable: 4127) // conditional expression is constant
#endif
#ifdef PDAL_HAVE_PYTHON
#include <Python.h>
#undef toupper
#undef tolower
#undef isspace
#ifndef PY_ARRAY_UNIQUE_SYMBOL
#define PY_ARRAY_UNIQUE_SYMBOL PDALARRAY_ARRAY_API
#endif
#include <numpy/arrayobject.h>
#endif
// forward declare PyObject so we don't need the python headers everywhere
// see: http://mail.python.org/pipermail/python-dev/2003-August/037601.html
#ifndef PyObject_HEAD
struct _object;
typedef _object PyObject;
#endif
namespace pdal
{
namespace python
{
class PDAL_DLL Array
{
public:
Array()
: m_py_array(0)
{
#ifdef PDAL_HAVE_PYTHON
auto initNumpy = []()
{
#undef NUMPY_IMPORT_ARRAY_RETVAL
#define NUMPY_IMPORT_ARRAY_RETVAL
import_array();
};
initNumpy();
#endif
}
~Array()
{
cleanup();
}
inline void update(PointViewPtr view)
{
#ifdef PDAL_HAVE_PYTHON
typedef std::unique_ptr<std::vector<uint8_t>> DataPtr;
cleanup();
int nd = 1;
Dimension::IdList dims = view->dims();
npy_intp mydims = view->size();
npy_intp* ndims = &mydims;
std::vector<npy_intp> strides(dims.size());
DataPtr pdata( new std::vector<uint8_t>(view->pointSize()* view->size(), 0));
PyArray_Descr *dtype(0);
PyObject * dtype_dict = (PyObject*)buildNumpyDescription(view);
if (!dtype_dict)
throw pdal_error("Unable to build numpy dtype description dictionary");
int did_convert = PyArray_DescrConverter(dtype_dict, &dtype);
if (did_convert == NPY_FAIL)
throw pdal_error("Unable to build numpy dtype");
Py_XDECREF(dtype_dict);
#ifdef NPY_ARRAY_CARRAY
int flags = NPY_ARRAY_CARRAY;
#else
int flags = NPY_CARRAY;
#endif
uint8_t* sp = pdata.get()->data();
PyObject * pyArray = PyArray_NewFromDescr(&PyArray_Type,
dtype,
nd,
ndims,
0,
sp,
flags,
NULL);
// copy the data
uint8_t* p(sp);
DimTypeList types = view->dimTypes();
for (PointId idx = 0; idx < view->size(); idx++)
{
p = sp + (view->pointSize() * idx);
view->getPackedPoint(types, idx, (char*)p);
}
m_py_array = pyArray;
m_data_array = std::move(pdata);
#endif
}
inline PyObject* getPythonArray() const { return m_py_array; }
private:
inline void cleanup()
{
#ifdef PDAL_HAVE_PYTHON
PyObject* p = (PyObject*)(m_py_array);
Py_XDECREF(p);
m_data_array.reset();
#endif
}
inline PyObject* buildNumpyDescription(PointViewPtr view) const
{
// Build up a numpy dtype dictionary
//
// {'formats': ['f8', 'f8', 'f8', 'u2', 'u1', 'u1', 'u1', 'u1', 'u1', 'f4', 'u1', 'u2', 'f8', 'u2', 'u2', 'u2'],
// 'names': ['X', 'Y', 'Z', 'Intensity', 'ReturnNumber', 'NumberOfReturns',
// 'ScanDirectionFlag', 'EdgeOfFlightLine', 'Classification',
// 'ScanAngleRank', 'UserData', 'PointSourceId', 'GpsTime', 'Red', 'Green',
// 'Blue']}
//
#ifdef PDAL_HAVE_PYTHON
std::stringstream oss;
Dimension::IdList dims = view->dims();
PyObject* dict = PyDict_New();
PyObject* sizes = PyList_New(dims.size());
PyObject* formats = PyList_New(dims.size());
PyObject* titles = PyList_New(dims.size());
for (Dimension::IdList::size_type i=0; i < dims.size(); ++i)
{
Dimension::Id id = (dims[i]);
Dimension::Type t = view->dimType(id);
npy_intp stride = view->dimSize(id);
std::string name = view->dimName(id);
std::string kind("i");
Dimension::BaseType b = Dimension::base(t);
if (b == Dimension::BaseType::Unsigned)
kind = "u";
else if (b == Dimension::BaseType::Floating)
kind = "f";
else
{
std::stringstream o;
oss << "unable to map kind '" << kind <<"' to PDAL dimension type";
throw pdal::pdal_error(o.str());
}
oss << kind << stride;
PyObject* pySize = PyLong_FromLong(stride);
PyObject* pyTitle = PyUnicode_FromString(name.c_str());
PyObject* pyFormat = PyUnicode_FromString(oss.str().c_str());
PyList_SetItem(sizes, i, pySize);
PyList_SetItem(titles, i, pyTitle);
PyList_SetItem(formats, i, pyFormat);
oss.str("");
}
PyDict_SetItemString(dict, "names", titles);
PyDict_SetItemString(dict, "formats", formats);
// PyObject* obj = PyUnicode_AsASCIIString(PyObject_Str(dict));
// const char* s = PyBytes_AsString(obj);
// std::string output(s);
// std::cout << "array: " << output << std::endl;
return dict;
#endif
}
PyObject* m_py_array;
std::unique_ptr<std::vector<uint8_t> > m_data_array;
Array& operator=(Array const& rhs);
};
} // namespace python
} // namespace pdal
|