ARCS SDK API  0.25.0
载入中...
搜索中...
未找到
runtime_machine.h
浏览该文件的文档.
1/** @file runtime_machine.h
2 * @brief 脚本解释器运行时接口,
3 * 可以实现脚本解释器的暂停、脚本解释器的设置/取消断点
4 */
5#ifndef AUBO_SDK_RUNTIME_MACHINE_INTERFACE_H
6#define AUBO_SDK_RUNTIME_MACHINE_INTERFACE_H
7
8#include <memory>
9#include <aubo/global_config.h>
10#include <aubo/type_def.h>
11
12namespace arcs {
13namespace common_interface {
14
15/**
16 * The RuntimeMachine class
17 */
18class ARCS_ABI_EXPORT RuntimeMachine
19{
20public:
22 virtual ~RuntimeMachine();
23
24 /**
25 * 返回 task_id
26 *
27 * @par JSON-RPC请求示例
28 * {"jsonrpc":"2.0","method":"RuntimeMachine.newTask","params":[false],"id":1}
29 *
30 * @par JSON-RPC响应示例
31 * {"id":1,"jsonrpc":"2.0","result":26}
32 *
33 */
34 int newTask(bool daemon = false);
35
36 /**
37 * 删除 task,会终止正在执行的运动
38 *
39 * @par JSON-RPC请求示例
40 * {"jsonrpc":"2.0","method":"RuntimeMachine.deleteTask","params":[26],"id":1}
41 *
42 * @par JSON-RPC响应示例
43 * {"id":1,"jsonrpc":"2.0","result":0}
44 *
45 */
46 int deleteTask(int tid);
47
48 /**
49 * 等待 task 自然结束
50 *
51 * @param tid
52 * @return
53 *
54 * @par JSON-RPC请求示例
55 * {"jsonrpc":"2.0","method":"RuntimeMachine.detachTask","params":[26],"id":1}
56 *
57 * @par JSON-RPC响应示例
58 * {"id":1,"jsonrpc":"2.0","result":0}
59 *
60 */
61 int detachTask(int tid);
62
63 /**
64 * 判断任务是否存活
65 *
66 * @param tid
67 * @return
68 *
69 * @par JSON-RPC请求示例
70 * {"jsonrpc":"2.0","method":"RuntimeMachine.isTaskAlive","params":[26],"id":1}
71 *
72 * @par JSON-RPC响应示例
73 * {"id":1,"jsonrpc":"2.0","result":true}
74 *
75 */
76 bool isTaskAlive(int tid);
77
78 /**
79 * 获取任务中缓存的指令的数量
80 *
81 * @param tid
82 * @return
83 */
84 int getTaskQueueSize(int tid);
85
86 /**
87 * 切换当前线程,切换之后接下来的指令将被插入切换后的线程中
88 *
89 * @param tid
90 * @return
91 *
92 * @par JSON-RPC请求示例
93 * {"jsonrpc":"2.0","method":"RuntimeMachine.switchTask","params":[26],"id":1}
94 *
95 * @par JSON-RPC响应示例
96 * {"id":1,"jsonrpc":"2.0","result":0}
97 *
98 */
99 int switchTask(int tid);
100
101 /**
102 * 标记记下来的指令的行号和注释
103 *
104 * @param lineno
105 * @param comment
106 * @return
107 *
108 * @par JSON-RPC请求示例
109 * {"jsonrpc":"2.0","method":"RuntimeMachine.setLabel","params":[5,"moveJoint"],"id":1}
110 *
111 * @par JSON-RPC响应示例
112 * {"id":1,"jsonrpc":"2.0","result":0}
113 *
114 */
115 int setLabel(int lineno, const std::string &comment);
116
117 /**
118 * 向aubo_control日志中添加注释
119 * 使用 setLabel 替换
120 *
121 * @param tid 指令的线程ID
122 * @param lineno 行号
123 * @param comment 注释
124 * @return
125 *
126 * @par Python函数原型
127 * setPlanContext(self: pyaubo_sdk.RuntimeMachine, arg0: int, arg1: int,
128 * arg2: str) -> int
129 *
130 * @par Lua函数原型
131 * setPlanContext(tid: number, lineno: number, comment: string) -> number
132 *
133 * @par JSON-RPC请求示例
134 * {"jsonrpc":"2.0","method":"RuntimeMachine.setPlanContext","params":[26,3,"moveJoint"],"id":1}
135 *
136 * @par JSON-RPC响应示例
137 * {"id":1,"jsonrpc":"2.0","result":0}
138 *
139 */
140 ARCS_DEPRECATED int setPlanContext(int tid, int lineno,
141 const std::string &comment);
142
143 /**
144 * 空操作
145 *
146 * @return
147 *
148 * @par JSON-RPC请求示例
149 * {"jsonrpc":"2.0","method":"RuntimeMachine.nop","params":[],"id":1}
150 *
151 * @par JSON-RPC响应示例
152 * {"id":1,"jsonrpc":"2.0","result":0}
153 *
154 */
155 int nop();
156
157 /**
158 * 获取耗时的接口(INST)执行状态, 如 setPersistentParameters
159 *
160 * @return 指令名字, 执行状态
161 * 执行状态: EXECUTING/FINISHED
162 *
163 * @par Python函数原型
164 * getExecutionStatus(self: pyaubo_sdk.RuntimeMachine) -> Tuple[str, str,
165 * int]
166 *
167 * @par Lua函数原型
168 * getExecutionStatus() -> string, string, number
169 *
170 * @par JSON-RPC请求示例
171 * {"jsonrpc":"2.0","method":"RuntimeMachine.getExecutionStatus","params":[],"id":1}
172 *
173 * @par JSON-RPC响应示例
174 * {"id":1,"jsonrpc":"2.0","result":["confirmSafetyParameters","FINISHED"]}
175 *
176 */
177 std::tuple<std::string, std::string> getExecutionStatus();
178 std::tuple<std::string, std::string, int> getExecutionStatus1();
179
180 /**
181 * 跳转到指定行号
182 *
183 * @param lineno
184 * @return
185 *
186 * @par Python函数原型
187 * gotoLine(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int
188 *
189 * @par Lua函数原型
190 * gotoLine(lineno: number) -> number
191 *
192 * @par JSON-RPC请求示例
193 * {"jsonrpc":"2.0","method":"RuntimeMachine.gotoLine","params":[10],"id":1}
194 *
195 * @par JSON-RPC响应示例
196 * {"id":1,"jsonrpc":"2.0","result":0}
197 *
198 */
199 int gotoLine(int lineno);
200
201 /**
202 * 获取当前运行上下文
203 *
204 * @param tid 任务编号
205 * 如果指定(不是-1),返回对应任务的运行上下文;如果不指定(是-1),返回正在运行的线程的运行上下文
206 *
207 * @return
208 *
209 * @par Python函数原型
210 * getPlanContext(self: pyaubo_sdk.RuntimeMachine) -> Tuple[int, int, str]
211 *
212 * @par Lua函数原型
213 * getPlanContext() -> number
214 *
215 * @par JSON-RPC请求示例
216 * {"jsonrpc":"2.0","method":"RuntimeMachine.getPlanContext","params":[-1],"id":1}
217 *
218 * @par JSON-RPC响应示例
219 * {"id":1,"jsonrpc":"2.0","result":[-1,0,""]}
220 *
221 */
222 std::tuple<int, int, std::string> getPlanContext(int tid = -1);
223
224 /**
225 * 获取提前运行规划器的上下文信息
226 *
227 * @param tid 任务编号
228 * 如果指定(不是-1),返回对应任务运行规划器的上下文信息;如果不指定(是-1),返回正在运行的线程运行规划器的上下文信息
229 *
230 * @return
231 *
232 * @par JSON-RPC请求示例
233 * {"jsonrpc":"2.0","method":"RuntimeMachine.getAdvancePlanContext","params":[-1],"id":1}
234 *
235 * @par JSON-RPC响应示例
236 * {"id":1,"jsonrpc":"2.0","result":[-1,-1,""]}
237 *
238 */
239 std::tuple<int, int, std::string> getAdvancePlanContext(int tid = -1);
240
241 /**
242 * 获取AdvanceRun的程序指针
243 *
244 * @return
245 *
246 * @par JSON-RPC请求示例
247 * {"jsonrpc":"2.0","method":"RuntimeMachine.getAdvancePtr","params":[-1],"id":1}
248 *
249 * @par JSON-RPC响应示例
250 * {"id":1,"jsonrpc":"2.0","result":-1}
251 *
252 */
253 int getAdvancePtr(int tid = -1);
254
255 /**
256 * 获取机器人运动的程序指针
257 *
258 * @param tid 任务编号
259 * 如果指定(不是-1),返回对应任务的程序指针;如果不指定(是-1),返回正在运行线程的程序指针
260 *
261 * @return
262 *
263 * @par JSON-RPC请求示例
264 * {"jsonrpc":"2.0","method":"RuntimeMachine.getMainPtr","params":[-1],"id":1}
265 *
266 * @par JSON-RPC响应示例
267 * {"id":1,"jsonrpc":"2.0","result":-1}
268 *
269 */
270 int getMainPtr(int tid = -1);
271
272 /**
273 * 获取最近解释过的指令指针
274 *
275 * @param tid
276 * @return
277 *
278 * @par JSON-RPC请求示例
279 * {"jsonrpc":"2.0","method":"RuntimeMachine.getInterpPtr","params":[26],"id":1}
280 *
281 * @par JSON-RPC响应示例
282 * {"id":1,"jsonrpc":"2.0","result":-1}
283 *
284 */
285 int getInterpPtr(int tid);
286
287 /**
288 * 加载本地工程文件
289 * Lua 脚本,只需要给出文件名字,不需要后缀,需要从 ${ARCS_WS}/program
290 * 目录中查找
291 *
292 * @param program
293 * @return
294 *
295 * @par JSON-RPC请求示例
296 * {"jsonrpc":"2.0","method":"RuntimeMachine.loadProgram","params":["demo"],"id":1}
297 *
298 * @par JSON-RPC响应示例
299 * {"id":1,"jsonrpc":"2.0","result":0}
300 *
301 */
302 int loadProgram(const std::string &program);
303
304 /**
305 * 运行已经加载的工程文件
306 *
307 * @return
308 *
309 * @par JSON-RPC请求示例
310 * {"jsonrpc":"2.0","method":"RuntimeMachine.runProgram","params":[],"id":1}
311 *
312 * @par JSON-RPC响应示例
313 * {"id":1,"jsonrpc":"2.0","result":0}
314 *
315 */
317
318 /**
319 * 开始运行时
320 *
321 * @return
322 *
323 * @par Python函数原型
324 * start(self: pyaubo_sdk.RuntimeMachine) -> int
325 *
326 * @par Lua函数原型
327 * start() -> number
328 *
329 * @par JSON-RPC请求示例
330 * {"jsonrpc":"2.0","method":"RuntimeMachine.start","params":[],"id":1}
331 *
332 * @par JSON-RPC响应示例
333 * {"id":1,"jsonrpc":"2.0","result":0}
334 *
335 */
336 int start();
337
338 /**
339 * 停止运行时即脚本运行,无法停止运行时状态为 Stopped 时的机器人运动
340 *
341 * 如果考虑停止机器人所有运动,可以调用 RuntimeMachine::abort 接口
342 *
343 * @return
344 *
345 * @par Python函数原型
346 * stop(self: pyaubo_sdk.RuntimeMachine) -> int
347 *
348 * @par Lua函数原型
349 * stop() -> number
350 *
351 * @par JSON-RPC请求示例
352 * {"jsonrpc":"2.0","method":"RuntimeMachine.stop","params":[],"id":1}
353 *
354 * @par JSON-RPC响应示例
355 * {"id":1,"jsonrpc":"2.0","result":0}
356 *
357 */
358 int stop();
359
360 /**
361 * 终止机器人运行.
362 *
363 * 如果只是考虑停止运行时,可以调用 RuntimeMachine::stop 接口
364 *
365 * 如果脚本运行时处于 Running 状态,则终止运行时;如果运行时处于 Stopped
366 * 且机器人正在移动,则停止机器人移动;如果此时力控开启了,则机器人停止力控
367 *
368 * @return
369 *
370 * @par Python函数原型
371 * abort(self: pyaubo_sdk.RuntimeMachine) -> int
372 *
373 * @par Lua函数原型
374 * abort() -> number
375 *
376 * @par JSON-RPC请求示例
377 * {"jsonrpc":"2.0","method":"RuntimeMachine.abort","params":[],"id":1}
378 *
379 * @par JSON-RPC响应示例
380 * {"id":1,"jsonrpc":"2.0","result":0}
381 *
382 */
383 int abort();
384
385 /**
386 * 暂停解释器
387 *
388 * @return
389 *
390 * @par Python函数原型
391 * pause(self: pyaubo_sdk.RuntimeMachine) -> int
392 *
393 * @par Lua函数原型
394 * pause() -> number
395 *
396 * @par JSON-RPC请求示例
397 * {"jsonrpc":"2.0","method":"RuntimeMachine.pause","params":[],"id":1}
398 *
399 * @par JSON-RPC响应示例
400 * {"id":1,"jsonrpc":"2.0","result":0}
401 *
402 */
403 int pause();
404
405 /**
406 * 单步运行
407 *
408 * @return
409 *
410 * @par Python函数原型
411 * step(self: pyaubo_sdk.RuntimeMachine) -> int
412 *
413 * @par Lua函数原型
414 * step() -> number
415 *
416 * @par JSON-RPC请求示例
417 * {"jsonrpc":"2.0","method":"RuntimeMachine.step","params":[],"id":1}
418 *
419 * @par JSON-RPC响应示例
420 * {"id":1,"jsonrpc":"2.0","result":0}
421 *
422 */
423 int step();
424
425 /**
426 * 恢复解释器
427 *
428 * @return
429 *
430 * @par Python函数原型
431 * resume(self: pyaubo_sdk.RuntimeMachine) -> int
432 *
433 * @par Lua函数原型
434 * resume() -> number
435 *
436 * @par JSON-RPC请求示例
437 * {"jsonrpc":"2.0","method":"RuntimeMachine.resume","params":[],"id":1}
438 *
439 * @par JSON-RPC响应示例
440 * {"id":1,"jsonrpc":"2.0","result":0}
441 *
442 */
443 int resume();
444
445 /**
446 * 恢复解释器之前等待恢复前之前的序列完成
447 *
448 * @param wait
449 * @return
450 *
451 * @par JSON-RPC请求示例
452 * {"jsonrpc":"2.0","method":"RuntimeMachine.setResumeWait","params":[true],"id":1}
453 *
454 * @par JSON-RPC响应示例
455 * {"id":1,"jsonrpc":"2.0","result":0}
456 *
457 */
458 int setResumeWait(bool wait);
459
460 /**
461 * 获取规划器的状态
462 *
463 * @return
464 *
465 * @par Python函数原型
466 * getStatus(self: pyaubo_sdk.RuntimeMachine) ->
467 * arcs::common_interface::RuntimeState
468 *
469 * @par Lua函数原型
470 * getStatus() -> number
471 *
472 * @par JSON-RPC请求示例
473 * {"jsonrpc":"2.0","method":"RuntimeMachine.getStatus","params":[],"id":1}
474 *
475 * @par JSON-RPC响应示例
476 * {"id":1,"jsonrpc":"2.0","result":"Running"}
477 *
478 */
479 ARCS_DEPRECATED RuntimeState getStatus();
481
482 /**
483 * 设置断点
484 *
485 * @param lineno
486 * @return
487 *
488 * @par Python函数原型
489 * setBreakPoint(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int
490 *
491 * @par Lua函数原型
492 * setBreakPoint(lineno: number) -> number
493 *
494 * @par JSON-RPC请求示例
495 * {"jsonrpc":"2.0","method":"RuntimeMachine.setBreakPoint","params":[15],"id":1}
496 *
497 * @par JSON-RPC响应示例
498 * {"id":1,"jsonrpc":"2.0","result":0}
499 *
500 */
501 int setBreakPoint(int lineno);
502
503 /**
504 * 移除断点
505 *
506 * @param lineno
507 * @return
508 *
509 * @par Python函数原型
510 * removeBreakPoint(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int
511 *
512 * @par Lua函数原型
513 * removeBreakPoint(lineno: number) -> number
514 *
515 * @par JSON-RPC请求示例
516 * {"jsonrpc":"2.0","method":"RuntimeMachine.removeBreakPoint","params":[15],"id":1}
517 *
518 * @par JSON-RPC响应示例
519 * {"id":1,"jsonrpc":"2.0","result":0}
520 *
521 */
522 int removeBreakPoint(int lineno);
523
524 /**
525 * 清除所有断点
526 *
527 * @return
528 *
529 * @par Python函数原型
530 * clearBreakPoints(self: pyaubo_sdk.RuntimeMachine) -> int
531 *
532 * @par Lua函数原型
533 * clearBreakPoints() -> number
534 *
535 * @par JSON-RPC请求示例
536 * {"jsonrpc":"2.0","method":"RuntimeMachine.clearBreakPoints","params":[],"id":1}
537 *
538 * @par JSON-RPC响应示例
539 * {"id":1,"jsonrpc":"2.0","result":0}
540 *
541 */
543
544 /**
545 * 定时器开始
546 *
547 * @param name
548 * @return
549 *
550 * @par Python函数原型
551 * timerStart(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int
552 *
553 * @par Lua函数原型
554 * timerStart(name: string) -> nil
555 *
556 * @par JSON-RPC请求示例
557 * {"jsonrpc":"2.0","method":"RuntimeMachine.timerStart","params":["timer"],"id":1}
558 *
559 * @par JSON-RPC响应示例
560 * {"id":1,"jsonrpc":"2.0","result":0}
561 *
562 */
563 int timerStart(const std::string &name);
564
565 /**
566 * 定时器结束
567 *
568 * @param name
569 * @return
570 *
571 * @par Python函数原型
572 * timerStop(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int
573 *
574 * @par Lua函数原型
575 * timerStop(name: string) -> nil
576 *
577 * @par JSON-RPC请求示例
578 * {"jsonrpc":"2.0","method":"RuntimeMachine.timerStop","params":["timer"],"id":1}
579 *
580 * @par JSON-RPC响应示例
581 * {"id":1,"jsonrpc":"2.0","result":0}
582 *
583 */
584 int timerStop(const std::string &name);
585
586 /**
587 * 定时器重置
588 *
589 * @param name
590 * @return
591 *
592 * @par Python函数原型
593 * timerReset(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int
594 *
595 * @par Lua函数原型
596 * timerReset(name: string) -> nil
597 *
598 * @par JSON-RPC请求示例
599 * {"jsonrpc":"2.0","method":"RuntimeMachine.timerReset","params":["timer"],"id":1}
600 *
601 * @par JSON-RPC响应示例
602 * {"id":1,"jsonrpc":"2.0","result":0}
603 *
604 */
605 int timerReset(const std::string &name);
606
607 /**
608 * 定时器删除
609 *
610 * @param name
611 * @return
612 *
613 * @par Python函数原型
614 * timerDelete(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int
615 *
616 * @par Lua函数原型
617 * timerDelete(name: string) -> nil
618 *
619 * @par JSON-RPC请求示例
620 * {"jsonrpc":"2.0","method":"RuntimeMachine.timerDelete","params":["timer"],"id":1}
621 *
622 * @par JSON-RPC响应示例
623 * {"id":1,"jsonrpc":"2.0","result":0}
624 *
625 */
626 int timerDelete(const std::string &name);
627
628 /**
629 * 获取定时器数值
630 *
631 * @param name
632 * @return
633 *
634 * @par Python函数原型
635 * getTimer(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> float
636 *
637 * @par Lua函数原型
638 * getTimer(name: string) -> number
639 *
640 * @par JSON-RPC请求示例
641 * {"jsonrpc":"2.0","method":"RuntimeMachine.getTimer","params":["timer"],"id":1}
642 *
643 * @par JSON-RPC响应示例
644 * {"id":1,"jsonrpc":"2.0","result":25.409769612}
645 *
646 */
647 double getTimer(const std::string &name);
648
649 /**
650 * 开始配置触发
651 *
652 * @param distance
653 * @param delay
654 * @return
655 *
656 * @par JSON-RPC请求示例
657 * {"jsonrpc":"2.0","method":"RuntimeMachine.triggBegin","params":[],"id":1}
658 *
659 * @par JSON-RPC响应示例
660 * {"id":1,"jsonrpc":"2.0","result":0}
661 *
662 */
663 int triggBegin(double distance, double delay);
664
665 /**
666 * 终止配置触发
667 *
668 * @return
669 *
670 * @par JSON-RPC请求示例
671 * {"jsonrpc":"2.0","method":"RuntimeMachine.triggEnd","params":[],"id":1}
672 *
673 * @par JSON-RPC响应示例
674 * {"id":1,"jsonrpc":"2.0","result":0}
675 *
676 */
677 int triggEnd();
678
679 /**
680 * 返回自动分配的中断号
681 *
682 * @param distance
683 * @param delay
684 * @param intnum
685 * @return
686 */
687 int triggInterrupt(double distance, double delay);
688
689 /**
690 * 获取所有的中断号列表
691 *
692 * @return
693 *
694 * @par JSON-RPC请求示例
695 * {"jsonrpc":"2.0","method":"RuntimeMachine.getTriggInterrupts","params":[],"id":1}
696 *
697 * @par JSON-RPC响应示例
698 * {"id":1,"jsonrpc":"2.0","result":[]}
699 *
700 */
701 std::vector<int> getTriggInterrupts();
702
703protected:
704 void *d_;
705};
706
707using RuntimeMachinePtr = std::shared_ptr<RuntimeMachine>;
708
709} // namespace common_interface
710} // namespace arcs
711#endif // AUBO_SDK_RUNTIME_MACHINE_H
int timerStop(const std::string &name)
定时器结束
double getTimer(const std::string &name)
获取定时器数值
int switchTask(int tid)
切换当前线程,切换之后接下来的指令将被插入切换后的线程中
std::tuple< int, int, std::string > getPlanContext(int tid=-1)
获取当前运行上下文
int abort()
终止机器人运行.
int gotoLine(int lineno)
跳转到指定行号
int detachTask(int tid)
等待 task 自然结束
int runProgram()
运行已经加载的工程文件
int timerReset(const std::string &name)
定时器重置
std::tuple< int, int, std::string > getAdvancePlanContext(int tid=-1)
获取提前运行规划器的上下文信息
ARCS_DEPRECATED int setPlanContext(int tid, int lineno, const std::string &comment)
向aubo_control日志中添加注释 使用 setLabel 替换
int triggBegin(double distance, double delay)
开始配置触发
int getAdvancePtr(int tid=-1)
获取AdvanceRun的程序指针
int triggEnd()
终止配置触发
int removeBreakPoint(int lineno)
移除断点
int clearBreakPoints()
清除所有断点
std::tuple< std::string, std::string, int > getExecutionStatus1()
int setBreakPoint(int lineno)
设置断点
int setResumeWait(bool wait)
恢复解释器之前等待恢复前之前的序列完成
int loadProgram(const std::string &program)
加载本地工程文件 Lua 脚本,只需要给出文件名字,不需要后缀,需要从 ${ARCS_WS}/program 目录中查找
ARCS_DEPRECATED RuntimeState getStatus()
获取规划器的状态
int getInterpPtr(int tid)
获取最近解释过的指令指针
int getTaskQueueSize(int tid)
获取任务中缓存的指令的数量
std::vector< int > getTriggInterrupts()
获取所有的中断号列表
int deleteTask(int tid)
删除 task,会终止正在执行的运动
int newTask(bool daemon=false)
返回 task_id
int triggInterrupt(double distance, double delay)
返回自动分配的中断号
int timerDelete(const std::string &name)
定时器删除
int getMainPtr(int tid=-1)
获取机器人运动的程序指针
int timerStart(const std::string &name)
定时器开始
std::tuple< std::string, std::string > getExecutionStatus()
获取耗时的接口(INST)执行状态, 如 setPersistentParameters
bool isTaskAlive(int tid)
判断任务是否存活
int setLabel(int lineno, const std::string &comment)
标记记下来的指令的行号和注释
int stop()
停止运行时即脚本运行,无法停止运行时状态为 Stopped 时的机器人运动
std::shared_ptr< RuntimeMachine > RuntimeMachinePtr
数据类型的定义