source: java/main/src/main/java/com/framsticks/remote/RecursiveFetcher.java @ 96

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

HIGHLIGHTS:

  • cleanup Instance management
    • extract Instance interface
    • extract Instance common algorithms to InstanceUtils?
  • fix closing issues: Ctrl+C or window close button

properly shutdown whole program

by Java Framsticks framework

  • fix parsing and printing of all request types
  • hide exception passing in special handle method of closures
    • substantially improve readability of closures
    • basically enable use of exception in asynchronous closures

(thrown exception is transported back to the caller)

  • implement call request on both sides

CHANGELOG:
Further improve calling.

Improve instance calling.

Calling is working on both sides.

Improve exception handling in testing.

Waiters do not supercede other apllication exception being thrown.

Finished parsing and printing of all request types (with tests).

Move implementation and tests of request parsing to Request.

Add tests for Requests.

Improve waits in asynchronours tests.

Extract more algorithms to InstanceUtils?.

Extract Instance.resolve to InstanceUtils?.

Improve naming.

Improve passing exception in InstanceClient?.

Hide calling of passed functor in StateCallback?.

Hide Exception passing in asynchronous closures.

Hide exception passing in Future.

Make ResponseCallback? an abstract class.

Make Future an abstract class.

Minor change.

Move getPath to Path.to()

Move bindAccess to InstanceUtils?.

Extract common things to InstanceUtils?.

Fix synchronization bug in Connection.

Move resolve to InstanceUtils?.

Allow names of Joinable to be dynamic.

Add support for set request server side.

More fixes in communication.

Fix issues with parsing in connection.

Cut new line characters when reading.

More improvements.

Migrate closures to FramsticksException?.

Several changes.

Extract resolveAndFetch to InstanceUtils? algorithms.

Test resolving and fetching.

More fixes with function signature deduction.

Do not print default values in SimpleAbstractAccess?.

Add test of FramsClass? printing.

Improve FramsticksException? messages.

Add explicit dispatcher synchronization feature.

Rework assertions in tests.

Previous solution was not generic enough.

Allow addition of joinables to collection after start.

Extract SimulatorInstance? from RemoteInstance?.

Remove PrivateJoinableCollection?.

Improve connections.

Move shutdown hook to inside the Monitor.

It should work in TestNG tests, but it seems that
hooks are not called.

In ServerTest? client connects to testing server.

Move socket initialization to receiver thread.

Add proper closing on Ctrl+C (don't use signals).

Fix bugs with server accepting connections.

Merge Entity into Joinable.

Reworking ServerInstance?.

Extract more algorithm to InstanceUtils?.

Extract some common functionality from AbstractInstance?.

Functions were placed in InstanceUtils?.

Hide registry of Instance.

Use ValueParam? in Instance interface.

Minor change.

Extract Instance interface.

Old Instance is now AbstractInstance?.

File size: 2.7 KB
Line 
1package com.framsticks.remote;
2
3import static com.framsticks.core.InstanceUtils.*;
4import com.framsticks.core.Node;
5import com.framsticks.core.Path;
6import com.framsticks.params.AccessInterface;
7import com.framsticks.params.CompositeParam;
8import com.framsticks.params.FramsClass;
9import com.framsticks.core.Instance;
10import com.framsticks.util.dispatching.Future;
11import com.framsticks.util.FramsticksException;
12import com.framsticks.util.Logging;
13import com.framsticks.util.StateFunctor;
14import com.framsticks.util.Stopwatch;
15import org.apache.log4j.Logger;
16import static com.framsticks.util.lang.Containers.filterInstanceof;
17import com.framsticks.util.dispatching.RunAt;
18
19/**
20 * @author Piotr Sniegowski
21 */
22public class RecursiveFetcher {
23
24        private final static Logger log = Logger.getLogger(RecursiveFetcher.class.getName());
25
26        protected final Instance instance;
27        protected final StateFunctor stateFunctor;
28        protected int dispatched;
29        protected final Stopwatch stopwatch = new Stopwatch();
30
31        public RecursiveFetcher(Instance instance, final Path path, StateFunctor stateFunctor) {
32                this.instance = instance;
33                this.stateFunctor = stateFunctor;
34                dispatched = 1;
35                process(path);
36        }
37
38        protected void finished() {
39                assert instance.isActive();
40                log.info("recursively fetched in " + stopwatch);
41                stateFunctor.call();
42        }
43
44        protected void process(final Path path) {
45                assert instance.isActive();
46                if (path == null || !path.isResolved()) {
47                        log.warn("path " + path + " is not resolved - skipping");
48                } else {
49                        AccessInterface access = bindAccess(path);
50                        FramsClass framsClass = access.getFramsClass();
51                        assert framsClass != null;
52                        for (CompositeParam p : filterInstanceof(access.getParams(), CompositeParam.class)) {
53                                Object child = access.get(p, Object.class);
54                                final Path childPath = path.appendNode(new Node(p, child));
55                                if (childPath.isResolved() && getInfoFromCache(childPath) != null) {
56                                        ++dispatched;
57                                        instance.dispatch(new RunAt<Instance>() {
58                                                @Override
59                                                public void run() {
60                                                        fetch(childPath);
61                                                }
62                                        });
63                                        continue;
64                                }
65                                ++dispatched;
66                                instance.resolve(childPath, new Future<Path>(Logging.logger(log, "resolve", RecursiveFetcher.this)) {
67                                        @Override
68                                        protected void result(Path result) {
69                                                assert instance.isActive();
70                                                fetch(result);
71                                        }
72                                });
73                        }
74                }
75                --dispatched;
76                if (dispatched == 0) {
77                        finished();
78                }
79        }
80
81        protected void fetch(final Path path) {
82                instance.fetchValues(path, new StateFunctor() {
83                        @Override
84                        public void handle(FramsticksException e) {
85                                log.error("failed to fetch values for " + path + ": " + e);
86                                process(null);
87                        }
88
89                        @Override
90                        public void call() {
91                                process(path);
92                        }
93                });
94        }
95
96}
Note: See TracBrowser for help on using the repository browser.