PythonUtil.h 8.7 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#pragma once

#ifndef PADDLE_NO_PYTHON
// must include the following two blocks, otherwise,
// gcc compiler may produce warning
L
liaogang 已提交
20 21 22 23 24 25
#ifdef __APPLE__
#define _POSIX_SOURCE
#define _POSIX_C_SOURCE 200809L
#define _XOPEN_SOURCE 700
#endif

Z
zhangjinchao01 已提交
26 27 28 29 30 31 32 33 34 35
#ifdef _POSIX_C_SOURCE
#define __TEMP_POSIX_C_SOURCE _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif
#ifdef _XOPEN_SOURCE
#define __TEMP_XOPEN_SOURCE _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif
#include <Python.h>
#include <frameobject.h>
L
liaogang 已提交
36

Z
zhangjinchao01 已提交
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
#endif

#include "paddle/utils/Util.h"
#include <stdarg.h>
#include <mutex>
#include <map>

namespace paddle {

std::string callPythonFunc(const std::string& moduleName,
                           const std::string& funcName,
                           const std::vector<std::string>& args);

#ifndef PADDLE_NO_PYTHON

/**
 * Global lock guard of python C-api invokes.
 * NOTE: the lock of this guard is reentrant or recursive.
 */
class PyGuard {
public:
  PyGuard();
  PyGuard(const PyGuard& other) = delete;
  PyGuard& operator=(const PyGuard& other) = delete;

private:
  std::lock_guard<std::recursive_mutex> guard_;
};

struct PyObjectDeleter {
  void operator()(PyObject* obj) {
    if (obj) {
      Py_DECREF(obj);
    }
  }
};

typedef std::unique_ptr<PyObject, PyObjectDeleter> PyObjectPtr;

PyObjectPtr callPythonFuncRetPyObj(const std::string& moduleName,
                                   const std::string& funcName,
                                   const std::vector<std::string>& args);

PyObjectPtr createPythonClass(const std::string& moduleName,
                              const std::string& className,
                              const std::vector<std::string>& args,
                              const std::map<std::string, std::string>& kwargs);

85
#define CHECK_PY(x) CHECK((x) != nullptr) << ::paddle::py::getPyCallStack()
Z
zhangjinchao01 已提交
86 87

namespace py {
88 89
PyObjectPtr import(const std::string& moduleName);

Z
zhangjinchao01 已提交
90 91 92 93 94 95 96 97 98 99 100 101
/**
 * Cast a PyLong or PyInt to int type T.
 * @tparam T return type.
 * @param [in] obj PyLong or PyInt object.
 * @param [out] ok status for casting. False if error occured. nullptr if user
 *                 don't care is ok or not.
 * @return The value of python object, or 0 if not ok.
 */
template <typename T>
T castInt(PyObject* obj, bool* ok = nullptr) {
  if (PyLong_Check(obj)) {
    if (ok) *ok = true;
102
    return (T)PyLong_AsUnsignedLong(obj);
Z
zhangjinchao01 已提交
103 104
  } else if (PyInt_Check(obj)) {
    if (ok) *ok = true;
105
    return (T)PyInt_AsLong(obj);
Z
zhangjinchao01 已提交
106 107
  } else {
    if (ok) *ok = false;
108
    return (T)0;
Z
zhangjinchao01 已提交
109 110 111 112 113 114 115 116
  }
}

/**
 * Invoke repr of python object.
 *
 * Just like toString method in java.
 */
117
char* repr(PyObject* obj);
Z
zhangjinchao01 已提交
118 119 120 121

/**
 * Invoke repr of python object.
 */
122
inline char* repr(const PyObjectPtr& obj) { return repr(obj.get()); }
Z
zhangjinchao01 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135

/**
 * Get Python Error Stack String.
 */
std::string getPyCallStack();

/**
 * Object Helper for PyObjectPtr.
 *
 * Implements getAttr method for object.
 */
class ObjectHelper {
public:
136
  explicit ObjectHelper(const PyObjectPtr& obj) : obj_(obj) {}
Z
zhangjinchao01 已提交
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

  /**
   * get attribute
   */
  inline PyObject* getAttr(const std::string& field) const {
    auto obj = PyObject_GetAttrString(obj_.get(), field.c_str());
    CHECK_PY(obj) << "Cannot get attribute on python object " << obj_.get();
    return obj;
  }

  /**
   * Get Int attribute
   * @param [in] field  attribute name.
   * @param [out] ok true if this attribute is int.
   * @tparam T int type.
   * @return int value.
   */
  template <typename T>
  T getIntAttr(const std::string& field, bool* ok = nullptr) const {
    PyObjectPtr tmp(getAttr(field));
    return castInt<T>(tmp.get(), ok);
  }

  /**
   * Get int attribute. Log(Fatal) when not ok
   * @param field attribute name.
   * @return int value.
   */
  template <typename T>
  T getIntAttrWithError(const std::string& field) const {
    bool ok;
    T tmp = getIntAttr<T>(field, &ok);
    CHECK(ok) << "Cannot get integer attribute on object " << obj_.get();
    return tmp;
  }

  /**
   * Get bool attribute.
   * @param field
176 177 178 179 180 181 182 183
   * @param [out] isBoolType return true if attribute is bool type. If the
   *                         attribute is not bool type, then an implicit
   *                         conversion will happens, and will return the
   *                         conversion result.
   *
   *                         Such as, if the attribute is 1, then the return
   *                         value of function will be true, but the isBoolType
   *                         will return false.
Z
zhangjinchao01 已提交
184 185
   * @return
   */
186
  bool getBoolAttr(const std::string& field, bool* isBoolType = nullptr) const {
Z
zhangjinchao01 已提交
187
    PyObjectPtr tmp(getAttr(field));
188 189 190
    if (isBoolType) {
      *isBoolType = PyBool_Check(tmp.get());
    }
Z
zhangjinchao01 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
    return PyObject_IsTrue(tmp.get());
  }

private:
  const PyObjectPtr& obj_;
};

/**
 * Python Sequence Helper
 *
 * The python sequence means list or tuple.
 */
class SequenceHelper {
public:
  explicit SequenceHelper(const PyObjectPtr& seq) : seq_(seq.get()) {
    CHECK(PySequence_Check(seq_));
  }

209
  explicit SequenceHelper(PyObject* seq) : seq_(seq) {
Z
zhangjinchao01 已提交
210 211 212
    CHECK(PySequence_Check(seq_));
  }

213
  inline size_t size() const { return (size_t)PySequence_Size(seq_); }
Z
zhangjinchao01 已提交
214

215
  inline PyObject* operator[](size_t i) const {
Z
zhangjinchao01 已提交
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
    return PySequence_Fast_GET_ITEM(seq_, i);
  }

  inline double getDouble(size_t i) const {
    auto* ptr = (*this)[i];
    return PyFloat_AsDouble(ptr);
  }

  /**
   * Set a sequence item o[i] = obj;
   * @param i index
   * @param obj setted item.
   * @param steal if steal = true, sequence will move object in iteself,
   *              just like std::move. Otherwise, it will increase reference
   *              count. Default is false.
   */
  inline void set(size_t i, const PyObjectPtr& obj, bool steal = false) {
    this->set(i, obj.get(), steal);
  }

  /**
   * Set a sequence item o[i] = obj;
   */
  inline void set(size_t i, PyObject* obj, bool steal = false) {
    if (!steal) {
      Py_XINCREF(obj);
    }
    if (PyTuple_Check(seq_)) {
      CHECK_NE(PyTuple_SetItem(seq_, i, obj), -1) << getPyCallStack();
    } else {
      CHECK_NE(PySequence_SetItem(seq_, i, obj), -1) << getPyCallStack();
    }
  }

private:
  PyObject* seq_;
};

class DictHelper {
public:
256
  explicit DictHelper(PyObject* d) : dict_(d) {}
Z
zhangjinchao01 已提交
257

258
  explicit DictHelper(const PyObjectPtr& d) : dict_(d.get()) {}
Z
zhangjinchao01 已提交
259 260 261 262 263 264 265 266 267

  void set(const std::string& key, PyObject* item) {
    PyDict_SetItemString(dict_, key.c_str(), item);
  }

  void setBool(const std::string& key, bool b) {
    this->set(key, PyBool_FromLong(b));
  }

268 269
  void setStringList(const std::string& key,
                     const std::vector<std::string>& items) {
270 271
    auto* list = PyList_New(items.size());
    for (size_t i = 0; i < items.size(); ++i) {
272 273 274 275 276
      PyList_SetItem(list, i, PyString_FromString(items[i].c_str()));
    }
    this->set(key, list);
  }

Z
zhangjinchao01 已提交
277
private:
278
  inline void checkDict() { CHECK(PyDict_Check(this->dict_)); }
Z
zhangjinchao01 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291

  PyObject* dict_;
};

inline static bool isCallable(const PyObjectPtr& obj) {
  return PyCallable_Check(obj.get());
}

/**
 * Wrap a callable object.
 */
class CallableHelper {
public:
292
  explicit CallableHelper(const PyObjectPtr& obj) : obj_(obj) {
Z
zhangjinchao01 已提交
293 294 295 296 297 298 299 300 301
    CHECK(py::isCallable(obj_));
  }

  ~CallableHelper() {}

  /**
   * reset args, and create new tuple.
   * @param sz args size.
   */
302
  void setArgsSize(size_t sz) { args.reset(PyTuple_New(sz)); }
Z
zhangjinchao01 已提交
303 304 305 306

  /**
   * Get args sequence. User can set/get by SequenceHelper.
   */
307
  SequenceHelper getArgs() { return SequenceHelper(args); }
Z
zhangjinchao01 已提交
308 309 310 311

  /**
   * Call python method, return an object.
   */
312
  PyObject* operator()() {
Z
zhangjinchao01 已提交
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
    PyGuard guard;
    return PyObject_Call(obj_.get(), args.get(), kwargs.get());
  }

private:
  const PyObjectPtr& obj_;
  PyObjectPtr args;
  PyObjectPtr kwargs;
};

inline static PyObject* iterNext(const PyObjectPtr& context, bool* atEnd) {
  PyGuard g;
  PyObject* data = PyIter_Next(context.get());
  if (data == nullptr) {
    if (PyErr_ExceptionMatches(PyExc_StopIteration)) {
      PyErr_Clear();
      *atEnd = true;
      return nullptr;
    } else if (PyErr_Occurred()) {
      CHECK_PY(data) << "Calling iterator next error";
      return nullptr;
    } else {
      *atEnd = false;
      return data;  // just return none in iterator.
    }
  } else {
    *atEnd = false;
    return data;
  }
}
}  // namespace py

#endif

/**
 * Initialize python.
 */
void initPython(int argc, char** argv);

}  // namespace paddle