blob: 734193b15cefaeadf473f0247ec3623b77d3df5c (
plain)
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
|
/*
* Copyright (C) 2015-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
// python.h should always be included first before any other includes
#include "ContextItemAddonInvoker.h"
#include "interfaces/python/swig.h"
#include "utils/log.h"
#include <Python.h>
#include <osdefs.h>
CContextItemAddonInvoker::CContextItemAddonInvoker(
ILanguageInvocationHandler *invocationHandler,
const CFileItemPtr& item)
: CAddonPythonInvoker(invocationHandler), m_item(CFileItemPtr(new CFileItem(*item.get())))
{
}
CContextItemAddonInvoker::~CContextItemAddonInvoker() = default;
void CContextItemAddonInvoker::onPythonModuleInitialization(void* moduleDict)
{
CAddonPythonInvoker::onPythonModuleInitialization(moduleDict);
if (m_item)
{
XBMCAddon::xbmcgui::ListItem* arg = new XBMCAddon::xbmcgui::ListItem(m_item);
PyObject* pyItem = PythonBindings::makePythonInstance(arg, true);
if (pyItem == Py_None || PySys_SetObject("listitem", pyItem) == -1)
{
CLog::Log(LOGERROR, "CPythonInvoker({}, {}): Failed to set sys parameter", GetId(),
m_sourceFile);
//FIXME: we should really abort execution
}
}
}
|