forked from microsoft/UFO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathround.py
201 lines (166 loc) · 6.4 KB
/
round.py
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from logging import Logger
from typing import Optional, Type
from pywinauto.controls.uiawrapper import UIAWrapper
from ufo.agent.agent import FollowerAgent, HostAgent
from ufo.config.config import Config
from ufo.module.basic import BaseRound
from ufo.module.processors import follower_processor, processor
configs = Config.get_instance().config_data
class Round(BaseRound):
"""
A round of a session in UFO.
"""
def __init__(
self,
task: str,
logger: Logger,
request_logger: Logger,
host_agent: HostAgent,
request: str,
) -> None:
"""
Initialize a round.
:param task: The name of current task.
:param logger: The logger for the response and error.
:param request_logger: The logger for the request string.
:param host_agent: The host agent.
:param request: The user request at the current round.
"""
super().__init__(task, logger, request_logger, host_agent, request)
def process_application_selection(self) -> None:
"""
Select an application to interact with.
"""
host_agent_processor = self._create_host_agent_processor(
processor.HostAgentProcessor
)
self._run_step(host_agent_processor)
self.app_agent = self.host_agent.get_active_appagent()
self.app_window = host_agent_processor.get_active_window()
self.application = host_agent_processor.get_active_control_text()
def process_action_selection(self) -> None:
"""
Select an action with the application.
"""
app_agent_processor = self._create_app_agent_processor(
processor.AppAgentProcessor
)
self._run_step(app_agent_processor)
self.control_reannotate = app_agent_processor.get_control_reannotate()
def _create_host_agent_processor(
self, processor_class: Type["processor.BaseProcessor"]
) -> processor.HostAgentProcessor:
return processor_class(
round_num=self.round_num,
log_path=self.log_path,
request=self.request,
round_step=self.get_step(),
session_step=self.session_step,
request_logger=self.request_logger,
logger=self.logger,
host_agent=self.host_agent,
prev_status=self.get_status(),
app_window=self.app_window,
)
def _create_app_agent_processor(
self, processor_class: Type["processor.BaseProcessor"]
) -> processor.AppAgentProcessor:
return processor_class(
round_num=self.round_num,
log_path=self.log_path,
request=self.request,
round_step=self.get_step(),
session_step=self.session_step,
process_name=self.application,
request_logger=self.request_logger,
logger=self.logger,
app_agent=self.app_agent,
app_window=self.app_window,
control_reannotate=self.control_reannotate,
prev_status=self.get_status(),
)
class FollowerRound(Round):
def __init__(
self,
task: str,
logger: Logger,
request_logger: Logger,
host_agent: HostAgent,
app_agent: Optional[FollowerAgent],
app_window: Optional[UIAWrapper],
application: Optional[str],
request: str,
) -> None:
"""
Initialize a follower round.
:param task: The name of current task.
:param logger: The logger for the response and error.
:param request_logger: The logger for the request string.
:param host_agent: The host agent.
:param app_agent: The app agent.
:param app_window: The window of the application.
:param application: The name of the application.
:param request: The user request at the current round.
"""
super().__init__(task, logger, request_logger, host_agent, request)
self.app_agent = app_agent
self.app_window = app_window
self.application = application
def process_application_selection(self) -> None:
"""
Select an application to interact with.
"""
host_agent_processor = self._create_host_agent_processor(
follower_processor.FollowerHostAgentProcessor
)
self._run_step(host_agent_processor)
self.app_agent = self.host_agent.get_active_appagent()
self.app_window = host_agent_processor.get_active_window()
self.application = host_agent_processor.get_active_control_text()
def process_action_selection(self) -> None:
"""
Select an action with the application.
"""
app_agent_processor = follower_processor.FollowerAppAgentProcessor(
round_num=self.round_num,
log_path=self.log_path,
request=self.request,
round_step=self.get_step(),
session_step=self.session_step,
process_name=self.application,
request_logger=self.request_logger,
logger=self.logger,
app_agent=self.app_agent,
app_window=self.app_window,
control_reannotate=self.control_reannotate,
prev_status=self.get_status(),
)
app_agent_processor = self._create_app_agent_processor(
follower_processor.FollowerAppAgentProcessor
)
self._run_step(app_agent_processor)
self.control_reannotate = app_agent_processor.get_control_reannotate()
def _create_app_agent_processor(
self, processor_class: Type["processor.BaseProcessor"]
) -> follower_processor.AppAgentProcessor:
"""
Create an app agent processor for the follower round.
:param processor_class: The class of the processor.
:return: The app agent processor.
"""
return processor_class(
round_num=self.round_num,
log_path=self.log_path,
request=self.request,
round_step=self.get_step(),
session_step=self.session_step,
process_name=self.application,
request_logger=self.request_logger,
logger=self.logger,
app_agent=self.app_agent,
app_window=self.app_window,
control_reannotate=self.control_reannotate,
prev_status=self.get_status(),
)