summaryrefslogtreecommitdiffstats
path: root/simple/simple-transport/src/main/java/org/simpleframework/transport/Channel.java
blob: 02e6cbd06cdbfbdbfa05043c5bd2f9de719cc588 (plain)
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
/*
 * Channel.java February 2007
 *
 * Copyright (C) 2007, Niall Gallagher <niallg@users.sf.net>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
 * implied. See the License for the specific language governing 
 * permissions and limitations under the License.
 */

package org.simpleframework.transport;

import java.nio.channels.SocketChannel;
import java.util.Map;

import org.simpleframework.transport.trace.Trace;

/**
 * The <code>Channel</code> interface represents a connected channel
 * through which data can be sent and received. Typically a channel
 * will have a connected TCP socket, which can be used to determine
 * when the channel is read ready, and write ready. A channel can
 * also contain a bag of attributes used to describe the connection.
 * <p>
 * Reading and writing to a channel is performed using two special
 * interfaces. The first is the <code>ByteCursor</code> object which 
 * is used to read data from the channel in a non-blocking manner. 
 * This can also be used to reset data if it has read too much. To 
 * write the <code>ByteWriter</code> can be used, this provides a 
 * blocking interface much like a conventional output stream.
 *
 * @author Niall Gallagher
 */ 
public interface Channel {
   
   /**
    * This is used to determine if the channel is secure and that
    * data read from and data written to the request is encrypted.
    * Channels transferred over SSL are considered secure and will
    * have this return true, otherwise it will return false.
    * 
    * @return true if this is secure for reading and writing
    */
   boolean isSecure();
   
   /**
    * This is the connected socket channel associated with this. In
    * order to determine if content can be read or written to or
    * from the channel this socket can be used with a selector. This
    * provides a means to react to I/O events as they occur rather
    * than polling the channel which is generally less performant.
    *
    * @return this returns the connected socket channel
    */ 
   SocketChannel getSocket();
   
   /**
    * This is used to acquire the SSL certificate used for security. 
    * If the socket is connected to an SSL transport this returns an 
    * SSL certificate which was provided during the secure handshake
    * between the client and server. If not certificates are present
    * in the provided instance, a challenge can be issued.
    *  
    * @return the SSL certificate provided by a secure transport
    */
   Certificate getCertificate();
 
   /**
    * This gets the <code>Trace</code> object associated with the
    * channel. The trace is used to log various events for the life
    * of the transaction such as low level read and write events
    * as well as milestone events and errors.
    * 
    * @return this returns the trace associated with the socket
    */
   Trace getTrace();
   
   /**
    * This provides a <code>ByteCursor</code> for this channel. The
    * cursor provides a seekable view of the input buffer and will
    * allow the server kernel to peek into the input buffer without
    * having to take the data from the input. This allows overflow
    * to be pushed back on to the cursor for subsequent reads.
    *
    * @return this returns the input cursor for the channel
    */   
   ByteCursor getCursor();
  
   /**
    * This provides a <code>ByteWriter</code> for the channel. This 
    * is used to provide a blocking output mechanism for the channel.
    * Enabling blocking reads ensures that output buffering can be
    * limited to an extent, which ensures that memory remains low at
    * high load periods. Writes to the sender may result in the data
    * being copied and queued until the socket is write ready.
    *
    * @return this returns the output sender for this channel
    */  
   ByteWriter getWriter();
 
   /**
    * This returns the <code>Map</code> of attributes used to hold
    * connection information for the channel. The attributes here 
    * are taken from the pipeline attributes and may contain details
    * such as SSL certificates or other such useful information.
    *
    * @return returns the attributes associated with the channel
    */   
   Map getAttributes();   
   
   /**
    * Because the channel represents a duplex means of communication
    * there needs to be a means to close it down. This provides such
    * a means. By closing the channel the cursor and sender will no
    * longer send or recieve data to or from the network. The client
    * will also be signaled that the connection has been severed.
    */  
   void close();
   
}