1
- from __future__ import annotations
2
-
3
1
from typing import Any , Literal , Optional , Union
4
2
5
3
import more_itertools
4
+ from more_itertools import first_true
6
5
7
6
from annofabapi .models import Lang
8
7
9
8
10
9
def get_english_message (internationalization_message : dict [str , Any ]) -> str :
11
10
"""
12
- `InternalizationMessage `クラスの値から、英語メッセージを取得します。
11
+ `InternationalizationMessage `クラスの値から、英語メッセージを取得します。
13
12
英語メッセージが見つからない場合は ``ValueError`` をスローします。
14
13
15
14
Notes:
@@ -38,9 +37,9 @@ def get_english_message(internationalization_message: dict[str, Any]) -> str:
38
37
"""
39
38
40
39
41
- def get_message_with_lang (internationalization_message : dict [str , Any ], lang : Union [Lang , STR_LANG ]) -> Optional [str ]: # noqa: UP007
40
+ def get_message_with_lang (internationalization_message : dict [str , Any ], lang : Union [Lang , STR_LANG ]) -> Optional [str ]:
42
41
"""
43
- `InternalizationMessage `クラスの値から、指定した ``lang`` に対応するメッセージを取得します。
42
+ `InternationalizationMessage `クラスの値から、指定した ``lang`` に対応するメッセージを取得します。
44
43
45
44
Args:
46
45
internationalization_message: 多言語化されたメッセージ。キー ``messages`` が存在している必要があります。
@@ -60,3 +59,93 @@ def get_message_with_lang(internationalization_message: dict[str, Any], lang: Un
60
59
if result is not None :
61
60
return result ["message" ]
62
61
return None
62
+
63
+
64
+ def get_choice (choices : list [dict [str , Any ]], * , choice_id : Optional [str ] = None , choice_name : Optional [str ] = None ) -> dict [str , Any ]:
65
+ """
66
+ 選択肢情報を取得します。
67
+
68
+ Args:
69
+ choice_id: 選択肢ID
70
+ choice_name: 選択肢名(英語)
71
+ """
72
+ if choice_id is not None :
73
+ result = first_true (choices , pred = lambda e : e ["choice_id" ] == choice_id )
74
+ elif choice_name is not None :
75
+ result = first_true (choices , pred = lambda e : get_english_message (e ["name" ]) == choice_name )
76
+ else :
77
+ raise ValueError ("choice_idまたはchoice_nameのいずれかを指定してください。" )
78
+ if result is None :
79
+ raise ValueError (f"選択肢情報が見つかりませんでした。 :: choice_id='{ choice_id } ', choice_name='{ choice_name } '" )
80
+ return result
81
+
82
+
83
+ def get_attribute (additionals : list [dict [str , Any ]], * , attribute_id : Optional [str ] = None , attribute_name : Optional [str ] = None ) -> dict [str , Any ]:
84
+ """
85
+ 属性情報を取得します。
86
+
87
+ Args:
88
+ attribute_id: 属性ID
89
+ attribute_name: 属性名(英語)
90
+ """
91
+ if attribute_id is not None :
92
+ result = first_true (additionals , pred = lambda e : e ["additional_data_definition_id" ] == attribute_id )
93
+ elif attribute_name is not None :
94
+ result = first_true (additionals , pred = lambda e : get_english_message (e ["name" ]) == attribute_name )
95
+ else :
96
+ raise ValueError ("attribute_idまたはattribute_nameのいずれかを指定してください。" )
97
+ if result is None :
98
+ raise ValueError (f"属性情報が見つかりませんでした。 :: attribute_id='{ attribute_id } ', attribute_name='{ attribute_name } '" )
99
+ return result
100
+
101
+
102
+ def get_label (labels : list [dict [str , Any ]], * , label_id : Optional [str ] = None , label_name : Optional [str ] = None ) -> dict [str , Any ]:
103
+ """
104
+ ラベル情報を取得します。
105
+
106
+ Args:
107
+ label_id: ラベルID
108
+ label_name: ラベル名(英語)
109
+ """
110
+ if label_id is not None :
111
+ result = first_true (labels , pred = lambda e : e ["label_id" ] == label_id )
112
+ elif label_name is not None :
113
+ result = first_true (labels , pred = lambda e : get_english_message (e ["label_name" ]) == label_name )
114
+ else :
115
+ raise ValueError ("label_idまたはlabel_nameのいずれかを指定してください。" )
116
+ if result is None :
117
+ raise ValueError (f"ラベル情報が見つかりませんでした。 :: label_id='{ label_id } ', label_name='{ label_name } '" )
118
+ return result
119
+
120
+
121
+ class AnnotationSpecsAccessor :
122
+ """
123
+ アノテーション仕様の情報にアクセスするためのクラス。
124
+
125
+ Args:
126
+ annotation_specs: アノテーション仕様(v3)の情報
127
+ """
128
+
129
+ def __init__ (self , annotation_specs : dict [str , Any ]) -> None :
130
+ self .labels = annotation_specs ["labels" ]
131
+ self .additionals = annotation_specs ["additionals" ]
132
+
133
+ def get_attribute (self , * , attribute_id : Optional [str ] = None , attribute_name : Optional [str ] = None ) -> dict [str , Any ]:
134
+ """
135
+ 属性情報を取得します。
136
+
137
+ Args:
138
+ attribute_id: 属性ID
139
+ attribute_name: 属性名(英語)
140
+ """
141
+ return get_attribute (self .additionals , attribute_id = attribute_id , attribute_name = attribute_name )
142
+
143
+ def get_label (self , * , label_id : Optional [str ] = None , label_name : Optional [str ] = None ) -> dict [str , Any ]:
144
+ """
145
+ ラベル情報を取得します。
146
+
147
+ Args:
148
+ label_id: ラベルID
149
+ label_name: ラベル名(英語)
150
+ """
151
+ return get_label (self .labels , label_id = label_id , label_name = label_name )
0 commit comments