m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pl/edu/mimuw/cloudatlas/agent/ApiImplementation.java
blob: 90e7789d26f910a832bbab9a685523d391abafd9 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
package pl.edu.mimuw.cloudatlas.agent;

import java.io.PrintStream;

import java.rmi.RemoteException;

import java.util.List;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.regex.Pattern;
import java.util.regex.Matcher;


import pl.edu.mimuw.cloudatlas.interpreter.Interpreter;
import pl.edu.mimuw.cloudatlas.interpreter.InterpreterException;
import pl.edu.mimuw.cloudatlas.interpreter.Main;
import pl.edu.mimuw.cloudatlas.interpreter.QueryResult;
import pl.edu.mimuw.cloudatlas.model.Attribute;
import pl.edu.mimuw.cloudatlas.model.AttributesMap;
import pl.edu.mimuw.cloudatlas.model.PathName;
import pl.edu.mimuw.cloudatlas.model.ValueContact;
import pl.edu.mimuw.cloudatlas.model.Value;
import pl.edu.mimuw.cloudatlas.model.ValueQuery;
import pl.edu.mimuw.cloudatlas.model.ValueSet;
import pl.edu.mimuw.cloudatlas.model.ValueNull;
import pl.edu.mimuw.cloudatlas.model.Type;
import pl.edu.mimuw.cloudatlas.model.TypePrimitive;
import pl.edu.mimuw.cloudatlas.model.ZMI;
import pl.edu.mimuw.cloudatlas.api.Api;
import pl.edu.mimuw.cloudatlas.querysigner.QueryData;
import pl.edu.mimuw.cloudatlas.querysigner.QueryUtils;

public class ApiImplementation implements Api {
    ZMI root;
    Set<ValueContact> contacts;

    public ApiImplementation(ZMI root) {
        this.root = root;
        this.contacts = new HashSet<ValueContact>();
    }

    public Set<String> getZoneSet() throws RemoteException {
        Set<String> zones = new HashSet<String>();
        collectZoneNames(root, zones);
        return zones;
    }

    private void collectZoneNames(ZMI zone, Set<String> names) {
        names.add(zone.getPathName().toString());
        for (ZMI son : zone.getSons()) {
            collectZoneNames(son, names);
        }
    }

    public AttributesMap getZoneAttributeValues(String zoneName) throws RemoteException {
        try {
            ZMI zmi = root.findDescendant(new PathName(zoneName));
            return zmi.getAttributes();
        } catch (ZMI.NoSuchZoneException e) {
            throw new RemoteException("Zone not found", e);
        }
    }

    public void installQuery(String name, QueryData query) throws RemoteException {
        QueryUtils.validateQueryName(name);
        try {
            Attribute attributeName = new Attribute(name);
            installQueryInHierarchy(root, attributeName, new ValueQuery(query));
            executeAllQueries(root);
        } catch (Exception e) {
            throw new RemoteException("Failed to install query", e);
        }
    }

    private void installQueryInHierarchy(ZMI zmi, Attribute queryName, ValueQuery query) {
        if (!zmi.getSons().isEmpty()) {
            zmi.getAttributes().addOrChange(queryName, query);
            for (ZMI son : zmi.getSons()) {
                installQueryInHierarchy(son, queryName, query);
            }
        }
    }

    public void uninstallQuery(String queryName, QueryData query) throws RemoteException {
        QueryUtils.validateQueryName(queryName);
        uninstallQueryInHierarchy(root, new Attribute(queryName));
    }

    private void uninstallQueryInHierarchy(ZMI zmi, Attribute queryName) {
        if (!zmi.getSons().isEmpty()) {
            zmi.getAttributes().remove(queryName);
            for (ZMI son : zmi.getSons()) {
                uninstallQueryInHierarchy(son, queryName);
            }
        }
    }

    public void setAttributeValue(String zoneName, String attributeName, Value value) throws RemoteException {
        try {
            ZMI zmi = root.findDescendant(new PathName(zoneName));
            zmi.getAttributes().addOrChange(new Attribute(attributeName), value);
            executeAllQueries(root);
        } catch (ZMI.NoSuchZoneException e) {
            throw new RemoteException("Zone not found", e);
        }
    }

    private void executeAllQueries(ZMI zmi) {
        if(!zmi.getSons().isEmpty()) {
            for(ZMI son : zmi.getSons()) {
                executeAllQueries(son);
            }

            Interpreter interpreter = new Interpreter(zmi);
            for (ValueQuery query : getQueries(zmi)) {
                try {
                    List<QueryResult> result = interpreter.interpretProgram(query.getQuery());
                    for(QueryResult r : result) {
                        zmi.getAttributes().addOrChange(r.getName(), r.getValue());
                    }
                } catch(InterpreterException exception) {}
            }
        }
    }

    private Set<ValueQuery> getQueries(ZMI zmi) {
        Set<ValueQuery> querySet = new HashSet<ValueQuery>();
        for (Map.Entry<Attribute, Value> attribute : zmi.getAttributes()) {
            if (attribute.getValue().getType().getPrimaryType() == Type.PrimaryType.QUERY) {
                querySet.add((ValueQuery) attribute.getValue());
            }
        }

        return querySet;
    }

    public void setFallbackContacts(Set<ValueContact> contacts) throws RemoteException {
        this.contacts = contacts;
    }
}