bt2: Rename files to use singular form
[babeltrace.git] / bindings / python / bt2 / bt2 / event_class.py
index fb527ad7dce6bad27b039b4151901c36df537cc7..5259f9183667e86228cd86c4b1ae7bc93326f309 100644 (file)
 # THE SOFTWARE.
 
 from bt2 import native_bt, object, utils
-import bt2.field_types
+import bt2.field_class
 import collections.abc
-import bt2.values
+import bt2.value
 import bt2.event
 import copy
 import bt2
 
 
 class EventClassLogLevel:
-    UNKNOWN = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_UNKNOWN
-    UNSPECIFIED = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_UNSPECIFIED
-    EMERGENCY = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_EMERGENCY
-    ALERT = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_ALERT
-    CRITICAL = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_CRITICAL
-    ERROR = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_ERROR
-    WARNING = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_WARNING
-    NOTICE = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_NOTICE
-    INFO = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_INFO
-    DEBUG_SYSTEM = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM
-    DEBUG_PROGRAM = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM
-    DEBUG_PROCESS = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS
-    DEBUG_MODULE = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE
-    DEBUG_UNIT = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT
-    DEBUG_FUNCTION = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION
-    DEBUG_LINE = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG_LINE
-    DEBUG = native_bt.CTF_EVENT_CLASS_LOG_LEVEL_DEBUG
+    EMERGENCY = native_bt.EVENT_CLASS_LOG_LEVEL_EMERGENCY
+    ALERT = native_bt.EVENT_CLASS_LOG_LEVEL_ALERT
+    CRITICAL = native_bt.EVENT_CLASS_LOG_LEVEL_CRITICAL
+    ERROR = native_bt.EVENT_CLASS_LOG_LEVEL_ERROR
+    WARNING = native_bt.EVENT_CLASS_LOG_LEVEL_WARNING
+    NOTICE = native_bt.EVENT_CLASS_LOG_LEVEL_NOTICE
+    INFO = native_bt.EVENT_CLASS_LOG_LEVEL_INFO
+    DEBUG_SYSTEM = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM
+    DEBUG_PROGRAM = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM
+    DEBUG_PROCESS = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS
+    DEBUG_MODULE = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE
+    DEBUG_UNIT = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT
+    DEBUG_FUNCTION = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION
+    DEBUG_LINE = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_LINE
+    DEBUG = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG
 
 
 class EventClass(object._Object):
     def __init__(self, name, id=None, log_level=None, emf_uri=None,
-                 context_field_type=None, payload_field_type=None):
+                 context_field_class=None, payload_field_class=None):
         utils._check_str(name)
-        ptr = native_bt.ctf_event_class_create(name)
+        ptr = native_bt.event_class_create(name)
 
         if ptr is None:
             raise bt2.CreationError('cannot create event class object')
@@ -69,37 +67,37 @@ class EventClass(object._Object):
         if emf_uri is not None:
             self.emf_uri = emf_uri
 
-        if context_field_type is not None:
-            self.context_field_type = context_field_type
+        if context_field_class is not None:
+            self.context_field_class = context_field_class
 
-        if payload_field_type is not None:
-            self.payload_field_type = payload_field_type
+        if payload_field_class is not None:
+            self.payload_field_class = payload_field_class
 
     @property
     def stream_class(self):
-        sc_ptr = native_bt.ctf_event_class_get_stream_class(self._ptr)
+        sc_ptr = native_bt.event_class_get_stream_class(self._ptr)
 
         if sc_ptr is not None:
             return bt2.StreamClass._create_from_ptr(sc_ptr)
 
     @property
     def name(self):
-        return native_bt.ctf_event_class_get_name(self._ptr)
+        return native_bt.event_class_get_name(self._ptr)
 
     @property
     def id(self):
-        id = native_bt.ctf_event_class_get_id(self._ptr)
+        id = native_bt.event_class_get_id(self._ptr)
         return id if id >= 0 else None
 
     @id.setter
     def id(self, id):
         utils._check_int64(id)
-        ret = native_bt.ctf_event_class_set_id(self._ptr, id)
+        ret = native_bt.event_class_set_id(self._ptr, id)
         utils._handle_ret(ret, "cannot set event class object's ID")
 
     @property
     def log_level(self):
-        log_level = native_bt.ctf_event_class_get_log_level(self._ptr)
+        log_level = native_bt.event_class_get_log_level(self._ptr)
         return log_level if log_level >= 0 else None
 
     @log_level.setter
@@ -126,61 +124,61 @@ class EventClass(object._Object):
         if log_level not in log_levels:
             raise ValueError("'{}' is not a valid log level".format(log_level))
 
-        ret = native_bt.ctf_event_class_set_log_level(self._ptr, log_level)
+        ret = native_bt.event_class_set_log_level(self._ptr, log_level)
         utils._handle_ret(ret, "cannot set event class object's log level")
 
     @property
     def emf_uri(self):
-        return native_bt.ctf_event_class_get_emf_uri(self._ptr)
+        return native_bt.event_class_get_emf_uri(self._ptr)
 
     @emf_uri.setter
     def emf_uri(self, emf_uri):
         utils._check_str(emf_uri)
-        ret = native_bt.ctf_event_class_set_emf_uri(self._ptr, emf_uri)
+        ret = native_bt.event_class_set_emf_uri(self._ptr, emf_uri)
         utils._handle_ret(ret, "cannot set event class object's EMF URI")
 
     @property
-    def context_field_type(self):
-        ft_ptr = native_bt.ctf_event_class_get_context_type(self._ptr)
+    def context_field_class(self):
+        fc_ptr = native_bt.event_class_get_context_type(self._ptr)
 
-        if ft_ptr is None:
+        if fc_ptr is None:
             return
 
-        return bt2.field_types._create_from_ptr(ft_ptr)
+        return bt2.field_class._create_from_ptr(fc_ptr)
 
-    @context_field_type.setter
-    def context_field_type(self, context_field_type):
-        context_field_type_ptr = None
+    @context_field_class.setter
+    def context_field_class(self, context_field_class):
+        context_field_class_ptr = None
 
-        if context_field_type is not None:
-            utils._check_type(context_field_type, bt2.field_types._FieldType)
-            context_field_type_ptr = context_field_type._ptr
+        if context_field_class is not None:
+            utils._check_type(context_field_class, bt2.field_class._FieldClass)
+            context_field_class_ptr = context_field_class._ptr
 
-        ret = native_bt.ctf_event_class_set_context_type(self._ptr, context_field_type_ptr)
-        utils._handle_ret(ret, "cannot set event class object's context field type")
+        ret = native_bt.event_class_set_context_type(self._ptr, context_field_class_ptr)
+        utils._handle_ret(ret, "cannot set event class object's context field class")
 
     @property
-    def payload_field_type(self):
-        ft_ptr = native_bt.ctf_event_class_get_payload_type(self._ptr)
+    def payload_field_class(self):
+        fc_ptr = native_bt.event_class_get_payload_type(self._ptr)
 
-        if ft_ptr is None:
+        if fc_ptr is None:
             return
 
-        return bt2.field_types._create_from_ptr(ft_ptr)
+        return bt2.field_class._create_from_ptr(fc_ptr)
 
-    @payload_field_type.setter
-    def payload_field_type(self, payload_field_type):
-        payload_field_type_ptr = None
+    @payload_field_class.setter
+    def payload_field_class(self, payload_field_class):
+        payload_field_class_ptr = None
 
-        if payload_field_type is not None:
-            utils._check_type(payload_field_type, bt2.field_types._FieldType)
-            payload_field_type_ptr = payload_field_type._ptr
+        if payload_field_class is not None:
+            utils._check_type(payload_field_class, bt2.field_class._FieldClass)
+            payload_field_class_ptr = payload_field_class._ptr
 
-        ret = native_bt.ctf_event_class_set_payload_type(self._ptr, payload_field_type_ptr)
-        utils._handle_ret(ret, "cannot set event class object's payload field type")
+        ret = native_bt.event_class_set_payload_type(self._ptr, payload_field_class_ptr)
+        utils._handle_ret(ret, "cannot set event class object's payload field class")
 
     def __call__(self):
-        event_ptr = native_bt.ctf_event_create(self._ptr)
+        event_ptr = native_bt.event_create(self._ptr)
 
         if event_ptr is None:
             raise bt2.CreationError('cannot create event field object')
@@ -199,20 +197,20 @@ class EventClass(object._Object):
             self.id,
             self.log_level,
             self.emf_uri,
-            self.context_field_type,
-            self.payload_field_type
+            self.context_field_class,
+            self.payload_field_class
         )
         other_props = (
             other.name,
             other.id,
             other.log_level,
             other.emf_uri,
-            other.context_field_type,
-            other.payload_field_type
+            other.context_field_class,
+            other.payload_field_class
         )
         return self_props == other_props
 
-    def _copy(self, ft_copy_func):
+    def _copy(self, fc_copy_func):
         cpy = EventClass(self.name)
         cpy.id = self.id
 
@@ -222,12 +220,12 @@ class EventClass(object._Object):
         if self.emf_uri is not None:
             cpy.emf_uri = self.emf_uri
 
-        cpy.context_field_type = ft_copy_func(self.context_field_type)
-        cpy.payload_field_type = ft_copy_func(self.payload_field_type)
+        cpy.context_field_class = fc_copy_func(self.context_field_class)
+        cpy.payload_field_class = fc_copy_func(self.payload_field_class)
         return cpy
 
     def __copy__(self):
-        return self._copy(lambda ft: ft)
+        return self._copy(lambda fc: fc)
 
     def __deepcopy__(self, memo):
         cpy = self._copy(copy.deepcopy)
This page took 0.028301 seconds and 4 git commands to generate.