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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
#/*##########################################################################
#
# The PyMca X-Ray Fluorescence Toolkit
#
# Copyright (c) 2004-2014 V.A. Sole, European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF by the Software group.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#############################################################################*/
#include "Python.h"
/* adding next line may raise errors ...
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
*/
#include <./numpy/arrayobject.h>
#include <stdio.h>
struct module_state {
PyObject *error;
};
#if PY_MAJOR_VERSION >= 3
#define GETSTATE(m) ((struct module_state*)PyModule_GetState(m))
#else
#define GETSTATE(m) (&_state)
static struct module_state _state;
#endif
/* Function declarations */
static PyObject *PyMcaIOHelper_fillSupaVisio(PyObject *dummy, PyObject *args);
static PyObject *PyMcaIOHelper_readAifira(PyObject *dummy, PyObject *args);
/* Functions */
static PyObject *
PyMcaIOHelper_fillSupaVisio(PyObject *self, PyObject *args)
{
PyObject *input;
PyArrayObject *inputArray, *outputArray;
int nChannels = 2048;
unsigned short *dataPointer, x, y, ch;
int i;
npy_intp dimensions[3];
int maxy, maxch;
unsigned int *outputPointer;
if (!PyArg_ParseTuple(args, "O|d", &input, &nChannels))
return NULL;
inputArray = (PyArrayObject *)
PyArray_ContiguousFromObject(input, NPY_USHORT, 2,2);
if (inputArray == NULL)
{
struct module_state *st = GETSTATE(self);
PyErr_SetString(st->error, "Cannot parse input array");
return NULL;
}
dataPointer = (unsigned short *) PyArray_DATA(inputArray);
dataPointer++;
dimensions[1] = *dataPointer++;
dimensions[0] = *dataPointer++;
dimensions[2] = nChannels;
outputArray = (PyArrayObject *) PyArray_SimpleNew(3, dimensions, NPY_UINT);
PyArray_FILLWBYTE(outputArray, 0);
/* Do the job */
maxy=maxch=0;
outputPointer = (unsigned int *) PyArray_DATA(outputArray);
for (i = 3; i < PyArray_DIMS(inputArray)[0]; i++)
{
y = *dataPointer++;
x = *dataPointer++;
ch = *dataPointer++;
if (ch >= nChannels)
{
printf("bad reading %d\n", ch);
continue;
}
*(outputPointer+ (dimensions[1] * x + y) * nChannels + ch) += 1;
}
Py_DECREF(inputArray);
return PyArray_Return(outputArray);
}
static PyObject *
PyMcaIOHelper_readAifira(PyObject *self, PyObject *args)
{
PyObject *inputFileDescriptor;
FILE *fd;
#if PY_MAJOR_VERSION >= 3
int fh;
#endif
PyArrayObject *outputArray;
int nChannels = 2048;
unsigned short channel;
unsigned char x, y;
npy_intp dimensions[3];
unsigned int *outputPointer;
struct module_state *st = GETSTATE(self);
if (!PyArg_ParseTuple(args, "O", &inputFileDescriptor))
{
PyErr_SetString(st->error, "Error parsing input arguments");
return NULL;
}
#if PY_MAJOR_VERSION >= 3
fh = PyObject_AsFileDescriptor(inputFileDescriptor);
if (fh < 0)
{
return NULL;
}
fd = fdopen(fh, "r");
#else
if (!PyFile_Check(inputFileDescriptor))
{
PyErr_SetString(st->error, "Input is not a python file descriptor object");
return NULL;
}
fd = PyFile_AsFile(inputFileDescriptor);
#endif
if (!fd)
{
PyErr_SetString(st->error, "Cannot obtain FILE* from object");
return NULL;
}
dimensions[0] = 128;
dimensions[1] = 128;
dimensions[2] = nChannels;
outputArray = (PyArrayObject *) PyArray_SimpleNew(3, dimensions, NPY_UINT);
PyArray_FILLWBYTE(outputArray, 0);
/* Do the job */
outputPointer = (unsigned int *) PyArray_DATA(outputArray);
while(fscanf(fd, "%2c%c%c", (char *)&channel, &x, &y) == 3)
{
if (channel >= nChannels)
{
printf("bad reading %d\n", channel);
continue;
}
if (x < 1)
continue;
if (y < 1)
continue;
if (x > 128)
{
printf("bad X reading %d\n", x);
break;
continue;
}
if (y > 128)
{
printf("bad Y reading %d\n", y);
break;
continue;
}
x -= 1;
y -= 1;
/* normally pixe data are in the second channel */
if (channel > 1023)
{
channel -= 1024;
}
else
channel += 1024;
*(outputPointer + (dimensions[1] * x + y) * nChannels + channel) += 1;
}
return PyArray_Return(outputArray);
}
/* Module methods */
static PyMethodDef PyMcaIOHelper_methods[] = {
{"fillSupaVisio", PyMcaIOHelper_fillSupaVisio, METH_VARARGS},
{"readAifira", PyMcaIOHelper_readAifira, METH_VARARGS},
{NULL, NULL}
};
/* ------------------------------------------------------- */
/* Module initialization */
#if PY_MAJOR_VERSION >= 3
static int PyMcaIOHelper_traverse(PyObject *m, visitproc visit, void *arg) {
Py_VISIT(GETSTATE(m)->error);
return 0;
}
static int PyMcaIOHelper_clear(PyObject *m) {
Py_CLEAR(GETSTATE(m)->error);
return 0;
}
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"PyMcaIOHelper",
NULL,
sizeof(struct module_state),
PyMcaIOHelper_methods,
NULL,
PyMcaIOHelper_traverse,
PyMcaIOHelper_clear,
NULL
};
#define INITERROR return NULL
PyObject *
PyInit_PyMcaIOHelper(void)
#else
#define INITERROR return
void
initPyMcaIOHelper(void)
#endif
{
struct module_state *st;
#if PY_MAJOR_VERSION >= 3
PyObject *module = PyModule_Create(&moduledef);
#else
PyObject *module = Py_InitModule("PyMcaIOHelper", PyMcaIOHelper_methods);
#endif
if (module == NULL)
INITERROR;
st = GETSTATE(module);
st->error = PyErr_NewException("PyMcaIOHelper.Error", NULL, NULL);
if (st->error == NULL) {
Py_DECREF(module);
INITERROR;
}
import_array();
#if PY_MAJOR_VERSION >= 3
return module;
#endif
}
|