blob: f50cdef98068dcc258cf9f8118df6294ef74f8fd [file] [log] [blame]
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.hardware;
18
19import android.os.ParcelFileDescriptor;
20import android.util.Log;
21
22import java.io.FileDescriptor;
23import java.io.FileInputStream;
24import java.io.FileOutputStream;
25import java.io.InputStream;
26import java.io.IOException;
27import java.io.OutputStream;
28
29import java.nio.ByteBuffer;
30
31/**
32 * @hide
33 */
34public class SerialPort {
35
36 private static final String TAG = "SerialPort";
37
38 // used by the JNI code
39 private int mNativeContext;
40 private final String mName;
41 private ParcelFileDescriptor mFileDescriptor;
42
43 /**
44 * SerialPort should only be instantiated by SerialManager
45 * @hide
46 */
47 public SerialPort(String name) {
48 mName = name;
49 }
50
51 /**
52 * SerialPort should only be instantiated by SerialManager
53 * Speed must be one of 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600,
54 * 19200, 38400, 57600, 115200, 230400, 460800, 500000, 576000, 921600, 1000000, 1152000,
55 * 1500000, 2000000, 2500000, 3000000, 3500000, 4000000
56 *
57 * @hide
58 */
59 public void open(ParcelFileDescriptor pfd, int speed) throws IOException {
60 native_open(pfd.getFileDescriptor(), speed);
61 mFileDescriptor = pfd;
62 }
63
64 /**
65 * Closes the serial port
66 */
67 public void close() throws IOException {
68 if (mFileDescriptor != null) {
69 mFileDescriptor.close();
70 mFileDescriptor = null;
71 }
72 native_close();
73 }
74
75 /**
76 * Returns the name of the serial port
77 *
78 * @return the serial port's name
79 */
80 public String getName() {
81 return mName;
82 }
83
84 /**
Glenn Kastencfde15d2012-11-08 09:04:43 -080085 * Reads data into the provided buffer.
86 * Note that the value returned by {@link java.nio.Buffer#position()} on this buffer is
87 * unchanged after a call to this method.
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -040088 *
89 * @param buffer to read into
90 * @return number of bytes read
91 */
92 public int read(ByteBuffer buffer) throws IOException {
93 if (buffer.isDirect()) {
94 return native_read_direct(buffer, buffer.remaining());
95 } else if (buffer.hasArray()) {
96 return native_read_array(buffer.array(), buffer.remaining());
97 } else {
98 throw new IllegalArgumentException("buffer is not direct and has no array");
99 }
100 }
101
102 /**
Glenn Kastencfde15d2012-11-08 09:04:43 -0800103 * Writes data from provided buffer.
104 * Note that the value returned by {@link java.nio.Buffer#position()} on this buffer is
105 * unchanged after a call to this method.
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400106 *
107 * @param buffer to write
108 * @param length number of bytes to write
109 */
110 public void write(ByteBuffer buffer, int length) throws IOException {
111 if (buffer.isDirect()) {
112 native_write_direct(buffer, length);
113 } else if (buffer.hasArray()) {
114 native_write_array(buffer.array(), length);
115 } else {
116 throw new IllegalArgumentException("buffer is not direct and has no array");
117 }
118 }
119
Mike Lockwood7dbc4b42011-09-23 11:43:42 -0400120 /**
121 * Sends a stream of zero valued bits for 0.25 to 0.5 seconds
122 */
123 public void sendBreak() {
124 native_send_break();
125 }
126
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400127 private native void native_open(FileDescriptor pfd, int speed) throws IOException;
128 private native void native_close();
129 private native int native_read_array(byte[] buffer, int length) throws IOException;
130 private native int native_read_direct(ByteBuffer buffer, int length) throws IOException;
131 private native void native_write_array(byte[] buffer, int length) throws IOException;
132 private native void native_write_direct(ByteBuffer buffer, int length) throws IOException;
Mike Lockwood7dbc4b42011-09-23 11:43:42 -0400133 private native void native_send_break();
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -0400134}