source: java/main/src/main/java/com/framsticks/params/AccessInterface.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: 1.5 KB
Line 
1package com.framsticks.params;
2
3import java.util.Collection;
4
5import com.framsticks.params.types.ProcedureParam;
6
7
8/**
9 * The Interface AccessInterface. It's the most general class for storing data in
10 * framsticks. In descriptions of methods names "property" and "parameter" are
11 * synonyms.
12 *
13 * @author Jarek Szymczak <name.surname@gmail.com> (please replace name and
14 *         surname with my personal data)
15 */
16public interface AccessInterface {
17
18        Param getParam(int i);
19
20        Param getParam(String id);
21
22        String getId();
23
24        int getParamCount();
25
26        Object call(String id, Object[] arguments);
27
28        Object call(ProcedureParam param, Object[] arguments);
29
30        <T> T get(int i, Class<T> type);
31
32        <T> T get(String id, Class<T> type);
33
34        <T> T get(ValueParam param, Class<T> type);
35
36        <T> int set(int i, T value);
37
38        <T> int set(String id, T value);
39
40        <T> int set(ValueParam param, T value);
41
42        void setDefault(boolean numericOnly);
43
44        void setDefault(int i, boolean numericOnly);
45
46        void setMin();
47
48        void setMin(int i);
49
50        void setMax();
51
52        void setMax(int i);
53
54        void copyFrom(AccessInterface src);
55
56        void save(SinkInterface sink);
57
58        void load(SourceInterface stream) throws Exception;
59
60        /**
61         * Removes all the properties values.
62         */
63        void clearValues();
64
65        AccessInterface select(Object object);
66
67        Object getSelected();
68
69        AccessInterface cloneAccess() throws ConstructionException;
70
71        Object createAccessee();
72
73        Collection<Param> getParams();
74
75        FramsClass getFramsClass();
76
77        void tryAutoAppend(Object object);
78
79
80}
Note: See TracBrowser for help on using the repository browser.