summaryrefslogtreecommitdiff
path: root/src/scripts/testgen/name_helpers.py
blob: e03ad23a41eae16abc60d1fcb186a7e5bd597bbc (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env python3
# encoding: utf-8

"""Helper module with naming rules  for the C# binding."""

import os
import sys

# Hackish way of detecting pyolian...
script_path = os.path.dirname(os.path.realpath(__file__))

if "EFL_DIR" in os.environ:
    root_path = os.environ["EFL_DIR"]
else:
    root_path = os.path.abspath(os.path.join(script_path, "..", "..", ".."))

sys.path.insert(0, os.path.join(root_path, "src", "scripts"))

from pyolian import eolian


def remove_underlines(name):
    """Removes underlines from name"""
    return name.replace("_", "")


def managed_name(name):
    """Replaces underlines and capitalize first letter of each word"""

    words = name.split("_")
    return "".join(word[0].upper() + word[1:] for word in words)


def managed_namespaces(namespaces):
    """Converts an eolian list of namespaces into the managed namespace"""
    return ".".join(remove_underlines(nsp) for nsp in namespaces)


def class_managed_name(cls):
    """Gets the full managed name of the given eolian class"""
    ret = managed_namespaces(cls.namespaces)

    if ret:
        ret += "."

    if cls.type in (eolian.Eolian_Class_Type.INTERFACE, eolian.Eolian_Class_Type.MIXIN):
        ret += "I"

    ret += remove_underlines(cls.short_name)

    if ret == "Efl.Class":
        return "System.Type"

    return ret


def type_managed_name(type):
    """Gets the full managed name of a given type."""
    if type.type == eolian.Eolian_Type_Type.CLASS:
        return class_managed_name(type.class_)

    ret = managed_namespaces(type.namespaces)

    if ret:
        ret += "."

    ret += remove_underlines(type.short_name)

    return ret


# Need to pass the class as it is not accessible from Event in Pyolian
def event_args_managed_name(event, cls):
    """Gets the full managed name of the event arguments struct"""
    if event.type is None:
        return "System.EventArgs"

    ret = class_managed_name(cls)

    return ret + managed_name(event.myname) + "Evt_Args"


def event_managed_short_name(event):
    """Gets the managed short name of an event"""

    return managed_name(event.name.replace(",", "_")) + "Evt"


def enum_field_managed_name(field):
    """Gets the managed name of an Enum field"""

    return managed_name(field.name)