From: Paul Vinciguerra Date: Wed, 27 Feb 2019 04:39:44 +0000 (-0800) Subject: vpp_papi.py: Change VppEnum from explicit metaclass to metaclass wrapper/decorator. X-Git-Tag: v19.04-rc1~377 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=5fced04ba58a14c370c60c275302519de5e15893;p=vpp.git vpp_papi.py: Change VppEnum from explicit metaclass to metaclass wrapper/decorator. Change-Id: Iab41bb972e3c7ec005a1a13d5a25f654ae8c3932 Signed-off-by: Paul Vinciguerra --- diff --git a/src/vpp-api/python/vpp_papi/vpp_papi.py b/src/vpp-api/python/vpp_papi/vpp_papi.py index 9c4ede90d48..2b73023025b 100644 --- a/src/vpp-api/python/vpp_papi/vpp_papi.py +++ b/src/vpp-api/python/vpp_papi/vpp_papi.py @@ -21,6 +21,7 @@ import os import logging import collections import struct +import functools import json import threading import fnmatch @@ -38,17 +39,23 @@ else: import queue as queue +def metaclass(metaclass): + @functools.wraps(metaclass) + def wrapper(cls): + return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) + + return wrapper + + class VppEnumType(type): def __getattr__(cls, name): t = vpp_get_type(name) return t.enum -# Python3 -# class VppEnum(metaclass=VppEnumType): -# pass +@metaclass(VppEnumType) class VppEnum(object): - __metaclass__ = VppEnumType + pass def vpp_atexit(vpp_weakref):