ATLAS Offline Software
Macros | Typedefs | Functions | Variables
pythonic_coracool.cxx File Reference
#include <Python.h>
#include <CoolKernel/ChannelSelection.h>
#include <CoolKernel/IFolder.h>
#include <CoolKernel/IDatabase.h>
#include "CoralBase/Attribute.h"
#include "CoralBase/AttributeList.h"
#include "CoralBase/AttributeListSpecification.h"
#include <CoraCool/CoraCoolDatabaseSvcFactory.h>
#include <CoraCool/CoraCoolDatabaseSvc.h>
#include <CoraCool/CoraCoolDatabase.h>
#include <CoraCool/CoraCoolFolder.h>
#include <CoraCool/CoraCoolObjectIter.h>
#include <CoraCool/CoraCoolObject.h>
#include <functional>
#include <string>
#include <iostream>
#include "CxxUtils/checker_macros.h"

Go to the source code of this file.

Macros

#define likely(x)   __builtin_expect((x),1)
 
#define unlikely(x)   __builtin_expect((x),0)
 
#define MAKE_FETCHER(type, converter)
 

Typedefs

typedef std::function< PyObject *(const AttributeList &)> coral_attribute_fetcher_t
 

Functions

PyObjectno_coral_conversion_available (const AttributeList &)
 
PyObjectqr_PyString_FromBlob (const coral::Blob &blob)
 
PyObjectqr_PyString_FromStdString (const string &str)
 
template<typename T >
const T & fetch_attribute_data (const coral::Attribute &A)
 
coral_attribute_fetcher_t create_attribute_fetcher (const char *name, const string &type_name)
 
bool make_fetchers (PyObject *to_fetch, const AttributeList &attribute_list, vector< coral_attribute_fetcher_t > &payload_fetchers)
 
PyObjectapply_function (PyObject *function, PyObject *object)
 
CoraCoolFolderPtr fetch_coracool_folder (IDatabasePtr cooldb, const string &folder)
 
const cool::RecordSpecification get_coracool_payload_spec (IDatabasePtr cooldb, const string &folder)
 
PyObjectmake_iov_key (PyObject *iovkey_wrapper, unsigned long long value)
 
PyObjectbrowse_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)
 

Variables

 ATLAS_NO_CHECK_FILE_THREAD_SAFETY
 

Macro Definition Documentation

◆ likely

#define likely (   x)    __builtin_expect((x),1)

Definition at line 9 of file pythonic_coracool.cxx.

◆ MAKE_FETCHER

#define MAKE_FETCHER (   type,
  converter 
)
Value:
if (type_name == #type) { \
return [sname] (const AttributeList& l) -> PyObject* \
{ return converter(fetch_attribute_data<type>(l[sname])); }; \
}

◆ unlikely

#define unlikely (   x)    __builtin_expect((x),0)

Definition at line 10 of file pythonic_coracool.cxx.

Typedef Documentation

◆ coral_attribute_fetcher_t

typedef std::function<PyObject* (const AttributeList&)> coral_attribute_fetcher_t

Definition at line 52 of file pythonic_coracool.cxx.

Function Documentation

◆ apply_function()

PyObject* apply_function ( PyObject function,
PyObject object 
)
inline

Definition at line 151 of file pythonic_coracool.cxx.

152 {
153  // Convert object according to function, taking care of references
154  // If function is null, return unmodified object
155  if (!function || function == Py_None) return object;
156  PyObject *old_object = object;
157  PyObject *new_object = PyObject_CallObject(function, object);
158  Py_DECREF(old_object);
159  return new_object;
160 }

◆ browse_coracool()

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 
)

Definition at line 188 of file pythonic_coracool.cxx.

196 {
197  // Browse CoraCool objects
198  CoraCoolFolderPtr coralFolder = fetch_coracool_folder(cooldb, folder);
199  CoraCoolObjectIterPtr objects = coralFolder->browseObjects(since, until,
200  cs, tag);
201 
202  // Number of attributes to be fetched
203  const Py_ssize_t count = to_fetch ? PySequence_Size(to_fetch) : 0;
204 
205  PyObject* result = PyList_New(0); // List which is returned by this function
206  bool first = true; // Is this the first iteration?
207  CoraCoolObject::const_iterator payload; // Current payload
208 
209  // List of functors which convert an Attribute into a python value
210  vector<coral_attribute_fetcher_t> payload_fetchers;
211 
212  // Loop over IoVs
213  while (objects->hasNext())
214  {
215  const CoraCoolObjectPtr& object = objects->next();
216 
217  PyObject *py_payload_tuple = PyTuple_New(object->size());
218  unsigned int payload_index = 0;
219 
220  // Loop over multiple payloads per record
221  for (payload = object->begin();
222  payload != object->end();
223  ++payload, ++payload_index)
224  {
225  if (unlikely(first))
226  {
227  // On the first iteration, figure out the types and create
228  // specialised functions for retrieving them
229  first = false;
230  if (!make_fetchers(to_fetch, *payload, payload_fetchers))
231  return NULL; // Failure, throw python exception from above
232  }
233 
234  // Create a tuple for the payload and fill it from payload fetchers
235  PyObject *py_payload = PyTuple_New(count);
236  for (Py_ssize_t i = 0; i < count; i++)
237  PyTuple_SET_ITEM(py_payload, i, payload_fetchers[i](*payload));
238 
239  py_payload = apply_function(inner_object_converter, py_payload);
240 
241  if (!py_payload)
242  {
243  // apply_function returned an error
244  // We won't return the list to python so we need to tell python it
245  // can be deleted
246  Py_DECREF(py_payload_tuple);
247  Py_DECREF(result);
248  return NULL;
249  }
250 
251  PyTuple_SET_ITEM(py_payload_tuple, payload_index, py_payload);
252  }
253 
254  PyObject *one = PyTuple_New(4);
255 
256  PyTuple_SET_ITEM(one, 0, make_iov_key(iovkey_wrapper, object->since()));
257  PyTuple_SET_ITEM(one, 1, make_iov_key(iovkey_wrapper, object->until()));
258 
259  PyTuple_SET_ITEM(one, 2, PyLong_FromLong(object->channelId()));
260 
261  // SET_ITEM steals reference, no decref needed
262  PyTuple_SET_ITEM(one, 3, py_payload_tuple);
263 
264  one = apply_function(object_converter, one);
265  if (!one)
266  {
267  // apply_function returned an error
268  // We won't return the list to python so we need to tell python it
269  // can be deleted
270  Py_DECREF(result);
271  return NULL;
272  }
273 
274  PyList_Append(result, one);
275  Py_DECREF(one);
276  }
277 
278  return result;
279 }

◆ create_attribute_fetcher()

coral_attribute_fetcher_t create_attribute_fetcher ( const char *  name,
const string &  type_name 
)

Definition at line 70 of file pythonic_coracool.cxx.

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  return [sname] (const AttributeList& l) -> PyObject* \
80  { return converter(fetch_attribute_data<type>(l[sname])); }; \
81  }
82 
83  // See the python c-api reference for python conversion functions
84  // Python/C API Reference Manual >> Concrete Objects Layer
85  // http://docs.python.org/c-api/concrete.html
86 
87  MAKE_FETCHER(short, PyLong_FromLong)
88  MAKE_FETCHER(int, PyLong_FromLong)
89  MAKE_FETCHER(long long, PyLong_FromLongLong)
90 
91  /*
92 
93  Types from COOL:
94  We need to build up a similar list from CORAL, it would be nice to know
95  where they came from.
96 
97  MAKE_FETCHER(Bool, PyBool_FromLong)
98  MAKE_FETCHER(Float, PyFloat_FromDouble)
99  MAKE_FETCHER(Double, PyFloat_FromDouble)
100  MAKE_FETCHER(UChar, PyLong_FromLong)
101  MAKE_FETCHER(UInt16, PyLong_FromUnsignedLong)
102  MAKE_FETCHER(UInt32, PyLong_FromUnsignedLong)
103  MAKE_FETCHER(UInt63, PyLong_FromUnsignedLongLong)
104  MAKE_FETCHER(UInt64, PyLong_FromUnsignedLongLong)
105  MAKE_FETCHER(String255, qr_PyString_FromStdString)
106  MAKE_FETCHER(String4k, qr_PyString_FromStdString)
107  MAKE_FETCHER(String64k, qr_PyString_FromStdString)
108  MAKE_FETCHER(String16M, qr_PyString_FromStdString)
109  MAKE_FETCHER(Blob16M, qr_PyString_FromBlob)
110  MAKE_FETCHER(Blob64k, qr_PyString_FromBlob)
111  */
112 
113  PyErr_Format(PyExc_RuntimeError,
114  "Type '%s' is not in type conversion table. "
115  "Please add it to pythonic_coracool.cxx. "
116  "Can't convert field '%s'.",
117  type_name.c_str(),
118  name);
120 }

◆ fetch_attribute_data()

template<typename T >
const T& fetch_attribute_data ( const coral::Attribute &  A)

Definition at line 62 of file pythonic_coracool.cxx.

63 {
64  return A.data<T>();
65 }

◆ fetch_coracool_folder()

CoraCoolFolderPtr fetch_coracool_folder ( IDatabasePtr  cooldb,
const string &  folder 
)

Definition at line 162 of file pythonic_coracool.cxx.

163 {
164  CoraCoolDatabaseSvc& corasvc = CoraCoolDatabaseSvcFactory::
165  databaseService();
166 
167  CoraCoolDatabasePtr coradb = corasvc.openDatabase(
168  cooldb->databaseId(), cooldb, true);
169 
170  return coradb->getFolder(folder);
171 }

◆ get_coracool_payload_spec()

const cool::RecordSpecification get_coracool_payload_spec ( IDatabasePtr  cooldb,
const string &  folder 
)

Definition at line 174 of file pythonic_coracool.cxx.

175 {
176  return fetch_coracool_folder(cooldb, folder)->payloadSpecification();
177 }

◆ make_fetchers()

bool make_fetchers ( PyObject to_fetch,
const AttributeList &  attribute_list,
vector< coral_attribute_fetcher_t > &  payload_fetchers 
)

Definition at line 125 of file pythonic_coracool.cxx.

129 {
130  const Py_ssize_t count = to_fetch ? PySequence_Size(to_fetch) : 0;
131 
132  for (Py_ssize_t i = 0; i < count; i++)
133  {
134  PyObject *py_name = PySequence_GetItem(to_fetch, i);
135  const char *name = _PyUnicode_AsString(py_name);
136  const string type = attribute_list[name].specification().typeName();
137 
139 
140  auto pff = pf.target<PyObject* (*)(const AttributeList&)>();
141  if ( pff && *pff == &no_coral_conversion_available)
142  return false; // Failure: A python exception was thrown above
143 
144  payload_fetchers.push_back(pf);
145  Py_DECREF(py_name);
146  }
147 
148  return true; // Success
149 }

◆ make_iov_key()

PyObject* make_iov_key ( PyObject iovkey_wrapper,
unsigned long long  value 
)
inline

Definition at line 179 of file pythonic_coracool.cxx.

181 {
182  static const char * const argtypes = const_cast<char *>("K");
183  if (iovkey_wrapper && iovkey_wrapper != Py_None)
184  return PyObject_CallFunction(iovkey_wrapper, argtypes, value);
185  return PyLong_FromUnsignedLongLong(value);
186 }

◆ no_coral_conversion_available()

PyObject* no_coral_conversion_available ( const AttributeList &  )

Definition at line 55 of file pythonic_coracool.cxx.

55 {return NULL;}

◆ qr_PyString_FromBlob()

PyObject* qr_PyString_FromBlob ( const coral::Blob &  blob)

Definition at line 99 of file quick_retrieve.cxx.

100 {
101  const char* data = reinterpret_cast<const char*>(blob.startingAddress());
102  return PyBytes_FromStringAndSize(data, blob.size());
103 }

◆ qr_PyString_FromStdString()

PyObject* qr_PyString_FromStdString ( const string &  str)

Definition at line 105 of file quick_retrieve.cxx.

106 {
107  return PyUnicode_FromStringAndSize(str.c_str(), str.size());
108 }

Variable Documentation

◆ ATLAS_NO_CHECK_FILE_THREAD_SAFETY

ATLAS_NO_CHECK_FILE_THREAD_SAFETY

Definition at line 34 of file pythonic_coracool.cxx.

data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
get_generator_info.result
result
Definition: get_generator_info.py:21
make_fetchers
bool make_fetchers(PyObject *to_fetch, const AttributeList &attribute_list, vector< coral_attribute_fetcher_t > &payload_fetchers)
Definition: pythonic_coracool.cxx:125
LArConditions2Ntuple.objects
objects
Definition: LArConditions2Ntuple.py:64
create_attribute_fetcher
coral_attribute_fetcher_t create_attribute_fetcher(const char *name, const string &type_name)
Definition: pythonic_coracool.cxx:70
Trk::one
@ one
Definition: TrkDetDescr/TrkSurfaces/TrkSurfaces/RealQuadraticEquation.h:22
athena.value
value
Definition: athena.py:124
UploadAMITag.l
list l
Definition: UploadAMITag.larcaf.py:157
CoraCoolDatabaseSvc
Definition: CoraCoolDatabaseSvc.h:25
python.PyKernel.AttributeList
AttributeList
Definition: PyKernel.py:36
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
XMLtoHeader.count
count
Definition: XMLtoHeader.py:84
python.AthDsoLogger.argtypes
argtypes
Definition: AthDsoLogger.py:43
dq_defect_copy_defect_database.since
def since
Definition: dq_defect_copy_defect_database.py:54
dq_defect_copy_defect_database.until
def until
Definition: dq_defect_copy_defect_database.py:55
CoraCoolObject::const_iterator
AttrListVec::const_iterator const_iterator
Definition: CoraCoolObject.h:23
A
lumiFormat.i
int i
Definition: lumiFormat.py:85
unlikely
#define unlikely(x)
Definition: pythonic_coracool.cxx:9
apply_function
PyObject * apply_function(PyObject *function, PyObject *object)
Definition: pythonic_coracool.cxx:151
coral_attribute_fetcher_t
std::function< PyObject *(const AttributeList &)> coral_attribute_fetcher_t
Definition: pythonic_coracool.cxx:52
make_iov_key
PyObject * make_iov_key(PyObject *iovkey_wrapper, unsigned long long value)
Definition: pythonic_coracool.cxx:179
CoraCoolFolderPtr
boost::shared_ptr< CoraCoolFolder > CoraCoolFolderPtr
Definition: CoraCoolTypes.h:15
fetch_coracool_folder
CoraCoolFolderPtr fetch_coracool_folder(IDatabasePtr cooldb, const string &folder)
Definition: pythonic_coracool.cxx:162
CoraCoolDatabasePtr
boost::shared_ptr< CoraCoolDatabase > CoraCoolDatabasePtr
Definition: CoraCoolTypes.h:12
CoraCoolDatabaseSvc::openDatabase
CoraCoolDatabasePtr openDatabase(const std::string &dbconn, cool::IDatabasePtr cooldb, bool readonly=false)
Definition: CoraCoolDatabaseSvc.cxx:23
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
PixelModuleFeMask_create_db.payload
string payload
Definition: PixelModuleFeMask_create_db.py:69
MAKE_FETCHER
#define MAKE_FETCHER(type, converter)
CoraCoolObjectIterPtr
boost::shared_ptr< CoraCoolObjectIter > CoraCoolObjectIterPtr
Definition: CoraCoolTypes.h:21
python.output.AtlRunQueryRoot.pf
pf
Definition: AtlRunQueryRoot.py:988
DeMoScan.first
bool first
Definition: DeMoScan.py:534
CoraCoolObjectPtr
boost::shared_ptr< CoraCoolObject > CoraCoolObjectPtr
Definition: CoraCoolTypes.h:18
CaloCondBlobAlgs_fillNoiseFromASCII.folder
folder
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:55
pickleTool.object
object
Definition: pickleTool.py:29
str
Definition: BTagTrackIpAccessor.cxx:11
CaloCondBlobAlgs_fillNoiseFromASCII.tag
string tag
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:23
PyObject
_object PyObject
Definition: IPyComponent.h:26
no_coral_conversion_available
PyObject * no_coral_conversion_available(const AttributeList &)
Definition: pythonic_coracool.cxx:55
TSU::T
unsigned long long T
Definition: L1TopoDataTypes.h:35
CaloCondBlobAlgs_fillNoiseFromASCII.blob
blob
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:95