-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathRXTXCommDriver.java
1006 lines (942 loc) · 30.3 KB
/
RXTXCommDriver.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
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
/*-------------------------------------------------------------------------
| RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface.
| RXTX is a native interface to serial ports in java.
| Copyright 1998 Kevin Hester, [email protected]
| Copyright 2000-2008 Trent Jarvi [email protected] and others who
| actually wrote it. See individual source files for more information.
|
| A copy of the LGPL v 2.1 may be found at
| http://www.gnu.org/licenses/lgpl.txt on March 4th 2007. A copy is
| here for your convenience.
|
| This library is free software; you can redistribute it and/or
| modify it under the terms of the GNU Lesser General Public
| License as published by the Free Software Foundation; either
| version 2.1 of the License, or (at your option) any later version.
|
| This library 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
| Lesser General Public License for more details.
|
| An executable that contains no derivative of any portion of RXTX, but
| is designed to work with RXTX by being dynamically linked with it,
| is considered a "work that uses the Library" subject to the terms and
| conditions of the GNU Lesser General Public License.
|
| The following has been added to the RXTX License to remove
| any confusion about linking to RXTX. We want to allow in part what
| section 5, paragraph 2 of the LGPL does not permit in the special
| case of linking over a controlled interface. The intent is to add a
| Java Specification Request or standards body defined interface in the
| future as another exception but one is not currently available.
|
| http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface
|
| As a special exception, the copyright holders of RXTX give you
| permission to link RXTX with independent modules that communicate with
| RXTX solely through the Sun Microsytems CommAPI interface version 2,
| regardless of the license terms of these independent modules, and to copy
| and distribute the resulting combined work under terms of your choice,
| provided that every copy of the combined work is accompanied by a complete
| copy of the source code of RXTX (the version of RXTX used to produce the
| combined work), being distributed under the terms of the GNU Lesser General
| Public License plus this exception. An independent module is a
| module which is not derived from or based on RXTX.
|
| Note that people who make modified versions of RXTX are not obligated
| to grant this special exception for their modified versions; it is
| their choice whether to do so. The GNU Lesser General Public License
| gives permission to release a modified version without this exception; this
| exception also makes it possible to release a modified version which
| carries forward this exception.
|
| You should have received a copy of the GNU Lesser General Public
| License along with this library; if not, write to the Free
| Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
| All trademarks belong to their respective owners.
--------------------------------------------------------------------------*/
/* Martin Pool <[email protected]> added support for explicitly-specified
* lists of ports, October 2000. */
/* Joseph Goldstone <[email protected]> reorganized to support registered ports,
* known ports, and scanned ports, July 2001 */
package gnu.io;
import java.io.File;
import java.io.FileInputStream;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Properties;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.TreeMap;
/**
This is the JavaComm for Linux driver.
*/
public class RXTXCommDriver implements CommDriver
{
private static Set<String> ports =new HashSet<String>();
private final static boolean debug = false;
private final static boolean devel = false;
private final static boolean noVersionOutput = "true".equals( System.getProperty( "gnu.io.rxtx.NoVersionOutput" ) );
static
{
if(ports==null)
ports =new HashSet<String>();
if(debug ) System.out.println("RXTXCommDriver {}");
//System.loadLibrary( "rxtxSerial" );
SerialManager.getInstance();
/*
Perform a crude check to make sure people don't mix
versions of the Jar and native lib
Mixing the libs can create a nightmare.
It could be possible to move this over to RXTXVersion
but All we want to do is warn people when first loading
the Library.
*/
String JarVersion = RXTXVersion.getVersion();
String LibVersion;
try {
LibVersion = RXTXVersion.nativeGetVersion();
} catch ( Error UnsatisfiedLinkError )
{
// for rxtx prior to 2.1.7
LibVersion = nativeGetVersion();
}
if ( devel )
{
if ( ! noVersionOutput )
{
System.out.println("Stable Library");
System.out.println("=========================================");
System.out.println("Native lib Version = " + LibVersion );
System.out.println("Java lib Version = " + JarVersion );
}
}
if ( ! JarVersion.equals( LibVersion ) )
{
//System.out.println( "WARNING: RXTX Version mismatch\n\tJar version = " + JarVersion + "\n\tnative lib Version = " + LibVersion );
}
else if ( debug )
{
System.out.println( "RXTXCommDriver:\n\tJar version = " + JarVersion + "\n\tnative lib Version = " + LibVersion );
}
}
/** Get the Serial port prefixes for the running OS */
private String deviceDirectory;
private String osName;
private native boolean registerKnownPorts(int PortType);
private native boolean isPortPrefixValid(String dev);
private native boolean testRead(String dev, int type);
private native String getDeviceDirectory();
// for rxtx prior to 2.1.7
private static native String nativeGetVersion();
public static String nativeGetVersionWrapper() throws UnsatisfiedLinkError {
return nativeGetVersion();
}
public Set<String> getPortIdentifiers() {
ports =new HashSet<String>();
registerScannedPorts(CommPortIdentifier.PORT_SERIAL);
Enumeration<CommPortIdentifier> pe;
try{
pe = CommPortIdentifier.getPortIdentifiers();
}catch( UnsatisfiedLinkError e){
e.printStackTrace();
return null;
}
if(pe != null){
while (pe.hasMoreElements()) {
CommPortIdentifier com = (CommPortIdentifier) pe.nextElement();
switch (com.getPortType()) {
case CommPortIdentifier.PORT_SERIAL:
if(com.getName().matches("^/.+/cu\\..+$")) {
continue;
}
if(com.getName().matches("^/.+/tty\\.Bluetooth.+$")) {
continue;
}
boolean inList=false;
for(String s:ports){
if(com.getName().contains(s)){
inList=true;
}
}
if(!inList){
ports.add(com.getName());
}
}
}
}
return ports;
}
private final String[] getValidPortPrefixes(String CandidatePortPrefixes[])
{
/*
getScannedBufferSize() is the number of prefixes ( COM, cua, ttyS, ...) not
the number of devices (ttyS0, ttyS1, ttyS2, ...)
On a Linux system there are about 400 prefixes in
deviceDirectory.
registerScannedPorts() assigns CandidatePortPrefixes to
something less than 50 prefixes.
Trent
*/
String ValidPortPrefixes[]=new String [getScannedBufferSize()];
if (debug)
System.out.println("\nRXTXCommDriver:getValidPortPrefixes()");
if(CandidatePortPrefixes==null)
{
if (debug)
System.out.println("\nRXTXCommDriver:getValidPortPrefixes() No ports prefixes known for this System.\nPlease check the port prefixes listed for " + osName + " in RXTXCommDriver:registerScannedPorts()\n");
}
int i=0;
for(int j=0;j<CandidatePortPrefixes.length;j++){
if(isPortPrefixValid(CandidatePortPrefixes[j])) {
ValidPortPrefixes[i++]=
CandidatePortPrefixes[j];
}
}
String[] returnArray=new String[i];
System.arraycopy(ValidPortPrefixes, 0, returnArray, 0, i);
if(ValidPortPrefixes[0]==null)
{
if (debug)
{
System.out.println("\nRXTXCommDriver:getValidPortPrefixes() No ports matched the list assumed for this\nSystem in the directory " + deviceDirectory + ". Please check the ports listed for \"" + osName + "\" in\nRXTXCommDriver:registerScannedPorts()\nTried:");
for(int j=0;j<CandidatePortPrefixes.length;j++){
System.out.println("\t" +
CandidatePortPrefixes[i]);
}
}
}
else
{
if (debug)
System.out.println("\nRXTXCommDriver:getValidPortPrefixes()\nThe following port prefixes have been identified as valid on " + osName + ":\n");
/*
for(int j=0;j<returnArray.length;j++)
{
if (debug)
System.out.println("\t" + j + " " +
returnArray[j]);
}
*/
}
return returnArray;
}
/** handle solaris/sunos /dev/cua/a convention */
private void checkSolaris(String PortName, int PortType)
{
char p[] = { 91 };
for( p[0] =97 ;p[0] < 123; p[0]++ )
{
if (testRead(PortName.concat(new String(p)),PortType))
{
CommPortIdentifier.addPortName(
PortName.concat(new String(p)),
PortType,
this
);
}
}
/** check for 0-9 in case we have them (Solaris USB) */
for( p[0] =48 ;p[0] <= 57; p[0]++ )
{
if (testRead(PortName.concat(new String(p)),PortType))
{
CommPortIdentifier.addPortName(
PortName.concat(new String(p)),
PortType,
this
);
}
}
}
private void registerValidPorts(
String CandidateDeviceNames[],
String ValidPortPrefixes[],
int PortType,
boolean performTestRead
) {
int i =0;
int p =0 ;
// on windows, if performTestRead is false, we can just add the port because is read directly from registry
if(osName.toLowerCase().indexOf("windows") != -1 && !performTestRead)
{
for( i=0;i < CandidateDeviceNames.length;i++ )
{
CommPortIdentifier.addPortName( CandidateDeviceNames[i],
PortType, this );
}
return;
}
if (debug)
{
System.out.println("Entering registerValidPorts()");
/* */
System.out.println(" Candidate devices:");
for (int dn=0;dn<CandidateDeviceNames.length;dn++)
System.out.println(" " +
CandidateDeviceNames[dn]);
System.out.println(" valid port prefixes:");
for (int pp=0;pp<ValidPortPrefixes.length;pp++)
System.out.println(" "+ValidPortPrefixes[pp]);
/* */
}
if ( CandidateDeviceNames!=null && ValidPortPrefixes!=null)
{
for( i = 0;i<CandidateDeviceNames.length; i++ ) {
for( p = 0;p<ValidPortPrefixes.length; p++ ) {
/* this determines:
* device file Valid ports
* /dev/ttyR[0-9]* != /dev/ttyS[0-9]*
* /dev/ttySI[0-9]* != /dev/ttyS[0-9]*
* /dev/ttyS[0-9]* == /dev/ttyS[0-9]*
* Otherwise we check some ports
* multiple times. Perl would rock
* here.
*
* If the above passes, we try to read
* from the port. If there is no err
* the port is added.
* Trent
*/
String V = ValidPortPrefixes[ p ];
int VL = V.length();
String C = CandidateDeviceNames[ i ];
if( C.length() < VL ) continue;
String CU =
C.substring(VL).toUpperCase();
String Cl =
C.substring(VL).toLowerCase();
if( !( C.regionMatches(0, V, 0, VL ) &&
CU.equals( Cl ) ) )
{
continue;
}
String PortName;
if(osName.toLowerCase().indexOf("windows") == -1 )
{
PortName = deviceDirectory + C;
}
else
{
PortName = C;
}
if (debug)
{
System.out.println( C +
" " + V );
System.out.println( CU +
" " + Cl );
}
if( osName.equals("Solaris") ||
osName.equals("SunOS"))
checkSolaris(PortName,PortType);
else if (testRead(PortName, PortType))
{
//try{
//CommPortIdentifier.getPortIdentifier(PortName);
//}catch(NoSuchPortException e){
CommPortIdentifier.addPortName(
PortName,
PortType,
this
);
//}
boolean ok=true;
for(String s :ports)
if(s.contains(PortName))
ok=false;
if(ok)
ports.add(PortName);
}
}
}
}
if (debug)
System.out.println("Leaving registerValidPorts()");
}
/*
* initialize() will be called by the CommPortIdentifier's static
* initializer. The responsibility of this method is:
* 1) Ensure that that the hardware is present.
* 2) Load any required native libraries.
* 3) Register the port names with the CommPortIdentifier.
*
* From the NullDriver.java CommAPI sample.
*
* added printerport stuff
* Holger Lehmann
* July 12, 1999
* IBM
* Added ttyM for Moxa boards
* Removed obsolete device cuaa
* Peter Bennett
* January 02, 2000
* Bencom
*/
/**
* Determine the OS and where the OS has the devices located
*/
public void initialize()
{
if (debug) System.out.println("RXTXCommDriver:initialize()");
osName=System.getProperty("os.name");
deviceDirectory=getDeviceDirectory();
/*
First try to register ports specified in the properties
file. If that doesn't exist, then scan for ports.
*/
if (!registerSpecifiedPorts(CommPortIdentifier.PORT_SERIAL)) {
if (!registerKnownPorts(CommPortIdentifier.PORT_SERIAL)) {
registerScannedPorts(CommPortIdentifier.PORT_SERIAL);
}
}
}
private void addSpecifiedPorts(String names, int PortType)
{
final String pathSep = System.getProperty("path.separator", ":");
final StringTokenizer tok = new StringTokenizer(names, pathSep);
if (debug)
System.out.println("\nRXTXCommDriver:addSpecifiedPorts()");
while (tok.hasMoreElements())
{
String PortName = tok.nextToken();
if (testRead(PortName, PortType))
CommPortIdentifier.addPortName(PortName,
PortType, this);
}
}
/*
* Register ports specified in the file "gnu.io.rxtx.properties"
* Key system properties:
* gnu.io.rxtx.SerialPorts
* gnu.io.rxtx.ParallelPorts
*
* Tested only with sun jdk1.3
* The file gnu.io.rxtx.properties must reside in the java extension dir
*
* Example: /usr/local/java/jre/lib/ext/gnu.io.rxtx.properties
*
* The file contains the following key properties:
*
* gnu.io.rxtx.SerialPorts=/dev/ttyS0:/dev/ttyS1:
* gnu.io.rxtx.ParallelPorts=/dev/lp0:
*
*/
@SuppressWarnings({ "rawtypes" })
private boolean registerSpecifiedPorts(int PortType)
{
String val = null;
Properties origp = System.getProperties();//save system properties
try
{
String ext_dir=System.getProperty("java.ext.dirs")+System.getProperty("file.separator");
FileInputStream rxtx_prop=new FileInputStream(ext_dir+"gnu.io.rxtx.properties");
Properties p=new Properties();
p.load(rxtx_prop);
System.setProperties(p);
for (Iterator it = p.keySet().iterator(); it.hasNext();) {
String key = (String) it.next();
System.setProperty(key, p.getProperty(key));
}
}catch(Exception e){
if (debug){
System.out.println("The file: gnu.io.rxtx.properties doesn't exists.");
System.out.println(e.toString());
}//end if
}//end catch
if (debug)
System.out.println("checking for system-known ports of type "+PortType);
if (debug)
System.out.println("checking registry for ports of type "+PortType);
switch (PortType) {
case CommPortIdentifier.PORT_SERIAL:
if ((val = System.getProperty("gnu.io.rxtx.SerialPorts")) == null)
val = System.getProperty("gnu.io.SerialPorts");
break;
case CommPortIdentifier.PORT_PARALLEL:
if ((val = System.getProperty("gnu.io.rxtx.ParallelPorts")) == null)
val = System.getProperty("gnu.io.ParallelPorts");
break;
default:
if (debug)
System.out.println("unknown port type "+PortType+" passed to RXTXCommDriver.registerSpecifiedPorts()");
}
System.setProperties(origp); //recall saved properties
if (val != null) {
addSpecifiedPorts(val, PortType);
return true;
} else {
return false;
}
}
private int getScannedBufferSize(){
return 40960;
}
/*
* Look for all entries in deviceDirectory, and if they look like they should
* be serial ports on this OS and they can be opened then register
* them.
*
*/
private void registerScannedPorts(int PortType)
{
osName=System.getProperty("os.name");
deviceDirectory=getDeviceDirectory();
String[] CandidateDeviceNames;
if (debug)
System.out.println("scanning device directory "+deviceDirectory+" for ports of type "+PortType);
boolean performTestRead = true;
if(osName.toLowerCase().indexOf("windows") != -1 )
{
boolean useFallback = true;
String[] temp = new String[0];
if (isClassPresent("com.sun.jna.platform.win32.Advapi32Util")) {
// on windows, we try to get the serial port list from the registry
try {
temp = windowsGetSerialPortsFromRegistry();
performTestRead = false; // disable the testRead to simply add the port to the CommPortIdentifier index
useFallback = false;
}
catch (Throwable ex) {
if (debug)
System.err.println("Error reading the registry to get port list " + ex.getMessage());
}
}
// if something goes wrong, fallback to full scan
if (useFallback) {
temp = new String[getScannedBufferSize() + 3];
for (int i = 1; i <= getScannedBufferSize(); i++) {
temp[i - 1] = "COM" + i;
}
for (int i = 1; i <= 3; i++) {
temp[i + getScannedBufferSize() - 1] = "LPT" + i;
}
}
CandidateDeviceNames = temp;
}
else if ( osName.equals("Solaris") || osName.equals("SunOS"))
{
/* Solaris uses a few different ways to identify ports.
They could be /dev/term/a /dev/term0 /dev/cua/a /dev/cuaa
the /dev/???/a appears to be on more systems.
The uucp lock files should not cause problems.
*/
/*
File dev = new File( "/dev/term" );
String deva[] = dev.list();
dev = new File( "/dev/cua" );
String devb[] = dev.list();
String[] temp = new String[ deva.length + devb.length ];
for(int j =0;j<deva.length;j++)
deva[j] = "term/" + deva[j];
for(int j =0;j<devb.length;j++)
devb[j] = "cua/" + devb[j];
System.arraycopy( deva, 0, temp, 0, deva.length );
System.arraycopy( devb, 0, temp,
deva.length, devb.length );
if( debug ) {
for( int j = 0; j< temp.length;j++)
System.out.println( temp[j] );
}
CandidateDeviceNames=temp;
*/
/*
ok.. Look the the dirctories representing the port
kernel driver interface.
If there are entries there are possibly ports we can
use and need to enumerate.
*/
String term[] = new String[2];
int l = 0;
File dev = null;
dev = new File( "/dev/term" );
if( dev.list().length > 0 )
term[l++] ="term/";
/*
dev = new File( "/dev/cua0" );
if( dev.list().length > 0 )
term[l++] = "cua/";
*/
String[] temp = new String[l];
for(l--;l >= 0;l--)
temp[l] = term[l];
CandidateDeviceNames=temp;
}
else
{
File dev = new File( deviceDirectory );
String[] temp = dev.list();
CandidateDeviceNames=temp;
}
if (CandidateDeviceNames==null)
{
if (debug)
System.out.println("RXTXCommDriver:registerScannedPorts() no Device files to check ");
return;
}
String CandidatePortPrefixes[] = {};
switch (PortType) {
case CommPortIdentifier.PORT_SERIAL:
if (debug)
System.out.println("scanning for serial ports for os "+osName);
/* There are _many_ possible ports that can be used
on Linux. See below in the fake Linux-all-ports
case for a list. You may add additional ports
here but be warned that too many will significantly
slow down port enumeration. Linux 2.6 has udev
support which should be faster as only ports the
kernel finds should be exposed in /dev
See also how to override port enumeration and
specifying port in INSTALL.
taj
*/
if(osName.equals("Linux"))
{
String[] Temp = {
"ttyS", // linux Serial Ports
"ttySA", // for the IPAQs
"ttyUSB", // for USB frobs
"ttyAMA", // Raspberry Pi
"rfcomm", // bluetooth serial device
"ttyircomm", // linux IrCommdevices (IrDA serial emu)
"ttyACM",// linux CDC ACM devices
"DyIO",// NRDyIO
"Bootloader",// NRDyIO bootloader
"BowlerDevice",// Generic Bowler Device
"DeltaDoodle",// DeltaDoodle Printer
"dyio"// linux CDC ACM devices
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("Linux-all-ports"))
{
/* if you want to enumerate all ports ~5000
possible, then replace the above with this
*/
String[] Temp = {
"comx", // linux COMMX synchronous serial card
"holter", // custom card for heart monitoring
"modem", // linux symbolic link to modem.
"rfcomm", // bluetooth serial device
"ttyircomm", // linux IrCommdevices (IrDA serial emu)
"ttycosa0c", // linux COSA/SRP synchronous serial card
"ttycosa1c", // linux COSA/SRP synchronous serial card
"ttyACM",// linux CDC ACM devices
"DyIO",// linux CDC ACM devices
"Bootloader",// linux CDC ACM devices
"BowlerDevice",// Generic Bowler Device
"DeltaDoodle",// DeltaDoodle Printer
"dyio",// linux CDC ACM devices
"ttyC", // linux cyclades cards
"ttyCH",// linux Chase Research AT/PCI-Fast serial card
"ttyD", // linux Digiboard serial card
"ttyE", // linux Stallion serial card
"ttyF", // linux Computone IntelliPort serial card
"ttyH", // linux Chase serial card
"ttyI", // linux virtual modems
"ttyL", // linux SDL RISCom serial card
"ttyM", // linux PAM Software's multimodem boards
// linux ISI serial card
"ttyMX",// linux Moxa Smart IO cards
"ttyP", // linux Hayes ESP serial card
"ttyR", // linux comtrol cards
// linux Specialix RIO serial card
"ttyS", // linux Serial Ports
"ttySI",// linux SmartIO serial card
"ttySR",// linux Specialix RIO serial card 257+
"ttyT", // linux Technology Concepts serial card
"ttyUSB",//linux USB serial converters
"ttyV", // linux Comtrol VS-1000 serial controller
"ttyW", // linux specialix cards
"ttyX" // linux SpecialX serial card
};
CandidatePortPrefixes=Temp;
}
else if(osName.toLowerCase().indexOf("qnx") != -1 )
{
String[] Temp = {
"ser"
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("Irix"))
{
String[] Temp = {
"ttyc", // irix raw character devices
"ttyd", // irix basic serial ports
"ttyf", // irix serial ports with hardware flow
"ttym", // irix modems
"ttyq", // irix pseudo ttys
"tty4d",// irix RS422
"tty4f",// irix RS422 with HSKo/HSki
"midi", // irix serial midi
"us" // irix mapped interface
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("FreeBSD")) //FIXME this is probably wrong
{
String[] Temp = {
"ttyd", //general purpose serial ports
"cuaa", //dialout serial ports
"ttyA", //Specialix SI/XIO dialin ports
"cuaA", //Specialix SI/XIO dialout ports
"ttyu", //general purpose usb serial ports
"cuau", //dialout usb serial ports
"ttyU", //Specialix SI/XIO usb dialin ports
"cuaU", //Specialix SI/XIO usb dialout ports
"ttyD", //Digiboard - 16 dialin ports
"cuaD", //Digiboard - 16 dialout ports
"ttyE", //Stallion EasyIO (stl) dialin ports
"cuaE", //Stallion EasyIO (stl) dialout ports
"ttyF", //Stallion Brumby (stli) dialin ports
"cuaF", //Stallion Brumby (stli) dialout ports
"ttyR", //Rocketport dialin ports
"cuaR", //Rocketport dialout ports
"stl" //Stallion EasyIO board or Brumby N
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("NetBSD")) // FIXME this is probably wrong
{
String[] Temp = {
"tty0" // netbsd serial ports
};
CandidatePortPrefixes=Temp;
}
else if ( osName.equals("Solaris")
|| osName.equals("SunOS"))
{
String[] Temp = {
"term/",
"cua/"
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("HP-UX"))
{
String[] Temp = {
"tty0p",// HP-UX serial ports
"tty1p" // HP-UX serial ports
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("UnixWare") ||
osName.equals("OpenUNIX"))
{
String[] Temp = {
"tty00s", // UW7/OU8 serial ports
"tty01s",
"tty02s",
"tty03s"
};
CandidatePortPrefixes=Temp;
}
else if (osName.equals("OpenServer"))
{
String[] Temp = {
"tty1A", // OSR5 serial ports
"tty2A",
"tty3A",
"tty4A",
"tty5A",
"tty6A",
"tty7A",
"tty8A",
"tty9A",
"tty10A",
"tty11A",
"tty12A",
"tty13A",
"tty14A",
"tty15A",
"tty16A",
"ttyu1A", // OSR5 USB-serial ports
"ttyu2A",
"ttyu3A",
"ttyu4A",
"ttyu5A",
"ttyu6A",
"ttyu7A",
"ttyu8A",
"ttyu9A",
"ttyu10A",
"ttyu11A",
"ttyu12A",
"ttyu13A",
"ttyu14A",
"ttyu15A",
"ttyu16A"
};
CandidatePortPrefixes=Temp;
}
else if (osName.equals("Compaq's Digital UNIX") || osName.equals("OSF1"))
{
String[] Temp = {
"tty0" // Digital Unix serial ports
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("BeOS"))
{
String[] Temp = {
"serial" // BeOS serial ports
};
CandidatePortPrefixes=Temp;
}
else if(osName.equals("Mac OS X"))
{
String[] Temp = {
// Keyspan USA-28X adapter, USB port 1
"cu.KeyUSA28X191.",
// Keyspan USA-28X adapter, USB port 1
"tty.KeyUSA28X191.",
// Keyspan USA-28X adapter, USB port 2
"cu.KeyUSA28X181.",
// Keyspan USA-28X adapter, USB port 2
"tty.KeyUSA28X181.",
// Keyspan USA-19 adapter
"cu.KeyUSA19181.",
// Keyspan USA-19 adapter
"tty.KeyUSA19181."
};
CandidatePortPrefixes=Temp;
}
else if(osName.toLowerCase().indexOf("windows") != -1 )
{
String[] Temp = {
"COM" // win32 serial ports
//"//./COM" // win32 serial ports
};
CandidatePortPrefixes=Temp;
}
else
{
if (debug)
System.out.println("No valid prefixes for serial ports have been entered for "+osName + " in RXTXCommDriver.java. This may just be a typo in the method registerScanPorts().");
}
break;
case CommPortIdentifier.PORT_PARALLEL:
if (debug)
System.out.println("scanning for parallel ports for os "+osName);
/** Get the Parallel port prefixes for the running os
* Holger Lehmann
* July 12, 1999
* IBM
*/
if(osName.equals("Linux")
/*
|| osName.equals("NetBSD") FIXME
|| osName.equals("HP-UX") FIXME
|| osName.equals("Irix") FIXME
|| osName.equals("BeOS") FIXME
|| osName.equals("Compaq's Digital UNIX") FIXME
*/
)
{
String[] temp={
"lp" // linux printer port
};
CandidatePortPrefixes=temp;
}
else if(osName.equals("FreeBSD"))
{
String[] temp={
"lpt"
};
CandidatePortPrefixes=temp;
}
else if(osName.toLowerCase().indexOf("windows") != -1 )
{
String[] temp={
"LPT"
};
CandidatePortPrefixes=temp;
}
else /* printer support is green */
{
String [] temp={};
CandidatePortPrefixes=temp;
}
break;
default:
if (debug)
System.out.println("Unknown PortType "+PortType+" passed to RXTXCommDriver.registerScannedPorts()");
}
registerValidPorts(CandidateDeviceNames, CandidatePortPrefixes, PortType, performTestRead);
}
/**
* @return an array containing the serial ports, taken from registry HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM
* @throws Exception in case something goes wrong with the registry
*/
private String[] windowsGetSerialPortsFromRegistry() throws Exception {
final TreeMap<String, Object> map = com.sun.jna.platform.win32.Advapi32Util.registryGetValues(com.sun.jna.platform.win32.WinReg.HKEY_LOCAL_MACHINE, "HARDWARE\\DEVICEMAP\\SERIALCOMM");
final List<String> ports = new ArrayList<String>(map.size());
for (Object p : map.values()) {
if (p != null && p.toString().startsWith("COM"))
ports.add(p.toString());
}
return ports.toArray(new String[0]);
}
/**
* Function to test if a given class is currently present
* @param className The desired class name
* @return true, if class found, false otherwise
*/
private static boolean isClassPresent(final String className) {
try {
Class.forName(className);
return true;
} catch (Throwable ex) {
// Class or one of its dependencies is not present...
return false;
}
}
/*
* From the NullDriver.java CommAPI sample.
*/
/**
* @param PortName The name of the port the OS recognizes
* @param PortType CommPortIdentifier.PORT_SERIAL or PORT_PARALLEL
* @return CommPort
* getCommPort() will be called by CommPortIdentifier from its
* openPort() method. PortName is a string that was registered earlier
* using the CommPortIdentifier.addPortName() method. getCommPort()
* returns an object that extends either SerialPort or ParallelPort.
*/
public CommPort getCommPort( String PortName, int PortType )
{
if (debug) System.out.println("RXTXCommDriver:getCommPort("
+PortName+","+PortType+")");
try {
switch (PortType) {
case CommPortIdentifier.PORT_SERIAL:
if(osName.toLowerCase().indexOf("windows") == -1 )
{
return new RXTXPort( PortName );
}
else
{
return new RXTXPort( deviceDirectory + PortName );
}
default:
if (debug)
System.out.println("unknown PortType "+PortType+" passed to RXTXCommDriver.getCommPort()");
}
} catch( PortInUseException e ) {
if (debug)
System.out.println(
"Port "+PortName+" in use by another application");
}
return null;
}