forked from uml-robotics/ROS.NET
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathRosService.cs
56 lines (43 loc) · 1.56 KB
/
RosService.cs
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
using System;
namespace Uml.Robotics.Ros
{
public delegate RosMessage RosServiceDelegate(RosMessage request);
public class RosService
{
public static RosService Generate(string rosServiceType)
{
var service = ServiceTypeRegistry.Default.CreateService(rosServiceType);
if (service == null)
{
throw new ArgumentException($"Could not find a RosService class for {rosServiceType}.", nameof(rosServiceType));
}
service.RequestMessage = RosMessage.Generate(service.ServiceType + "__Request");
service.ResponseMessage = RosMessage.Generate(service.ServiceType + "__Response");
return service;
}
public virtual string MD5Sum() { return ""; }
public virtual string ServiceDefinition() { return ""; }
public virtual string ServiceType { get { return "undefined/unknown"; } }
public string msgtype_req
{
get { return RequestMessage.MessageType; }
}
public string msgtype_res
{
get { return ResponseMessage.MessageType; }
}
public RosMessage RequestMessage, ResponseMessage;
protected RosMessage GeneralInvoke(RosServiceDelegate invocation, RosMessage m)
{
return invocation.Invoke(m);
}
public RosService()
{
}
protected void InitSubtypes(RosMessage request, RosMessage response)
{
RequestMessage = request;
ResponseMessage = response;
}
}
}