-
Notifications
You must be signed in to change notification settings - Fork 15
/
NetworkStateBuffering.java
70 lines (61 loc) · 2.97 KB
/
NetworkStateBuffering.java
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
/*
Calimero 2 - A library for KNX network access
Copyright (c) 2016, 2023 B. Malinowsky
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
import java.net.NetworkInterface;
import java.net.UnknownHostException;
import io.calimero.GroupAddress;
import io.calimero.IndividualAddress;
import io.calimero.KNXException;
import io.calimero.buffer.Configuration;
import io.calimero.buffer.NetworkBuffer;
import io.calimero.buffer.StateFilter;
import io.calimero.datapoint.StateDP;
import io.calimero.dptxlator.DPTXlator8BitUnsigned;
import io.calimero.knxnetip.KNXnetIPRouting;
import io.calimero.link.KNXNetworkLink;
import io.calimero.link.KNXNetworkLinkIP;
import io.calimero.link.medium.KnxIPSettings;
import io.calimero.process.ProcessCommunicatorImpl;
/**
* Example showing basic Calimero network buffering for state-based KNX datapoints and a polling task.
*/
public class NetworkStateBuffering
{
private static final GroupAddress group = new GroupAddress(1, 0, 3);
private static final StateDP dp = new StateDP(group, "my datapoint", 0, DPTXlator8BitUnsigned.DPT_PERCENT_U8.getID());
public static void main(final String[] args) throws UnknownHostException, KNXException, InterruptedException
{
// Like always, create a network link of your choice
try (KNXNetworkLink link = KNXNetworkLinkIP.newRoutingLink((NetworkInterface) null,
KNXnetIPRouting.DefaultMulticast, new KnxIPSettings(new IndividualAddress(1, 2, 3)));
// setup Calimero network buffer
NetworkBuffer nb = NetworkBuffer.createBuffer("my-networkbuffer")) {
final Configuration config = nb.addConfiguration(link);
// create a filter, here we use a default filter for state-based requests
final StateFilter f = new StateFilter();
config.setFilter(null, f);
config.activate(true);
// The buffered link will interact with the network buffer on each .req/.con/.ind
final KNXNetworkLink bufferedLink = config.getBufferedLink();
// Poll the buffered link
try (ProcessCommunicatorImpl pc = new ProcessCommunicatorImpl(bufferedLink)) {
// in the best case, the following loop will generate no traffic at all on the KNX network
// in the worst case, the following loop will generate only 1 actual read on the KNX network
for (int i = 0; i < 100; i++)
System.out.println("datapoint state value = " + pc.readNumeric(dp));
}
}
}
}