source: java/main/src/main/java/com/framsticks/communication/ServerSideManagedConnection.java @ 105

Last change on this file since 105 was 105, checked in by psniegowski, 11 years ago

HIGHLIGHTS:

  • import refactorization: move Tree, Path, etc.

from core to structure package

  • initial serialization implementation
  • improve PrimeExperiment? test
  • many organizational changes and convenience improvements

CHANGELOG:
Make registry in AbstractTree? final.

Move most classes from core to structure package.

Minor changes.

Switch names of Future and FutureHandler?.

Rename ExceptionResultHandler? to ExceptionHandler?.

Rename ExceptionHandler? to ExceptionDispatcherHandler?.

Fix bug in ParamCandidate? cache.

Add missing synchronization to the BufferedDispatcher?.

Develop @Serialized support.

Rework serialization further.

Add serialization/deserialization interface to ValueParam?.

Move getStorageType and isNumeric from Param down to params hierarchy.

Minor changes.

Improve param type induction.

Add TestSerializedClass? for testing new serialization.

Add info files gor GenePool? and Population.

Add standard.expt exemplary netfile.

Add type name field to PropertiesObject?.

Use PropertiesObject? for PropertiesAccess? instead of ordinary map.

Hide getFramsClass is several more places.

More unification accross FramsClass?, Access and Path.

Add ParamCollection?.

Simplify interface for getting params from FramsClass?, Access
or Path.

Make Access.call() interface variadic.

Add arguments(args) convenience wrapper around new Object[] {args}.

Upgrade to apache.commons.lang version 3.1

Minor improvement with Response constructors.

Develop proper result printing in ClientAtServer?.

Add experimentNetsave to PrimeExperiment?.

File size: 3.5 KB
Line 
1package com.framsticks.communication;
2
3import com.framsticks.communication.queries.*;
4import com.framsticks.util.FramsticksException;
5import com.framsticks.util.lang.Holder;
6import com.framsticks.util.lang.Pair;
7import com.framsticks.util.lang.Strings;
8
9import org.apache.logging.log4j.Logger;
10import org.apache.logging.log4j.LogManager;
11
12import java.net.Socket;
13import com.framsticks.util.dispatching.RunAt;
14
15/**
16 * @author Piotr Sniegowski
17 */
18public class ServerSideManagedConnection extends ManagedConnection {
19
20        private final static Logger log = LogManager.getLogger(ServerSideManagedConnection.class);
21
22        protected final RequestHandler requestHandler;
23
24        public ServerSideManagedConnection(Socket socket, RequestHandler requestHandler) {
25                setAddress(new Address(socket.getInetAddress().getHostAddress(), socket.getPort()));
26                setDescription("server connection");
27                this.socket = socket;
28                this.requestHandler = requestHandler;
29                // socket.setSoTimeout(500);
30                setupStreams();
31        }
32
33
34
35        @Override
36        protected void receiverThreadRoutine() {
37
38                processInputBatchesUntilClosed();
39        }
40
41        protected void handleRequest(Request request, ServerSideResponseFuture responseCallback) {
42                if (request instanceof ApplicationRequest) {
43                        requestHandler.handle((ApplicationRequest) request, responseCallback);
44                        return;
45                }
46                if (request instanceof ProtocolRequest) {
47                        if (request instanceof VersionRequest) {
48                                responseCallback.pass(new Response(true, null));
49                                return;
50                        }
51                        if (request instanceof UseRequest) {
52                                String feature = ((UseRequest)request).getFeature();
53                                if (feature.equals("request_id")) {
54                                        requestIdEnabled = true;
55                                        responseCallback.pass(new Response(true, null));
56                                        return;
57                                }
58                                if (feature.equals("call_empty_result")) {
59                                        responseCallback.pass(new Response(true, null));
60                                        return;
61                                }
62                                if (feature.equals("needfile_id")) {
63                                        responseCallback.pass(new Response(true, null));
64                                        return;
65                                }
66                                responseCallback.pass(new Response(false, "unknown feature: " + feature));
67                                return;
68                        }
69
70                }
71                log.error("unhandled request: {}", request);
72                responseCallback.pass(new Response(false, "unhandled"));
73        }
74
75
76
77        protected final void respond(final Response response, final Integer id) {
78                senderThread.dispatch(new RunAt<Connection>(requestHandler) {
79                        @Override
80                        protected void runAt() {
81                                if (response.getFiles() != null) {
82                                        for (File f : response.getFiles()) {
83                                                putFile(f, id);
84                                        }
85                                }
86                                StringBuilder statusLine = new StringBuilder();
87                                statusLine.append(response.getOk() ? "ok" : "error").append(idToString(id));
88                                if (Strings.notEmpty(response.getComment())) {
89                                        Request.quoteValue(statusLine.append(" "), response.getComment());
90                                }
91                                putLine(statusLine.toString());
92                                flushOut();
93                        }
94                });
95
96        }
97
98
99        protected void processNextInputBatch() {
100                final Holder<Integer> id = new Holder<>();
101                final String line = getLine();
102                try {
103                        Pair<CharSequence, CharSequence> command = Request.takeIdentifier(line);
104                        final Pair<Integer, CharSequence> rest = takeRequestId(command.second);
105                        id.set(rest.first);
106
107                        final Request request = Request.parse(command.first, rest.second);
108
109                        if (log.isTraceEnabled()) {
110                                log.trace("read request: {}", request);
111                        }
112
113                        handleRequest(request, new ServerSideResponseFuture() {
114                                @Override
115                                protected void result(Response response) {
116                                        respond(response, rest.first);
117                                }
118                        });
119                } catch (FramsticksException e) {
120                        e.arg("id", id.get()).arg("line", line);
121                        log.error("error: ", e);
122                        respond(new Response(false, "invalid input: " + e.getMsg()), id.get());
123                        return;
124                }
125
126        }
127}
Note: See TracBrowser for help on using the repository browser.