Skip to content

Commit 9a03c97

Browse files
authored
属性の制約に関するモジュールattribute_restrictionsを追加しました。 (#707)
* 仮コミット * stringtextbox追加 * IntegerTextbox * ruffを通す * テストコード追加 * テストコー0度の追加 * 基本的な部分を作成 * 修正 * 完了 * add docs * サンプルを追加 * modify typo * テストメソッドの名前を変更
1 parent f14c974 commit 9a03c97

File tree

7 files changed

+1501
-6
lines changed

7 files changed

+1501
-6
lines changed

annofabapi/util/annotation_specs.py

+94-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
from __future__ import annotations
2-
31
from typing import Any, Literal, Optional, Union
42

53
import more_itertools
4+
from more_itertools import first_true
65

76
from annofabapi.models import Lang
87

98

109
def get_english_message(internationalization_message: dict[str, Any]) -> str:
1110
"""
12-
`InternalizationMessage`クラスの値から、英語メッセージを取得します。
11+
`InternationalizationMessage`クラスの値から、英語メッセージを取得します。
1312
英語メッセージが見つからない場合は ``ValueError`` をスローします。
1413
1514
Notes:
@@ -38,9 +37,9 @@ def get_english_message(internationalization_message: dict[str, Any]) -> str:
3837
"""
3938

4039

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]:
4241
"""
43-
`InternalizationMessage`クラスの値から、指定した ``lang`` に対応するメッセージを取得します。
42+
`InternationalizationMessage`クラスの値から、指定した ``lang`` に対応するメッセージを取得します。
4443
4544
Args:
4645
internationalization_message: 多言語化されたメッセージ。キー ``messages`` が存在している必要があります。
@@ -60,3 +59,93 @@ def get_message_with_lang(internationalization_message: dict[str, Any], lang: Un
6059
if result is not None:
6160
return result["message"]
6261
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

Comments
 (0)