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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
#![deny(missing_docs)]
//! Use monome devices (Grid or Arc) in rust.
use std::fmt;
use std::io;
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
use std::sync::Arc;
use std::thread;
use std::time::{Duration, Instant};
use futures::future::Either;
use tokio::net::UdpSocket;
use tokio::prelude::*;
use tokio::timer::Delay;
use futures::sync::mpsc::{UnboundedReceiver, UnboundedSender};
use rosc::decoder::decode;
use rosc::encoder::encode;
use rosc::{OscMessage, OscPacket, OscType};
use crossbeam::queue::ArrayQueue;
use futures::*;
use log::*;
/// The default port at which serialosc is running.
pub const SERIALOSC_PORT: u16 = 12002;
/// Port from which this library will start searching for free port when needed.
const START_PORT: u16 = 10_000;
/// After this number of milliseconds without receiving a device info message from seriaolc, this
/// library considers all the devices to have been received.
const DEVICE_ENUMERATION_TIMEOUT_MS: u64 = 500;
/// From a x and y position, and a stride, returns the offset at which the element is in an array.
fn toidx(x: i32, y: i32, width: i32) -> usize {
(y * width + x) as usize
}
/// Returns an osc packet from a address and arguments
fn build_osc_message(addr: &str, args: Vec<OscType>) -> OscPacket {
let message = OscMessage {
addr: addr.to_owned(),
args,
};
OscPacket::Message(message)
}
fn new_bound_socket() -> UdpSocket {
let mut port = START_PORT;
loop {
let server_addr = format!("127.0.0.1:{}", port).parse().unwrap();
let bind_result = UdpSocket::bind(&server_addr);
match bind_result {
Ok(socket) => break socket,
Err(e) => {
warn!("bind error: {}", e.to_string());
if port == 0 {
panic!("Could not bind socket: port exhausted");
}
}
}
port += 1;
}
}
/// An enum filled when a device has been added or removed, along with its name.
#[derive(Debug)]
pub enum DeviceChangeEvent {
/// A device has been added on the host and recognized by serialosc, and is now available for use.
Added(String),
/// A device has been removed on the host and is now unavailable for use.
Removed(String),
}
#[derive(Debug)]
struct MonomeInfo {
port: Option<i32>,
host: Option<String>,
prefix: Option<String>,
id: Option<String>,
size: Option<(i32, i32)>,
rotation: Option<i32>,
}
impl MonomeInfo {
fn new() -> MonomeInfo {
MonomeInfo {
port: None,
host: None,
prefix: None,
id: None,
size: None,
rotation: None,
}
}
fn complete(&self) -> bool {
self.port.is_some()
&& self.host.is_some()
&& self.prefix.is_some()
&& self.id.is_some()
&& self.size.is_some()
&& self.rotation.is_some()
}
fn fill(&mut self, packet: OscPacket) {
match packet {
OscPacket::Message(message) => {
if message.addr.starts_with("/sys") {
let args = message.args;
if message.addr.starts_with("/sys/port") {
if let OscType::Int(port) = args[0] {
self.port = Some(port);
}
} else if message.addr.starts_with("/sys/host") {
if let OscType::String(ref host) = args[0] {
self.host = Some(host.to_string());
}
} else if message.addr.starts_with("/sys/id") {
if let OscType::String(ref id) = args[0] {
self.id = Some(id.to_string());
}
} else if message.addr.starts_with("/sys/prefix") {
if let OscType::String(ref prefix) = args[0] {
self.prefix = Some(prefix.to_string());
}
} else if message.addr.starts_with("/sys/rotation") {
if let OscType::Int(rotation) = args[0] {
self.rotation = Some(rotation);
}
} else if message.addr.starts_with("/sys/size") {
if let OscType::Int(x) = args[0] {
if let OscType::Int(y) = args[1] {
self.size = Some((x, y));
}
}
}
}
}
OscPacket::Bundle(_bundle) => {
error!("Bundle during setup!?");
}
}
}
}
/// `Transport` implements the network input and output to and from serialosc.
struct Transport {
/// The address at which serialoscd is reachable.
addr: SocketAddr,
/// This is the socket with with we send and receive to and from the device.
socket: UdpSocket,
/// This is the channel we use to forward the received OSC messages to the client object.
tx: Arc<ArrayQueue<Vec<u8>>>,
/// This is where Transport receives the OSC messages to send.
rx: UnboundedReceiver<Vec<u8>>,
}
impl Transport {
pub fn new(
device_addr: IpAddr,
device_port: u16,
socket: UdpSocket,
tx: Arc<ArrayQueue<Vec<u8>>>,
rx: UnboundedReceiver<Vec<u8>>,
) -> Transport {
let addr = SocketAddr::new(device_addr, device_port);
Transport {
addr,
socket,
tx,
rx,
}
}
}
impl Future for Transport {
type Item = ();
type Error = io::Error;
fn poll(&mut self) -> Poll<(), io::Error> {
loop {
match self.rx.poll() {
Ok(fut) => {
match fut {
Async::Ready(b) => {
// This happens when shutting down usually
if b.is_some() {
let _amt =
try_ready!(self.socket.poll_send_to(&b.unwrap(), &self.addr));
} else {
break;
}
}
Async::NotReady => {
break;
}
}
}
Err(e) => {
error!("Error on future::mpsc {:?}", e);
}
}
}
loop {
let mut buf = vec![0; 1024];
match self.socket.poll_recv(&mut buf) {
Ok(fut) => match fut {
Async::Ready(_ready) => match self.tx.push(buf) {
Ok(()) => {
continue;
}
Err(e) => {
error!("receive from monome, {:?}", e);
}
},
Async::NotReady => {
return Ok(Async::NotReady);
}
},
Err(e) => {
return Err(e);
}
}
}
}
}
/// The client object for a Monome grid device
pub struct Monome {
/// The name of this device
name: String,
/// The type of this device
device_type: MonomeDeviceType,
/// The port at which this device is running at
port: u16,
/// The host for this device (usually localhost)
host: String,
/// The ID of this device
id: String,
/// The prefix set for this device
prefix: String,
/// The current rotation for this device. This can be 0, 90, 180 or 270.
rotation: i32,
/// THe x and y size for this device.
size: (i32, i32),
/// A channel that allows receiving serialized OSC messages from a device.
q: Arc<ArrayQueue<Vec<u8>>>,
/// A channel that allows sending serialized OSC messages to a device.
tx: UnboundedSender<Vec<u8>>,
}
/// Whether a key press is going up or down
#[derive(Debug)]
pub enum KeyDirection {
/// The key has been released.
Up,
/// The key has been pressed.
Down,
}
/// An event received from a monome device. This can be either a key press or release, a tilt
/// event, an encoder rotation event, or an encoder press or release.
pub enum MonomeEvent {
/// A key press or release
GridKey {
/// The horizontal offset at which the key has been pressed.
x: i32,
/// The vertical offset at which the key has been pressed.
y: i32,
/// Whether the key has been pressed (`Down`), or released (`Up`).
direction: KeyDirection,
},
/// A update about the tilt of this device.
Tilt {
/// Which sensor sent this tilt update.
n: i32,
/// The pitch of this device.
x: i32,
/// The roll of this device.
y: i32,
/// The yaw of this device.
z: i32,
},
/// An encoder delta information
EncoderDelta {
/// Which encoder is sending the event.
n: usize,
/// The delta of this movement on this encoder.
delta: i32,
},
/// A key press on an encoder (only available on some older devices).
EncoderKey {
/// Which encoder is sending the event.
n: usize,
/// Whether the encoder key has been pressed (`Down`), or released (`Up`).
direction: KeyDirection,
},
}
/// Converts an to a Monome method argument to a OSC address fragment and suitable OscType,
/// performing an eventual conversion.
pub trait IntoAddrAndArgs<'a, B> {
/// Converts an to a Monome method argument to a OSC address fragment and suitable OscType,
/// performing an eventual conversion.
fn as_addr_frag_and_args(&self) -> (String, B);
}
/// Used to make a call with an intensity value, adds the `"level/"` portion in the address.
impl<'a> IntoAddrAndArgs<'a, OscType> for i32 {
fn as_addr_frag_and_args(&self) -> (String, OscType) {
("level/".to_string(), OscType::Int(*self))
}
}
/// Used to make an on/off call, converts to 0 or 1.
impl<'a> IntoAddrAndArgs<'a, OscType> for bool {
fn as_addr_frag_and_args(&self) -> (String, OscType) {
("".to_string(), OscType::Int(if *self { 1 } else { 0 }))
}
}
impl<'a> IntoAddrAndArgs<'a, Vec<OscType>> for &'a [u8; 64] {
fn as_addr_frag_and_args(&self) -> (String, Vec<OscType>) {
// TODO: error handling both valid: either 64 or more intensity values, or 8 masks
let mut osctype_vec = Vec::with_capacity(64);
for item in self.iter().map(|i| OscType::Int(i32::from(*i))) {
osctype_vec.push(item);
}
("level/".to_string(), osctype_vec)
}
}
impl<'a> IntoAddrAndArgs<'a, Vec<OscType>> for u8 {
fn as_addr_frag_and_args(&self) -> (String, Vec<OscType>) {
// TODO: error handling both valid: either 64 or more intensity values, or 8 masks
let mut osctype_vec = Vec::with_capacity(1);
osctype_vec.push(OscType::Int(i32::from(*self)));
("".to_string(), osctype_vec)
}
}
impl<'a> IntoAddrAndArgs<'a, Vec<OscType>> for &'a [u8; 8] {
fn as_addr_frag_and_args(&self) -> (String, Vec<OscType>) {
// TODO: error handling both valid: either 64 or more intensity values, or 8 masks
let mut osctype_vec = Vec::with_capacity(8);
for item in self.iter().map(|i| OscType::Int(i32::from(*i))) {
osctype_vec.push(item);
}
("".to_string(), osctype_vec)
}
}
/// Used to convert vectors of bools for on/off calls, packs into a 8-bit integer mask.
impl<'a> IntoAddrAndArgs<'a, Vec<OscType>> for &'a [bool; 64] {
fn as_addr_frag_and_args(&self) -> (String, Vec<OscType>) {
// TODO: error handling
assert!(self.len() >= 64);
let mut masks = [0 as u8; 8];
for i in 0..8 {
// for each row
let mut mask: u8 = 0;
for j in (0..8).rev() {
// create mask
let idx = toidx(j, i, 8);
mask = mask.rotate_left(1) | if self[idx] { 1 } else { 0 };
}
masks[i as usize] = mask;
}
let mut osctype_vec = Vec::with_capacity(8);
for item in masks.iter().map(|i| OscType::Int(i32::from(*i))) {
osctype_vec.push(item);
}
("".to_string(), osctype_vec)
}
}
/// A type of device, either Grid (of various size), Arc (with 2 or 4 encoders), or unknown.
#[derive(PartialEq, Clone)]
pub enum MonomeDeviceType {
/// The type for a monome grid.
Grid,
/// The type for a monome arc.
Arc,
/// Unknown device, please file an issue.
Unknown,
}
impl From<&str> for MonomeDeviceType {
fn from(string: &str) -> MonomeDeviceType {
if string.contains("arc") {
MonomeDeviceType::Arc
} else {
MonomeDeviceType::Grid
}
}
}
impl fmt::Display for MonomeDeviceType {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"{}",
if *self == MonomeDeviceType::Grid {
"grid"
} else {
"arc"
}
)
}
}
impl fmt::Debug for MonomeDeviceType {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self)
}
}
#[derive(Debug)]
/// A struct with basic informations about a Monome device, available without having set it up
pub struct MonomeDevice {
/// Name of the device with serial number
name: String,
/// Device type
device_type: MonomeDeviceType,
/// Host of the serialosc this device is on.
addr: IpAddr,
/// Port at which this device is available
port: u16,
}
impl fmt::Display for MonomeDevice {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}: {} ({})", self.name, self.device_type, self.port)
}
}
impl MonomeDevice {
fn new(name: &str, device_type: &str, addr: IpAddr, port: u16) -> MonomeDevice {
MonomeDevice {
name: name.to_string(),
device_type: device_type.into(),
addr,
port,
}
}
/// Return the device type.
pub fn device_type(&self) -> MonomeDeviceType {
self.device_type.clone()
}
/// Return the device name.
pub fn name(&self) -> String {
self.name.clone()
}
/// The host on which this device is attached.
pub fn host(&self) -> IpAddr {
self.addr
}
/// Return the port on which this device is.
pub fn port(&self) -> u16 {
self.port
}
}
impl Monome {
/// Register for device added/removed notifications, on a non-standard serialosc port
///
/// # Arguments
///
/// * `serialosc_port`: the port on which serialosc is running
/// - `callback`: a function that is called whenever a device is added or removed.
///
/// # Example
///
/// Print a message, on a machine where serialosc runs on the machine at 192.168.1.12, on port
/// 1234.
///
/// ```no_run
/// # use monome::Monome;
/// # use monome::DeviceChangeEvent;
/// Monome::register_device_change_callback_with_host_and_port("192.168.1.12".parse().unwrap(), 1234, |event| {
/// match event {
/// DeviceChangeEvent::Added(id) => {
/// println!("Device {} added", id);
/// }
/// DeviceChangeEvent::Removed(id) => {
/// println!("Device {} removed", id);
/// }
/// }
/// });
/// ```
pub fn register_device_change_callback_with_host_and_port(
serialosc_addr: IpAddr,
serialosc_port: u16,
callback: fn(DeviceChangeEvent),
) {
let mut socket = new_bound_socket();
thread::spawn(move || {
let server_port = socket.local_addr().unwrap().port();
let addr = SocketAddr::new(serialosc_addr, serialosc_port);
let packet = build_osc_message(
"/serialosc/notify",
vec![
OscType::String("127.0.0.1".to_string()),
OscType::Int(i32::from(server_port)),
],
);
let mut bytes: Vec<u8>;
// True if we've received a add or remove message from serialosc recently, and we need
// to tell it to notify this program in the future.
// This is necessary, because other messages can be received on this socket, notably the
// undocumented /sys/connect and /sys/disconnect messages (without any arguments).
let mut need_notify_msg = true;
loop {
bytes = encode(&packet).unwrap();
if need_notify_msg {
socket = socket
.send_dgram(bytes, &addr)
.wait()
.map(|(s, _)| s)
.unwrap();
need_notify_msg = false;
}
socket = socket.recv_dgram(vec![0u8; 1024]).and_then(|(socket, data, _, _)| {
match decode(&data).unwrap() {
OscPacket::Message(message) => {
if message.addr.starts_with("/serialosc/add") {
need_notify_msg = true;
if let OscType::String(ref id) = message.args[0] {
callback(DeviceChangeEvent::Added(id.to_string()));
}
} else if message.addr.starts_with("/serialosc/remove") {
if let OscType::String(ref id) = message.args[0] {
need_notify_msg = true;
callback(DeviceChangeEvent::Removed(id.to_string()));
}
} else {
debug!("⇦ Unexpected message receive on device change event socket {:?}", &message);
}
}
_ => {
debug!("⇦ Could not decode {:?}", data);
}
}
Ok(socket)
})
.wait()
.map(|socket| socket)
.unwrap();
}
});
}
/// Register for device added/removed notifications, on the default serialosc port, when it runs
/// on localhost.
///
/// # Arguments
///
/// - `callback`: a function that is called whenever a device is added or removed.
///
/// # Example
///
/// ```no_run
/// # use monome::Monome;
/// # use monome::DeviceChangeEvent;
/// Monome::register_device_change_callback(|event| {
/// match event {
/// DeviceChangeEvent::Added(id) => {
/// println!("Device {} added", id);
/// }
/// DeviceChangeEvent::Removed(id) => {
/// println!("Device {} removed", id);
/// }
/// }
/// });
/// ```
pub fn register_device_change_callback(callback: fn(DeviceChangeEvent)) {
Monome::register_device_change_callback_with_host_and_port(
std::net::IpAddr::V4(<Ipv4Addr>::LOCALHOST),
SERIALOSC_PORT,
callback,
)
}
/// Register for device added/removed notifications, on the default serialosc port, passing in
/// the address at which serialoscd is reachable.
///
/// # Arguments
///
/// - `addr`: the address on which serialoscd is reachable.
/// - `callback`: a function that is called whenever a device is added or removed.
///
/// # Example
///
/// ```no_run
/// # use monome::Monome;
/// # use monome::DeviceChangeEvent;
/// Monome::register_device_change_callback_with_host("192.168.1.12".parse().unwrap(), |event| {
/// match event {
/// DeviceChangeEvent::Added(id) => {
/// println!("Device {} added", id);
/// }
/// DeviceChangeEvent::Removed(id) => {
/// println!("Device {} removed", id);
/// }
/// }
/// });
/// ```
pub fn register_device_change_callback_with_host(
addr: IpAddr,
callback: fn(DeviceChangeEvent),
) {
Monome::register_device_change_callback_with_host_and_port(addr, SERIALOSC_PORT, callback)
}
/// Register for device added/removed notifications, on the specific serialosc port, when
/// serialoscd is running on localhost.
///
/// # Arguments
///
/// - `port`: the port at which serialoscd is.
/// - `callback`: a function that is called whenever a device is added or removed.
///
/// # Example
///
/// ```no_run
/// # use monome::Monome;
/// # use monome::DeviceChangeEvent;
/// Monome::register_device_change_callback_with_port(12012, |event| {
/// match event {
/// DeviceChangeEvent::Added(id) => {
/// println!("Device {} added", id);
/// }
/// DeviceChangeEvent::Removed(id) => {
/// println!("Device {} removed", id);
/// }
/// }
/// });
/// ```
pub fn register_device_change_callback_with_port(port: u16, callback: fn(DeviceChangeEvent)) {
Monome::register_device_change_callback_with_host_and_port(
std::net::IpAddr::V4(<Ipv4Addr>::LOCALHOST),
port,
callback,
)
}
fn setup<S>(
prefix: S,
device: &MonomeDevice,
) -> Result<(MonomeInfo, UdpSocket, String, MonomeDeviceType, u16), String>
where
S: Into<String>,
{
let (name, device_type, port) = (
device.name.to_string(),
device.device_type.clone(),
device.port,
);
let addr = SocketAddr::new(device.host(), device.port());
let socket = new_bound_socket();
let server_port = socket.local_addr().unwrap().port();
let packet = build_osc_message("/sys/port", vec![OscType::Int(i32::from(server_port))]);
let bytes: Vec<u8> = encode(&packet).unwrap();
let socket = socket
.send_dgram(bytes, &addr)
.wait()
.map(|(s, _)| s)
.unwrap();
let local_addr = socket.local_addr().unwrap().ip();
let packet = build_osc_message("/sys/host", vec![OscType::String(local_addr.to_string())]);
let bytes: Vec<u8> = encode(&packet).unwrap();
let socket = socket
.send_dgram(bytes, &addr)
.wait()
.map(|(s, _)| s)
.unwrap();
let packet = build_osc_message("/sys/prefix", vec![OscType::String(prefix.into())]);
let bytes: Vec<u8> = encode(&packet).unwrap();
let socket = socket
.send_dgram(bytes, &addr)
.wait()
.map(|(s, _)| s)
.unwrap();
let packet = build_osc_message("/sys/info", vec![]);
let bytes: Vec<u8> = encode(&packet).unwrap();
let mut socket = socket
.send_dgram(bytes, &addr)
.wait()
.map(|(s, _)| s)
.unwrap();
let mut info = MonomeInfo::new();
// Loop until we've received all the /sys/info messages
let socket = loop {
socket = socket
.recv_dgram(vec![0u8; 1024])
.and_then(|(socket, data, _, _)| {
let packet = decode(&data).unwrap();
info.fill(packet);
Ok(socket)
})
.wait()
.map(|socket| socket)
.unwrap();
if info.complete() {
break socket;
}
};
Ok((info, socket, name, device_type, port))
}
/// Enumerate all monome devices on a non-standard serialosc port, on a specific host.
///
/// If successful, this returns a list of MonomeDevice, which contain basic informations about
/// the device: type, serial number, port allocated by serialosc.
///
/// # Arguments
///
/// * `serialosc_addr: the address of the host on which serialosc runs
/// * `serialosc_port`: the port on which serialosc is running
///
/// # Example
///
/// Enumerate and display all monome device on port 1234:
///
/// ```no_run
/// # use monome::Monome;
/// let enumeration = Monome::enumerate_devices_with_host_and_port("192.168.1.12".parse().unwrap(), 1234);
/// match enumeration {
/// Ok(devices) => {
/// for device in &devices {
/// println!("{}", device);
/// }
/// }
/// Err(e) => {
/// eprintln!("Error: {}", e);
/// }
/// }
/// ```
pub fn enumerate_devices_with_host_and_port(
serialosc_addr: IpAddr,
serialosc_port: u16,
) -> Result<Vec<MonomeDevice>, String> {
let socket = new_bound_socket();
let mut devices = Vec::<MonomeDevice>::new();
let server_port = socket.local_addr().unwrap().port();
let server_ip = socket.local_addr().unwrap().ip().to_string();
let packet = build_osc_message(
"/serialosc/list",
vec![
OscType::String(server_ip),
OscType::Int(i32::from(server_port)),
],
);
let bytes: Vec<u8> = encode(&packet).unwrap();
let addr = SocketAddr::new(serialosc_addr, serialosc_port);
let (mut socket, _) = socket.send_dgram(bytes, &addr).wait().unwrap();
// loop until we find the device list message. It can be that some other messages are
// received in the meantime, for example, tilt messages, or keypresses. Ignore them
// here. If no message have been received for 500ms, consider we have all the messages and
// carry on.
loop {
let fut = socket.recv_dgram(vec![0u8; 1024]).select2(Delay::new(
Instant::now() + Duration::from_millis(DEVICE_ENUMERATION_TIMEOUT_MS),
));
let task = tokio::runtime::current_thread::block_on_all(fut);
socket = match task {
Ok(Either::A(((s, data, _, _), _))) => {
socket = s;
let packet = decode(&data).unwrap();
match packet {
OscPacket::Message(message) => {
if message.addr == "/serialosc/device" {
let args = message.args;
if let [OscType::String(ref name), OscType::String(ref device_type), OscType::Int(port)] =
args.as_slice()
{
devices.push(MonomeDevice::new(
name,
device_type,
serialosc_addr,
(*port) as u16,
));
}
}
}
OscPacket::Bundle(_bundle) => {
eprintln!("Unexpected bundle received during setup");
}
};
socket
}
Ok(Either::B(_)) => {
// timeout
break;
}
Err(e) => {
panic!("{:?}", e);
}
};
}
Ok(devices)
}
/// Enumerate all monome devices on the standard port on which serialosc runs (12002).
///
/// If successful, this returns a list of MonomeDevice, which contain basic informations about
/// the device: type, serial number, port allocated by serialosc.
///
/// # Arguments
///
/// * `serialosc_port`: the port on which serialosc is running
///
/// # Example
///
/// Enumerate and display all monome device on port 1234:
///
/// ```no_run
/// # use monome::Monome;
/// let enumeration = Monome::enumerate_devices();
/// match enumeration {
/// Ok(devices) => {
/// for device in &devices {
/// println!("{}", device);
/// }
/// }
/// Err(e) => {
/// eprintln!("Error: {}", e);
/// }
/// }
/// ```
pub fn enumerate_devices() -> Result<Vec<MonomeDevice>, String> {
Monome::enumerate_devices_with_port(SERIALOSC_PORT)
}
/// Enumerate all monome devices on localhost, on a specific port.
///
/// If successful, this returns a list of MonomeDevice, which contain basic informations about
/// the device: type, serial number, port allocated by serialosc.
///
/// # Arguments
///
/// * `port`: the port serialoscd is bound to.
///
/// # Example
///
/// Enumerate and display all monome device running on default port at a specific address.
///
/// ```no_run
/// # use monome::Monome;
/// # let enumeration = Monome::enumerate_devices_with_port(12012);
/// match enumeration {
/// Ok(devices) => {
/// for device in &devices {
/// println!("{}", device);
/// }
/// }
/// Err(e) => {
/// eprintln!("Error: {}", e);
/// }
/// }
/// ```
pub fn enumerate_devices_with_port(port: u16) -> Result<Vec<MonomeDevice>, String> {
Monome::enumerate_devices_with_host_and_port(
std::net::IpAddr::V4(<Ipv4Addr>::LOCALHOST),
port,
)
}
/// Enumerate all monome devices on the standard port on which serialosc runs (12002), on a
/// specific address.
///
/// If successful, this returns a list of MonomeDevice, which contain basic informations about
/// the device: type, serial number, port allocated by serialosc.
///
/// # Arguments
///
/// * `addr: the address at which serialosc is reachable
///
/// # Example
///
/// Enumerate and display all monome device running on default port at a specific addr.
///
/// ```no_run
/// # use monome::Monome;
/// let enumeration = Monome::enumerate_devices_on_host("192.168.1.12".parse().unwrap());
/// match enumeration {
/// Ok(devices) => {
/// for device in &devices {
/// println!("{}", device);
/// }
/// }
/// Err(e) => {
/// eprintln!("Error: {}", e);
/// }
/// }
/// ```
pub fn enumerate_devices_on_host(host: IpAddr) -> Result<Vec<MonomeDevice>, String> {
Monome::enumerate_devices_with_host_and_port(host, SERIALOSC_PORT)
}
/// Sets up the "first" monome device, with a particular prefix. When multiple devices are
/// plugged in, it's unclear which one is activated, however this is rare.
///
/// # Arguments
///
/// * `prefix` - the prefix to use for this device and this application
///
/// # Example
///
/// Set up a monome, with a prefix of "/prefix":
///
/// ```no_run
/// # use monome::Monome;
/// let m = Monome::new("/prefix");
///
/// match m {
/// Ok(monome) => {
/// println!("{:?}", monome);
/// }
/// Err(s) => {
/// println!("Could not setup the monome: {}", s);
/// }
/// }
/// ```
pub fn new<S>(prefix: S) -> Result<Monome, String>
where
S: Into<String>,
{
Monome::new_with_port(prefix, SERIALOSC_PORT)
}
/// Sets up the "first" monome device, with a particular prefix and a non-standard port for
/// serialosc. When multiple devices are plugged in, it's unclear which one is activated,
/// however this is rare.
///
/// # Arguments
///
/// * `prefix` - the prefix to use for this device and this application
/// * `serialosc_port` - the port at which serialosc can be reached.
///
/// # Example
///
/// Set up a monome, with a prefix of "/prefix", and specify an explicit port on which
/// serialosc can be reached (here, the default of 12002):
///
/// ```no_run
/// # use monome::Monome;
/// let m = Monome::new_with_port("/prefix", 12002);
///
/// match m {
/// Ok(monome) => {
/// println!("{:?}", monome);
/// }
/// Err(s) => {
/// println!("Could not setup the monome: {}", s);
/// }
/// }
/// ```
pub fn new_with_port<S>(prefix: S, serialosc_port: u16) -> Result<Monome, String>
where
S: Into<String>,
{
let devices = Monome::enumerate_devices_with_port(serialosc_port)?;
if devices.is_empty() {
return Err("No devices detected".to_string());
}
Monome::from_device(&devices[0], prefix.into())
}
/// Get a monome instance on which to call commands, from a `MonomeDevice`.
///
/// # Arguments
///
/// * `device`: a `MonomeDevice` acquired through `enumerate_devices`.
/// * `prefix`: the prefix to use for this device and this application
///
/// # Example
///
/// ```no_run
/// # use monome::Monome;
/// let enumeration = Monome::enumerate_devices();
/// match enumeration {
/// Ok(devices) => {
/// for device in &devices {
/// println!("{}", device);
/// match Monome::from_device(device, "prefix") {
/// Ok(m) => {
/// println!("Monome setup:\n{}", m);
/// }
/// Err(e) => {
/// println!("Error setting up {} ({})", device, e);
/// }
/// }
/// }
/// }
/// Err(e) => {
/// eprintln!("Error: {}", e);
/// }
/// }
/// ```
pub fn from_device<S>(device: &MonomeDevice, prefix: S) -> Result<Monome, String>
where
S: Into<String>,
{
let prefix = prefix.into();
let (info, socket, name, device_type, device_port) = Monome::setup(&*prefix, device)?;
let (sender, receiver) = futures::sync::mpsc::unbounded();
let q = Arc::new(ArrayQueue::new(32));
let q2 = q.clone();
let t = Transport::new(device.host(), device_port, socket, q, receiver);
thread::spawn(move || {
tokio::run(t.map_err(|e| error!("server error = {:?}", e)));
});
Ok(Monome {
tx: sender,
q: q2,
name,
device_type,
host: info.host.unwrap(),
id: info.id.unwrap(),
port: device_port,
prefix,
rotation: info.rotation.unwrap(),
size: info.size.unwrap(),
})
}
/// Set a single led on a grid on or off.
///
/// # Arguments
///
/// - `x` - the horizontal position of the led to set.
/// - `y` - the vertical positino of the led to set.
/// - `arg` - either a bool, true to set a led On, false to set it Off, or a number between 0
/// and 16, 0 being led off, 16 being full led brightness.
///
/// # Example
///
/// Set the led on the second row and second column to On, and also the third row and second
/// column to mid-brightness:
///
/// ```no_run
/// # use monome::Monome;
/// # let mut monome = Monome::new("/prefix").unwrap();
/// monome.set(1 /* 2nd, 0-indexed */,
/// 1 /* 2nd, 0-indexed */,
/// true);
/// monome.set(1 /* 2nd, 0-indexed */,
/// 2 /* 3nd, 0-indexed */,
/// 8);
/// ```
pub fn set<'a, A>(&mut self, x: i32, y: i32, arg: A)
where
A: IntoAddrAndArgs<'a, OscType>,
{
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let (frag, arg) = arg.as_addr_frag_and_args();
self.send(
&format!("/grid/led/{}set", frag),
vec![OscType::Int(x), OscType::Int(y), arg],
);
}
/// Set all led of the grid to an intensity
///
/// # Arguments
///
/// * `intensity` - either a bool, true for led On or false for led Off, or a number between 0
/// and 16, 0 being led off, and 16 being full led brightness.
///
/// # Example
///
/// On a grid, set all led to medium brightness, then turn it on:
///
/// ```no_run
/// # use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// monome.all(8);
/// monome.all(false);
/// ```
pub fn all<'a, A>(&mut self, arg: A)
where
A: IntoAddrAndArgs<'a, OscType>,
{
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let (frag, arg) = arg.as_addr_frag_and_args();
self.send(&format!("/grid/led/{}all", frag), vec![arg]);
}
/// Set all the leds of a monome in one call.
///
/// # Arguments
///
/// * `leds` - a vector of 64 booleans for a monome 64, 128 elements for a monome 128, and 256
/// elements for a monome 256, packed in row order.
///
/// # Example
///
/// One a monome 128, do a checkerboard pattern:
///
/// ```no_run
/// # use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// let mut grid = [false; 128];
/// for i in 0..128 {
/// grid[i] = (i + 1) % 2 == 0;
/// }
/// monome.set_all(&grid);
/// ```
pub fn set_all(&mut self, leds: &[bool]) {
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let width_in_quad = self.size.0 / 8;
let height_in_quad = self.size.1 / 8;
let width = self.size.0;
let quad_size: i32 = 8;
let mut masks = [0 as u8; 8];
for a in 0..height_in_quad {
for b in 0..width_in_quad {
for i in 0..8 {
// for each row
let mut mask: u8 = 0;
for j in (0..8).rev() {
// create mask
let idx = toidx(b * quad_size + j, a * quad_size + i, width);
mask = mask.rotate_left(1) | if leds[idx] { 1 } else { 0 };
}
masks[i as usize] = mask;
}
self.map(b * 8, a * 8, &masks);
}
}
}
/// Set all the leds of a monome in one call.
///
/// # Arguments
///
/// * `leds` - a vector of 64 integers in [0, 15] for a monome 64, 128 elements for a monome
/// 128, and 256 elements for a monome 256, packed in row order.
///
/// # Example
///
/// One a monome 128, do a gradient
///
/// ```no_run
/// # use monome::Monome;
///
/// let mut m = Monome::new("/prefix").unwrap();
/// let mut grid: Vec<u8> = vec!(0; 128);
/// for i in 0..8 {
/// for j in 0..16 {
/// grid[i * 16 + j] = (2 * i) as u8;
/// }
/// }
/// m.set_all_intensity(&grid);
/// ```
pub fn set_all_intensity(&mut self, leds: &[u8]) {
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let width_in_quad = self.size.0 / 8;
let height_in_quad = self.size.1 / 8;
let width = self.size.0;
let quad_size = 8;
let mut quad = [0 as u8; 64];
for a in 0..height_in_quad {
for b in 0..width_in_quad {
// Get the quad into an array
for i in 0..8 as i32 {
for j in 0..8 as i32 {
let idx = toidx(b * quad_size + j, a * quad_size + i, width);
quad[(i * 8 + j) as usize] = leds[idx];
}
}
self.map(b * 8, a * 8, &quad);
}
}
}
/// Set the value an 8x8 quad of led on a monome grid.
///
/// # Arguments
///
/// * `x_offset` - at which offset, that must be a multiple of 8, to set the quad.
/// * `y_offset` - at which offset, that must be a multiple of 8, to set the quad.
/// * `masks` - a vector of 8 unsigned 8-bit integers that is a mask representing the leds to
/// light up, or a vector of 64 bools, true for led On, false for led Off, packed in row order,
/// or a vector of 64 integers between 0 and 15, for the brightness of each led, packed in
/// row order.
///
/// # Example
///
/// On a monome 128, draw a triangle in the lower left half of the rightmost half, and a
/// gradient on the leftmost half.
/// ```no_run
/// # extern crate monome;
/// # use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// let mut v = [0; 64];
/// for i in 0..64 {
/// v[i] = (i / 4) as u8;
/// }
/// monome.map(0, 0, &v);
/// monome.map(8, 0, &[1, 3, 7, 15, 32, 63, 127, 0b11111111]);
/// ```
pub fn map<'a, A>(&mut self, x_offset: i32, y_offset: i32, masks: A)
where
A: IntoAddrAndArgs<'a, Vec<OscType>> + Sized,
{
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let (frag, mut arg) = masks.as_addr_frag_and_args();
let mut args = Vec::with_capacity(2 + arg.len());
args.push(OscType::Int(x_offset));
args.push(OscType::Int(y_offset));
args.append(&mut arg);
self.send(&format!("/grid/led/{}map", frag), args);
}
/// Set a full row of a grid, using one or more 8-bit mask(s), or a vector containing booleans
/// or integer intensity values.
///
/// # Arguments
///
/// * `x_offset` - at which 8 button offset to start setting the leds. This is always 0 for a
/// 64, and can be 8 for a 128 or 256.
/// * `y` - which row to set, 0-indexed. This must be lower than the number of rows of the
/// device.
/// * `leds` - either the list of masks that determine the pattern to light on for a particular
/// 8 led long section, or a vector of either int or bool, one element for each led.
///
/// # Example
///
/// On a monome 128, light up every other led of the right half of the 3rd row:
///
/// ```no_run
/// # use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// monome.row(8 /* rightmost half */,
/// 2 /* 3rd row, 0 indexed */,
/// &0b01010101u8 /* every other led, 85 in decimal */);
/// ```
pub fn row<'a, A>(&mut self, x_offset: i32, y: i32, leds: &A)
where
A: IntoAddrAndArgs<'a, Vec<OscType>>,
{
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let (frag, arg) = leds.as_addr_frag_and_args();
let mut args = Vec::with_capacity((2 + arg.len()) as usize);
args.push(OscType::Int(x_offset));
args.push(OscType::Int(y));
args.append(&mut arg.to_vec());
self.send(&format!("/grid/led/{}row", frag), args);
}
/// Set a full column of a grid, using one or more 8-bit mask(s), or a vector containing
/// booleans or integer intensity values.
///
/// # Arguments
///
/// * `x` - which column to set 0-indexed. This must be lower than the number of columns of the
/// device.
/// * `y_offset` - at which 8 button offset to start setting the leds. This is always 0 for a
/// 64, and can be 8 for a 128 or 256.
/// * `leds` - either the list of masks that determine the pattern to light on for a particular
/// 8 led long section, or a vector of either int or bool, one element for each led.
///
/// # Example
///
/// On a monome 256, light up every other led of the bottom half of the 3rd column from the
/// right:
///
/// ```no_run
/// use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// monome.col(2 /* 3rd column, 0-indexed */,
/// 8 /* bottom half */,
/// &0b01010101u8 /* every other led, 85 in decimal */);
/// ```
pub fn col<'a, A>(&mut self, x: i32, y_offset: i32, leds: &A)
where
A: IntoAddrAndArgs<'a, Vec<OscType>>,
{
if self.device_type != MonomeDeviceType::Grid {
error!("Called grid method on something that is not an grid.");
return;
}
let (frag, mut arg) = leds.as_addr_frag_and_args();
let mut args = Vec::with_capacity((2 + arg.len()) as usize);
args.push(OscType::Int(x));
args.push(OscType::Int(y_offset));
args.append(&mut arg);
self.send(&format!("/grid/led/{}col", frag), args);
}
/// Set a single led, with intensity, on an Arc.
///
/// # Arguments
///
/// - `n` - the encoder to set a led on, 0-indexed.
/// - `index` - which led to set. 0 is the top led, and goes clockwise. This is modulo 64, so
/// passing in 65 is the second led from the top, going clockwise.
/// - `intensity` - the intensity of the led 0 being off, 15 full brightness.
///
/// # Example
///
/// On an arc, make a circular gradient on the first encoder:
///
/// ```no_run
/// use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// for i in 0..64 {
/// monome.set(0, i, i / 4);
/// }
/// ```
pub fn ring_set(&mut self, n: usize, index: u32, intensity: u32) {
if self.device_type != MonomeDeviceType::Arc {
error!("Called arc method on something that is not an arc.");
return;
}
let mut args = Vec::with_capacity(3);
args.push(OscType::Int(n as i32));
args.push(OscType::Int(index as i32));
args.push(OscType::Int(intensity as i32));
self.send("/ring/set", args);
}
/// Set all the led on an encoder to a particular intensity.
///
/// # Arguments
///
/// - `n` - the encoder to set the leds on, 0-indexed.
/// - `intensity` - the intensity of the leds: 0 being off, 15 full brightness.
///
/// # Example
///
/// On an arc, make a gradient accross all four encoders:
///
/// ```no_run
/// use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// for i in 0..4 {
/// monome.ring_all(i, (i * 4) as u32);
/// }
/// ```
pub fn ring_all(&mut self, n: usize, intensity: u32) {
if self.device_type != MonomeDeviceType::Arc {
error!("Called arc method on something that is not an arc.");
return;
}
let mut args = Vec::with_capacity(2);
args.push(OscType::Int(n as i32));
args.push(OscType::Int(intensity as i32));
self.send("/ring/all", args);
}
/// Set a range of led to a particular intensity.
///
/// # Arguments
///
/// - `n` - the encoder to set the leds on, 0-indexed.
/// - `start_offset` - the encoder to start setting the led from, 0-indexed, modulo 64.
/// - `end_offset` - the encoder to end setting the led at 0-indexed, inclusive, modulo 64.
/// - `intensity` - the intensity of the leds: 0 being off, 15 full brightness.
///
/// # Example
///
/// On an arc, lit up halves:
///
/// ```no_run
/// use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// monome.ring_range(0, 0, 32, 15);
/// monome.ring_range(1, 32, 64, 15);
/// monome.ring_range(2, 16, 48, 15);
/// monome.ring_range(3, 48, 16, 15);
/// ```
pub fn ring_range(&mut self, n: usize, start_offset: usize, end_offset: usize, intensity: u32) {
if self.device_type != MonomeDeviceType::Arc {
error!("Called arc method on something that is not an arc.");
return;
}
let mut args = Vec::with_capacity(4);
args.push(OscType::Int(n as i32));
args.push(OscType::Int(start_offset as i32));
args.push(OscType::Int(end_offset as i32));
args.push(OscType::Int(intensity as i32));
self.send("/ring/range", args);
}
/// Set all leds on an encoder to specific values.
///
/// # Arguments
///
/// - `n` - the encoder to set the leds on, 0-indexed.
/// - `values` - an array of 64 values between 0 an 16, one for each led.
///
/// # Example
///
/// On an arc, make a gradient on an encoder.
///
/// ```no_run
/// use monome::Monome;
/// let mut monome = Monome::new("/prefix").unwrap();
/// let mut v: [u8; 64] = [0; 64];
///
/// for i in 0..64 {
/// v[i] = (i / 4) as u8;
/// }
/// monome.ring_map(0, &v);
/// ```
pub fn ring_map(&mut self, n: usize, values: &[u8; 64]) {
let mut args = Vec::with_capacity(65);
args.push(OscType::Int(n as i32));
for v in values.iter() {
args.push(OscType::Int(i32::from(*v)));
}
self.send("/ring/map", args);
}
/// Enable or disable all tilt sensors (usually, there is only one), which allows receiving the
/// `/<prefix>/tilt/` events, with the n,x,y,z coordinates as parameters.
pub fn tilt_all(&mut self, on: bool) {
self.send(
"/tilt/set",
vec![OscType::Int(0), OscType::Int(if on { 1 } else { 0 })],
);
}
/// Set the rotation for this device. This is either 0, 90, 180 or 270
pub fn set_rotation(&mut self, rotation: i32) {
self.send_no_prefix("/sys/rotation", vec![OscType::Int(rotation)]);
self.rotation = rotation;
}
/// Set the prefix for this device.
pub fn set_prefix(&mut self, prefix: String) {
self.send_no_prefix("/sys/prefix", vec![OscType::String(prefix.clone())]);
self.prefix = prefix;
}
/// Get the name of this device.
pub fn name(&self) -> String {
self.name.clone()
}
/// Get the type for this device (for example `"monome 128"`).
pub fn device_type(&self) -> MonomeDeviceType {
self.device_type.clone()
}
/// Get the port for this device.
pub fn port(&self) -> u16 {
self.port
}
/// Get the host for this device is at.
pub fn host(&self) -> String {
self.host.clone()
}
/// Get the id of this device.
pub fn id(&self) -> String {
self.id.clone()
}
/// Get the current prefix of this device.
pub fn prefix(&self) -> String {
self.prefix.clone()
}
/// Get the current rotation of this device.
pub fn rotation(&self) -> i32 {
self.rotation
}
/// Get the size of this device, as a `(width, height)`.
pub fn size(&self) -> (i32, i32) {
self.size
}
/// Get the width of this device.
pub fn width(&self) -> usize {
self.size.0 as usize
}
/// Get the height of this device.
pub fn height(&self) -> usize {
self.size.1 as usize
}
/// Adds the prefix, packs the OSC message into an u8 vector and sends it to the transport.
fn send(&mut self, addr: &str, args: Vec<OscType>) {
let with_prefix = format!("{}{}", self.prefix, addr);
self.send_no_prefix(&with_prefix, args);
}
/// Packs the OSC message into an u8 vector and sends it to the transport.
fn send_no_prefix(&mut self, addr: &str, args: Vec<OscType>) {
let message = OscMessage {
addr: addr.to_owned(),
args,
};
let packet = OscPacket::Message(message);
debug!("⇨ {:?}", packet);
let bytes: Vec<u8> = encode(&packet).unwrap();
match self.tx.unbounded_send(bytes) {
Ok(()) => {}
Err(_) => {
error!("Send channel disconnected");
}
}
}
/// Receives a MonomeEvent, from a connected monome, which can be a grid key press, an event
/// from the tilt sensor, or a delta from an encoder, on an Arc. Only the events from the set
/// `prefix` will be received.
///
/// # Example
///
/// ```no_run
/// # extern crate monome;
///
/// use monome::{Monome, MonomeEvent, KeyDirection};
/// let mut m = Monome::new("/prefix").unwrap();
///
/// loop {
/// match m.poll() {
/// Some(MonomeEvent::GridKey{x, y, direction}) => {
/// match direction {
/// KeyDirection::Down => {
/// println!("Key pressed: {}x{}", x, y);
/// }
/// KeyDirection::Up => {
/// println!("Key released: {}x{}", x, y);
/// }
/// }
/// }
/// Some(MonomeEvent::Tilt{n: _n, x, y, z: _z}) => {
/// println!("tilt update: pitch: {}, roll {}", x, y);
/// }
/// _ => {
/// break;
/// }
/// }
/// }
/// ```
pub fn poll(&mut self) -> Option<MonomeEvent> {
match self.q.pop() {
Some(buf) => self.parse(&buf),
None => None,
}
}
fn parse_serialosc(&self, message: rosc::OscMessage) {
if message.addr == "/serialosc/device" {
info!("/serialosc/device");
} else if message.addr == "/serialosc/add" {
let args = message.args;
if let OscType::String(ref device_name) = args[0] {
info!("device added: {}", device_name);
} else {
warn!("unexpected message for prefix {}", &message.addr);
}
} else if message.addr == "/serialosc/remove" {
let args = &message.args;
if let OscType::String(ref device_name) = args[0] {
info!("device removed: {}", device_name);
} else {
warn!("unexpected message for prefix {}", &message.addr);
}
};
}
fn parse_app_message(&self, message: rosc::OscMessage) -> Option<MonomeEvent> {
if message
.addr
.starts_with(&format!("{}/grid/key", self.prefix))
{
if let [OscType::Int(x), OscType::Int(y), OscType::Int(v)] = message.args.as_slice() {
info!("Key: {}:{} {}", *x, *y, *v);
let direction = if *v == 1 {
KeyDirection::Down
} else {
KeyDirection::Up
};
return Some(MonomeEvent::GridKey {
x: *x,
y: *y,
direction,
});
}
error!("Invalid /grid/key message received {:?}.", message.clone());
} else if message.addr.starts_with(&format!("{}/tilt", self.prefix)) {
if let [OscType::Int(n), OscType::Int(x), OscType::Int(y), OscType::Int(z)] =
message.args.as_slice()
{
info!("Tilt {} {},{},{}", *n, *x, *y, *z);
return Some(MonomeEvent::Tilt {
n: *n,
x: *x,
y: *y,
z: *z,
});
}
error!("Invalid /tilt message received {:?}.", message);
} else if message
.addr
.starts_with(&format!("{}/enc/delta", self.prefix))
{
if let [OscType::Int(n), OscType::Int(delta)] = message.args.as_slice() {
info!("Encoder delta {} {}", n, delta);
return Some(MonomeEvent::EncoderDelta {
n: *n as usize,
delta: *delta,
});
}
error!("Invalid /end/delta message received {:?}.", message);
} else if message
.addr
.starts_with(&format!("{}/enc/key", self.prefix))
{
if let [OscType::Int(n), OscType::Int(direction)] = message.args.as_slice() {
info!("Encoder key {} {}", n, direction);
return Some(MonomeEvent::EncoderKey {
n: *n as usize,
direction: if *direction == 1 {
KeyDirection::Down
} else {
KeyDirection::Up
},
});
}
error!("Invalid /end/key message received {:?}.", message);
} else {
error!("not handled: {:?}", message.addr);
}
None
}
fn parse(&self, buf: &[u8]) -> Option<MonomeEvent> {
let packet = decode(buf).unwrap();
debug!("⇦ {:?}", packet);
match packet {
OscPacket::Message(message) => {
if message.addr.starts_with("/serialosc") {
self.parse_serialosc(message);
} else if message.addr.starts_with("/sys") {
// This should only be received during the setup phase
debug!("/sys received: {:?}", message);
} else if message.addr.starts_with(&self.prefix) {
return self.parse_app_message(message);
}
None
}
OscPacket::Bundle(_bundle) => {
panic!("wtf.");
}
}
}
}
impl fmt::Debug for Monome {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let rv = write!(
f,
"Monome {}\n\ttype: {}\n\tport: {}\n\thost: {}\n\t\
id: {}\n\tprefix: {}\n\trotation: {}",
self.name, self.device_type, self.port, self.host, self.id, self.prefix, self.rotation
);
if self.device_type == MonomeDeviceType::Grid {
return write!(f, "\n\tsize: {}:{}", self.size.0, self.size.1);
}
rv
}
}
impl fmt::Display for Monome {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", self)
}
}
#[cfg(test)]
mod tests {
use crate::build_osc_message;
use crate::Monome;
use crate::SERIALOSC_PORT;
use rosc::decoder::decode;
use rosc::encoder::encode;
use rosc::{OscPacket, OscType};
use std::sync::{Arc, Condvar, Mutex};
use std::thread;
use tokio::net::UdpSocket;
use tokio::prelude::*;
#[test]
fn setup() {
let pair = Arc::new((Mutex::new(false), Condvar::new()));
let pair2 = pair.clone();
thread::spawn(move || {
let fake_device_port = 1234;
let device_addr = format!("127.0.0.1:{}", fake_device_port).parse().unwrap();
let device_socket = UdpSocket::bind(&device_addr).unwrap();
// Avoid failing if serialocs is running on the default port.
let serialosc_addr = format!("127.0.0.1:{}", SERIALOSC_PORT + 1).parse().unwrap();
let serialosc_socket = UdpSocket::bind(&serialosc_addr).unwrap();
{
let &(ref lock, ref cvar) = &*pair2;
let mut started = lock.lock().unwrap();
*started = true;
cvar.notify_all();
}
let (socket, data, _, _) = serialosc_socket.recv_dgram(vec![0u8; 1024]).wait().unwrap();
let packet = decode(&data).unwrap();
let msg = match packet {
OscPacket::Message(m) => m,
OscPacket::Bundle(_b) => panic!("unexpected bundle"),
};
assert!(msg.addr == "/serialosc/list");
assert!(!msg.args.is_empty());
let app_port = if let OscType::Int(port) = msg.args[1] {
port
} else {
panic!("bad message");
};
let packet = build_osc_message(
"/serialosc/device",
vec![
OscType::String("monome grid test".into()),
OscType::String("m123123".into()),
OscType::Int(1234),
],
);
let bytes: Vec<u8> = encode(&packet).unwrap();
let app_addr = format!("127.0.0.1:{}", app_port).parse().unwrap();
let (mut socket, _) = socket.send_dgram(bytes, &app_addr).wait().unwrap();
fn receive_from_app_and_expect(
socket: UdpSocket,
expected_addr: String,
) -> (UdpSocket, Vec<OscType>) {
let (socket, data, _, _) = socket.recv_dgram(vec![0u8; 1024]).wait().unwrap();
let packet = decode(&data).unwrap();
let msg = match packet {
OscPacket::Message(m) => m,
OscPacket::Bundle(_b) => panic!("unexpected bundle"),
};
assert!(msg.addr == expected_addr);
(socket, msg.args)
}
let (device_socket, args) =
receive_from_app_and_expect(device_socket, "/sys/port".into());
let port = if let OscType::Int(port) = args[0] {
assert!(port == 10000);
port
} else {
panic!("bad port");
};
assert!(port == 10000);
let (device_socket, args) =
receive_from_app_and_expect(device_socket, "/sys/host".into());
let host = if let OscType::String(ref host) = args[0] {
host
} else {
panic!("bad host");
};
assert!(host == "127.0.0.1");
let (device_socket, args) =
receive_from_app_and_expect(device_socket, "/sys/prefix".into());
let prefix = if let OscType::String(ref prefix) = args[0] {
prefix
} else {
panic!("bad prefix");
};
assert!(prefix == "/plop");
let (_device_socket, args) =
receive_from_app_and_expect(device_socket, "/sys/info".into());
assert!(args.is_empty());
let message_addrs = vec![
"/sys/port",
"/sys/host",
"/sys/id",
"/sys/prefix",
"/sys/rotation",
"/sys/size",
];
let message_args = vec![
vec![OscType::Int(fake_device_port)],
vec![OscType::String("127.0.0.1".into())],
vec![OscType::String("monome blabla".into())],
vec![OscType::String("/plop".into())],
vec![OscType::Int(0)],
vec![OscType::Int(16), OscType::Int(8)],
];
assert!(message_addrs.len() == message_args.len());
for i in 0..message_addrs.len() {
let packet = build_osc_message(message_addrs[i], message_args[i].clone());
let bytes: Vec<u8> = encode(&packet).unwrap();
socket = socket
.send_dgram(bytes, &app_addr)
.map(|(socket, _)| socket)
.wait()
.unwrap();
}
});
let &(ref lock, ref cvar) = &*pair;
let mut started = lock.lock().unwrap();
while !*started {
started = cvar.wait(started).unwrap();
}
// use another port in case serialosc is running on the local machine
let _m = Monome::new_with_port("/plop".to_string(), SERIALOSC_PORT + 1).unwrap();
}
}