/*************************************************************************** * Copyright (c) 2022 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * * License along with this library; see the file COPYING.LIB. If not, * * write to the Free Software Foundation, Inc., 59 Temple Place, * * Suite 330, Boston, MA 02111-1307, USA * * * ***************************************************************************/ #include "PreCompiled.h" #include "ProgressIndicatorPy.h" using namespace Base; void ProgressIndicatorPy::init_type() { behaviors().name("ProgressIndicator"); behaviors().doc("Progress indicator"); // you must have overwritten the virtual functions behaviors().supportRepr(); behaviors().supportGetattr(); behaviors().supportSetattr(); behaviors().set_tp_new(PyMake); add_varargs_method("start", &ProgressIndicatorPy::start, "start(string,int)"); add_varargs_method("next", &ProgressIndicatorPy::next, "next()"); add_varargs_method("stop", &ProgressIndicatorPy::stop, "stop()"); } Py::PythonType& ProgressIndicatorPy::behaviors() { return Py::PythonExtension::behaviors(); } PyTypeObject* ProgressIndicatorPy::type_object() { return Py::PythonExtension::type_object(); } bool ProgressIndicatorPy::check(PyObject* py) { return Py::PythonExtension::check(py); } PyObject* ProgressIndicatorPy::PyMake(struct _typeobject*, PyObject*, PyObject*) { return new ProgressIndicatorPy(); } ProgressIndicatorPy::ProgressIndicatorPy() = default; ProgressIndicatorPy::~ProgressIndicatorPy() = default; Py::Object ProgressIndicatorPy::repr() { std::string s = "Base.ProgressIndicator"; return Py::String(s); // NOLINT } Py::Object ProgressIndicatorPy::start(const Py::Tuple& args) { char* text = nullptr; unsigned int steps = 0; if (!PyArg_ParseTuple(args.ptr(), "sI", &text, &steps)) { throw Py::Exception(); } if (!_seq) { _seq = std::make_unique(text, steps); } return Py::None(); } Py::Object ProgressIndicatorPy::next(const Py::Tuple& args) { int b = 0; if (!PyArg_ParseTuple(args.ptr(), "|i", &b)) { throw Py::Exception(); } if (_seq) { try { _seq->next(b != 0); } catch (const Base::AbortException&) { _seq.reset(); throw Py::RuntimeError("abort progress indicator"); } } return Py::None(); } Py::Object ProgressIndicatorPy::stop(const Py::Tuple& args) { if (!PyArg_ParseTuple(args.ptr(), "")) { throw Py::Exception(); } _seq.reset(); return Py::None(); }