ATLAS Offline Software
Loading...
Searching...
No Matches
pythonic_coracool.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5// Efficient pythonic CoraCool bindings
6// Author: <peter.waller@cern.ch> Jan 2010
7
8#define likely(x) __builtin_expect((x),1)
9#define unlikely(x) __builtin_expect((x),0)
10
11#include <Python.h>
12
13#include <CoolKernel/ChannelSelection.h>
14#include <CoolKernel/IFolder.h>
15#include <CoolKernel/IDatabase.h>
16
17#include "CoralBase/Attribute.h"
18#include "CoralBase/AttributeList.h"
19#include "CoralBase/AttributeListSpecification.h"
20
27
28#include <functional>
29
30#include <string>
31#include <iostream>
32
35
36using std::cout;
37using std::endl;
38using std::string;
39using std::vector;
40
41using std::bind;
42using std::placeholders::_1;
43using cool::IFolderPtr;
44using cool::IDatabasePtr;
45using cool::ChannelSelection;
46using cool::ValidityKey;
47using coral::Attribute;
48using coral::AttributeSpecification;
49using coral::AttributeList;
50
51typedef std::function<PyObject* (const AttributeList&)>
53
54// A function to signal that a conversion object could not be found
55PyObject *no_coral_conversion_available(const AttributeList&) {return NULL;}
56
57// Re-use these two functions from quick_retrieve.cxx
58PyObject *qr_PyString_FromBlob(const coral::Blob& blob);
60
61template<typename T>
62const T& fetch_attribute_data(const coral::Attribute& A)
63{
64 return A.data<T>();
65}
66
67// Returns a functor which returns a Python object for the attribute with
68// a given name and type. Test type_name against a series of fetchers.
69// If none are found, no_coral_conversion_available is returned.
71 const string& type_name)
72{
73 // Test type against type_name. If true, return a functor for this type.
74 // Be sure to use only a copy of name --- the original may not be valid
75 // by the time the lambda is called.
76 std::string sname =name;
77 #define MAKE_FETCHER(type, converter) \
78 if (type_name == #type) { \
79 /*coverity[copy_constructor_call] */ \
80 return [sname] (const AttributeList& l) -> PyObject* \
81 { return converter(fetch_attribute_data<type>(l[sname])); }; \
82 }
83
84 // See the python c-api reference for python conversion functions
85 // Python/C API Reference Manual >> Concrete Objects Layer
86 // http://docs.python.org/c-api/concrete.html
87
88 MAKE_FETCHER(short, PyLong_FromLong)
89 MAKE_FETCHER(int, PyLong_FromLong)
90 MAKE_FETCHER(long long, PyLong_FromLongLong)
91
92 /*
93
94 Types from COOL:
95 We need to build up a similar list from CORAL, it would be nice to know
96 where they came from.
97
98 MAKE_FETCHER(Bool, PyBool_FromLong)
99 MAKE_FETCHER(Float, PyFloat_FromDouble)
100 MAKE_FETCHER(Double, PyFloat_FromDouble)
101 MAKE_FETCHER(UChar, PyLong_FromLong)
102 MAKE_FETCHER(UInt16, PyLong_FromUnsignedLong)
103 MAKE_FETCHER(UInt32, PyLong_FromUnsignedLong)
104 MAKE_FETCHER(UInt63, PyLong_FromUnsignedLongLong)
105 MAKE_FETCHER(UInt64, PyLong_FromUnsignedLongLong)
106 MAKE_FETCHER(String255, qr_PyString_FromStdString)
107 MAKE_FETCHER(String4k, qr_PyString_FromStdString)
108 MAKE_FETCHER(String64k, qr_PyString_FromStdString)
109 MAKE_FETCHER(String16M, qr_PyString_FromStdString)
110 MAKE_FETCHER(Blob16M, qr_PyString_FromBlob)
111 MAKE_FETCHER(Blob64k, qr_PyString_FromBlob)
112 */
113
114 PyErr_Format(PyExc_RuntimeError,
115 "Type '%s' is not in type conversion table. "
116 "Please add it to pythonic_coracool.cxx. "
117 "Can't convert field '%s'.",
118 type_name.c_str(),
119 name);
121}
122
123// From a list of python strings (to_fetch) (which are attribute names)
124// Create a fetcher for each attribute, and insert them into the
125// payload_fetchers vector
127 PyObject *to_fetch,
128 const AttributeList& attribute_list,
129 vector<coral_attribute_fetcher_t>& payload_fetchers)
130{
131 const Py_ssize_t count = to_fetch ? PySequence_Size(to_fetch) : 0;
132
133 for (Py_ssize_t i = 0; i < count; i++)
134 {
135 PyObject *py_name = PySequence_GetItem(to_fetch, i);
136 const char *name = _PyUnicode_AsString(py_name);
137 const string type = attribute_list[name].specification().typeName();
138
140
141 auto pff = pf.target<PyObject* (*)(const AttributeList&)>();
142 if ( pff && *pff == &no_coral_conversion_available)
143 return false; // Failure: A python exception was thrown above
144
145 payload_fetchers.push_back(std::move(pf));
146 Py_DECREF(py_name);
147 }
148
149 return true; // Success
150}
151
152inline PyObject *apply_function(PyObject *function, PyObject *object)
153{
154 // Convert object according to function, taking care of references
155 // If function is null, return unmodified object
156 if (!function || function == Py_None) return object;
157 PyObject *old_object = object;
158 PyObject *new_object = PyObject_CallObject(function, object);
159 Py_DECREF(old_object);
160 return new_object;
161}
162
163CoraCoolFolderPtr fetch_coracool_folder(IDatabasePtr cooldb, const string & folder)
164{
165 CoraCoolDatabaseSvc& corasvc = CoraCoolDatabaseSvcFactory::
166 databaseService();
167
168 CoraCoolDatabasePtr coradb = corasvc.openDatabase(
169 cooldb->databaseId(), cooldb, true);
170
171 return coradb->getFolder(folder);
172}
173
174const cool::RecordSpecification
175 get_coracool_payload_spec(IDatabasePtr cooldb, const string & folder)
176{
177 return fetch_coracool_folder(std::move(cooldb), folder)->payloadSpecification();
178}
179
180inline PyObject* make_iov_key(PyObject *iovkey_wrapper,
181 unsigned long long value)
182{
183 static const char * const argtypes = const_cast<char *>("K");
184 if (iovkey_wrapper && iovkey_wrapper != Py_None)
185 return PyObject_CallFunction(iovkey_wrapper, argtypes, value);
186 return PyLong_FromUnsignedLongLong(value);
187}
188
189PyObject *browse_coracool(IDatabasePtr cooldb, const string & folder,
190 ValidityKey since, ValidityKey until,
191 const ChannelSelection &cs = ChannelSelection::all(),
192 const char *tag="",
193 PyObject *to_fetch = NULL,
194 PyObject *object_converter = NULL,
195 PyObject *inner_object_converter = NULL,
196 PyObject *iovkey_wrapper = NULL)
197{
198 // Browse CoraCool objects
199 CoraCoolFolderPtr coralFolder = fetch_coracool_folder(std::move(cooldb), folder);
200 CoraCoolObjectIterPtr objects = coralFolder->browseObjects(since, until,
201 cs, tag);
202
203 // Number of attributes to be fetched
204 const Py_ssize_t count = to_fetch ? PySequence_Size(to_fetch) : 0;
205
206 PyObject* result = PyList_New(0); // List which is returned by this function
207 bool first = true; // Is this the first iteration?
208 CoraCoolObject::const_iterator payload; // Current payload
209
210 // List of functors which convert an Attribute into a python value
211 vector<coral_attribute_fetcher_t> payload_fetchers;
212
213 // Loop over IoVs
214 while (objects->hasNext())
215 {
216 const CoraCoolObjectPtr& object = objects->next();
217
218 PyObject *py_payload_tuple = PyTuple_New(object->size());
219 unsigned int payload_index = 0;
220
221 // Loop over multiple payloads per record
222 for (payload = object->begin();
223 payload != object->end();
224 ++payload, ++payload_index)
225 {
226 if (unlikely(first))
227 {
228 // On the first iteration, figure out the types and create
229 // specialised functions for retrieving them
230 first = false;
231 if (!make_fetchers(to_fetch, *payload, payload_fetchers))
232 return NULL; // Failure, throw python exception from above
233 }
234
235 // Create a tuple for the payload and fill it from payload fetchers
236 PyObject *py_payload = PyTuple_New(count);
237 for (Py_ssize_t i = 0; i < count; i++)
238 PyTuple_SET_ITEM(py_payload, i, payload_fetchers[i](*payload));
239
240 py_payload = apply_function(inner_object_converter, py_payload);
241
242 if (!py_payload)
243 {
244 // apply_function returned an error
245 // We won't return the list to python so we need to tell python it
246 // can be deleted
247 Py_DECREF(py_payload_tuple);
248 Py_DECREF(result);
249 return NULL;
250 }
251
252 PyTuple_SET_ITEM(py_payload_tuple, payload_index, py_payload);
253 }
254
255 PyObject *one = PyTuple_New(4);
256
257 PyTuple_SET_ITEM(one, 0, make_iov_key(iovkey_wrapper, object->since()));
258 PyTuple_SET_ITEM(one, 1, make_iov_key(iovkey_wrapper, object->until()));
259
260 PyTuple_SET_ITEM(one, 2, PyLong_FromLong(object->channelId()));
261
262 // SET_ITEM steals reference, no decref needed
263 PyTuple_SET_ITEM(one, 3, py_payload_tuple);
264
265 one = apply_function(object_converter, one);
266 if (!one)
267 {
268 // apply_function returned an error
269 // We won't return the list to python so we need to tell python it
270 // can be deleted
271 Py_DECREF(result);
272 return NULL;
273 }
274
275 PyList_Append(result, one);
276 Py_DECREF(one);
277 }
278
279 return result;
280}
boost::shared_ptr< CoraCoolObject > CoraCoolObjectPtr
boost::shared_ptr< CoraCoolObjectIter > CoraCoolObjectIterPtr
boost::shared_ptr< CoraCoolDatabase > CoraCoolDatabasePtr
boost::shared_ptr< CoraCoolFolder > CoraCoolFolderPtr
_object PyObject
Define macros for attributes used to control the static checker.
#define ATLAS_NO_CHECK_FILE_THREAD_SAFETY
CoraCoolDatabasePtr openDatabase(const std::string &dbconn, cool::IDatabasePtr cooldb, bool readonly=false)
AttrListVec::const_iterator const_iterator
int count(std::string s, const std::string &regx)
count how many occurances of a regx are in a string
Definition hcg.cxx:146
CoraCoolFolderPtr fetch_coracool_folder(IDatabasePtr cooldb, const string &folder)
const cool::RecordSpecification get_coracool_payload_spec(IDatabasePtr cooldb, const string &folder)
#define MAKE_FETCHER(type, converter)
const T & fetch_attribute_data(const coral::Attribute &A)
PyObject * browse_coracool(IDatabasePtr cooldb, const string &folder, ValidityKey since, ValidityKey until, const ChannelSelection &cs=ChannelSelection::all(), const char *tag="", PyObject *to_fetch=NULL, PyObject *object_converter=NULL, PyObject *inner_object_converter=NULL, PyObject *iovkey_wrapper=NULL)
coral_attribute_fetcher_t create_attribute_fetcher(const char *name, const string &type_name)
PyObject * qr_PyString_FromStdString(const string &str)
PyObject * apply_function(PyObject *function, PyObject *object)
PyObject * qr_PyString_FromBlob(const coral::Blob &blob)
bool make_fetchers(PyObject *to_fetch, const AttributeList &attribute_list, vector< coral_attribute_fetcher_t > &payload_fetchers)
#define unlikely(x)
PyObject * make_iov_key(PyObject *iovkey_wrapper, unsigned long long value)
std::function< PyObject *(const AttributeList &)> coral_attribute_fetcher_t
PyObject * no_coral_conversion_available(const AttributeList &)
hold the test vectors and ease the comparison