EvEmu
0.8.4
11 September 2021
|
Python object "exceptions.GPSTransportClosed". More...
#include "PyExceptions.h"
Public Member Functions | |
GPSTransportClosed (const char *reason) | |
GPSTransportClosed (std::string &reason) | |
void | AddKeyword (const char *name, PyRep *value) |
Adds keyword to exception. More... | |
PyDict * | GetReasonArgs () const |
![]() | |
PyObjectEx_Type1 (PyToken *type, PyTuple *args, bool enclosed=false) | |
PyObjectEx_Type1 (PyObjectEx_Type1 *args1, PyTuple *args2, bool enclosed=false) | |
PyObjectEx_Type1 (PyToken *type, PyTuple *args, PyDict *keywords, bool enclosed=false) | |
PyObjectEx_Type1 (PyToken *type, PyTuple *args, PyList *keywords, bool enclosed=false) | |
PyToken * | GetType () const |
PyTuple * | GetArgs () const |
PyDict * | GetKeywords () const |
PyRep * | FindKeyword (const char *keyword) const |
![]() | |
PyObjectEx (bool is_type_2, PyRep *header) | |
PyObjectEx (const PyObjectEx &oth) | |
PyObjectEx (PyObjectEx &&oth)=delete | |
PyObjectEx & | operator= (const PyObjectEx &oth) |
PyObjectEx & | operator= (PyObjectEx &&oth)=delete |
PyRep * | Clone () const |
Clones object. More... | |
bool | visit (PyVisitor &v) const |
Visits object. More... | |
PyRep * | header () const |
bool | isType2 () const |
list_type & | list () |
const list_type & | list () const |
dict_type & | dict () |
const dict_type & | dict () const |
![]() | |
PyType | GetType () const |
bool | IsInt () const |
bool | IsLong () const |
bool | IsFloat () const |
bool | IsBool () const |
bool | IsBuffer () const |
bool | IsString () const |
bool | IsWString () const |
bool | IsToken () const |
bool | IsTuple () const |
bool | IsList () const |
bool | IsDict () const |
bool | IsNone () const |
bool | IsSubStruct () const |
bool | IsSubStream () const |
bool | IsChecksumedStream () const |
bool | IsObject () const |
bool | IsObjectEx () const |
bool | IsPackedRow () const |
const char * | TypeString () const |
PyInt * | AsInt () |
const PyInt * | AsInt () const |
PyLong * | AsLong () |
const PyLong * | AsLong () const |
PyFloat * | AsFloat () |
const PyFloat * | AsFloat () const |
PyBool * | AsBool () |
const PyBool * | AsBool () const |
PyBuffer * | AsBuffer () |
const PyBuffer * | AsBuffer () const |
PyString * | AsString () |
const PyString * | AsString () const |
PyWString * | AsWString () |
const PyWString * | AsWString () const |
PyToken * | AsToken () |
const PyToken * | AsToken () const |
PyTuple * | AsTuple () |
const PyTuple * | AsTuple () const |
PyList * | AsList () |
const PyList * | AsList () const |
PyDict * | AsDict () |
const PyDict * | AsDict () const |
PyNone * | AsNone () |
const PyNone * | AsNone () const |
PySubStruct * | AsSubStruct () |
const PySubStruct * | AsSubStruct () const |
PySubStream * | AsSubStream () |
const PySubStream * | AsSubStream () const |
PyChecksumedStream * | AsChecksumedStream () |
const PyChecksumedStream * | AsChecksumedStream () const |
PyObject * | AsObject () |
const PyObject * | AsObject () const |
PyObjectEx * | AsObjectEx () |
const PyObjectEx * | AsObjectEx () const |
PyPackedRow * | AsPackedRow () |
const PyPackedRow * | AsPackedRow () const |
void | Dump (FILE *into, const char *pfx) const |
Dumps object to file. More... | |
void | Dump (LogType type, const char *pfx) const |
Dumps object to console. More... | |
virtual int32 | hash () const |
virtual function to generate a hash value of a object. More... | |
![]() | |
RefObject (size_t initRefCount) | |
Initializes reference count. More... | |
virtual | ~RefObject () |
Destructor; must be virtual. More... | |
size_t | GetCount () |
Static Protected Member Functions | |
static PyTuple * | _CreateArgs (const char *reason) |
static PyDict * | _CreateKeywords (const char *reason) |
![]() | |
static PyTuple * | _CreateHeader (PyToken *type, PyTuple *args, bool enclosed=false) |
static PyTuple * | _CreateHeader (PyObjectEx_Type1 *args1, PyTuple *args2, bool enclosed=false) |
static PyTuple * | _CreateHeader (PyToken *type, PyTuple *args, PyDict *keywords, bool enclosed=false) |
static PyTuple * | _CreateHeader (PyToken *type, PyTuple *args, PyList *keywords, bool enclosed=false) |
Additional Inherited Members | |
![]() | |
typedef PyList | list_type |
typedef list_type::iterator | list_iterator |
typedef list_type::const_iterator | const_list_iterator |
typedef PyDict | dict_type |
typedef dict_type::iterator | dict_iterator |
typedef dict_type::const_iterator | const_dict_iterator |
![]() | |
enum | PyType { PyTypeMin = 0, PyTypeInt = 1, PyTypeLong = 2, PyTypeFloat = 3, PyTypeBool = 4, PyTypeBuffer = 5, PyTypeString = 6, PyTypeWString = 7, PyTypeToken = 8, PyTypeTuple = 9, PyTypeList = 10, PyTypeDict = 11, PyTypeNone = 12, PyTypeSubStruct = 13, PyTypeSubStream = 14, PyTypeChecksumedStream = 15, PyTypeObject = 16, PyTypeObjectEx = 17, PyTypePackedRow = 18, PyTypeError = 19 } |
Python wire object types. More... | |
![]() | |
static std::string | StringContent (PyRep *pRep) |
static int64 | IntegerValue (PyRep *pRep) |
static uint32 | IntegerValueU32 (PyRep *pRep) |
![]() | |
virtual | ~PyObjectEx_Type1 () |
![]() | |
virtual | ~PyObjectEx () |
![]() | |
PyRep (PyType t) | |
PyRep (const PyRep &oth) | |
PyRep (PyRep &&oth)=delete | |
PyRep & | operator= (const PyRep &oth)=default |
PyRep & | operator= (PyRep &&oth)=default |
virtual | ~PyRep () |
![]() | |
void | IncRef () const |
Increments reference count of object by one. More... | |
void | DecRef () const |
Decrements reference count of object by one. More... | |
![]() | |
PyRep *const | mHeader |
const bool | mIsType2 |
list_type *const | mList |
dict_type *const | mDict |
![]() | |
const PyType | mType |
![]() | |
size_t | mRefCount |
Reference count of instance. More... | |
bool | mDeleted |
Python object "exceptions.GPSTransportClosed".
This exception is used when refusing client login.
Definition at line 59 of file PyExceptions.h.
GPSTransportClosed::GPSTransportClosed | ( | const char * | reason | ) |
Definition at line 46 of file PyExceptions.cpp.
GPSTransportClosed::GPSTransportClosed | ( | std::string & | reason | ) |
Definition at line 51 of file PyExceptions.cpp.
|
staticprotected |
Definition at line 69 of file PyExceptions.cpp.
References args, and PyTuple::SetItem().
|
staticprotected |
Definition at line 77 of file PyExceptions.cpp.
References EVEBuildVersion, EVEProjectCodename, EVEProjectRegion, EVEVersionNumber, GetFileTimeNow(), MachoNetVersion, and PyDict::SetItemString().
void GPSTransportClosed::AddKeyword | ( | const char * | name, |
PyRep * | value | ||
) |
Adds keyword to exception.
[in] | name | The keyword. |
[in] | value | Value to be associated with the keyword. |
Definition at line 56 of file PyExceptions.cpp.
References GetReasonArgs(), and PyDict::SetItemString().
PyDict * GPSTransportClosed::GetReasonArgs | ( | ) | const |
Definition at line 61 of file PyExceptions.cpp.
References PyRep::AsDict(), and PyObjectEx_Type1::FindKeyword().
Referenced by AddKeyword().