summaryrefslogtreecommitdiffstats
path: root/sandbox/sebastien/java/sca-node/distribution/webapp/src/main/java/org/apache/tuscany/sca/webapp/WarContextListener.java
blob: e46cadfa3dce6ef2711d4602dd709ded61ca7954 (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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.tuscany.sca.webapp;

import java.io.File;
import java.io.FilenameFilter;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

import org.apache.tuscany.sca.domain.SCADomain;
import org.apache.tuscany.sca.node.NodeException;
import org.apache.tuscany.sca.node.SCANode;
import org.apache.tuscany.sca.node.SCANodeFactory;

/**
 * A ServletContextListener for the Tuscany WAR distribution.
 * 
 * Starts and stops a Tuscany SCA domain Node for the webapp. 
 */
public class WarContextListener implements ServletContextListener {
    private final static Logger logger = Logger.getLogger(WarContextListener.class.getName());

    protected SCANode node;
    protected SCADomain domain;
    protected AddableURLClassLoader classLoader;
    protected File repository;

    protected boolean useHotUpdate;
    protected long hotDeployInterval = 2000; // 2 seconds, 0 = no hot deploy
    protected Thread hotDeployThread;
    protected boolean stopHotDeployThread;

    protected HashMap<URL, Long> existingContributions; // value is last modified time

    private String domainName;
    private String nodeName;

    protected static final String NODE_ATTRIBUTE = WarContextListener.class.getName() + ".TuscanyNode";
    protected static final String REPOSITORY_FOLDER_NAME = "sca-contributions";

    public void contextInitialized(ServletContextEvent event) {
        ServletContext servletContext = event.getServletContext();
        initParameters(servletContext);
        try {

            initNode();
        
        } catch (Throwable e) {
            e.printStackTrace();
            servletContext.log("exception initializing SCA node", e);
        }
    }

    public void contextDestroyed(ServletContextEvent event) {
        if (node != null) {
            stopNode();
        }
    }

    protected void stopNode() {
        try {

            node.stop();
            logger.log(Level.INFO, "SCA node stopped");

        } catch (Throwable e) {
            e.printStackTrace();
            logger.log(Level.SEVERE, "exception stopping SCA Node", e);
        }
    }

    protected void initNode() throws NodeException, URISyntaxException {
        logger.log(Level.INFO, "SCA node starting");
        
        classLoader = new AddableURLClassLoader(new URL[] {}, Thread.currentThread().getContextClassLoader());
        Thread.currentThread().setContextClassLoader(classLoader);
        
        SCANodeFactory nodeFactory = SCANodeFactory.newInstance();
        node = nodeFactory.createSCANode(nodeName, domainName);
        domain = node.getDomain();

        existingContributions = new HashMap<URL, Long>();
        URL[] contributions = getContributionJarURLs(repository);
        for (URL contribution : contributions) {
                addContribution(contribution);
        }
        
        node.start();

        initHotDeploy(repository);
    }

    protected void addContribution(URL contribution) throws URISyntaxException, NodeException {
        classLoader.addURL(contribution);
        node.addContribution(contribution.toString(), contribution);
        existingContributions.put(contribution, new Long(new File(contribution.toURI()).lastModified()));
        logger.log(Level.INFO, "Added contribution: " + contribution);
    }

    protected URL[] getContributionJarURLs(File repositoryDir) {

        String[] jarNames = repositoryDir.list(new FilenameFilter() {
            public boolean accept(File dir, String name) {
                return name.endsWith(".jar");
            }});

        List<URL> contributionJars = new ArrayList<URL>();
        if (jarNames != null) {
            for (String jar : jarNames) {
                try {
                    contributionJars.add(new File(repositoryDir, jar).toURL());
                } catch (MalformedURLException e) {
                    throw new RuntimeException(e);
                }
            }
        }

        return contributionJars.toArray(new URL[contributionJars.size()]);
    }

    private void initHotDeploy(final File repository) {

        if (hotDeployInterval == 0) {
            return; // hotUpdateInterval of 0 disables hotupdate
        }

        Runnable runable = new Runnable() {

            public void run() {
                logger.info("Contribution hot deploy activated");
                while (!stopHotDeployThread) {
                    try {
                        Thread.sleep(hotDeployInterval);
                    } catch (InterruptedException e) {
                    }
                    if (!stopHotDeployThread) {
                        checkForUpdates(repository);
                    }
                }
                logger.info("Tuscany contribution hot deploy stopped");
            }
        };
        hotDeployThread = new Thread(runable, "TuscanyHotDeploy");
        stopHotDeployThread = false;
        hotDeployThread.start();
    }

    protected void checkForUpdates(File repository) {
        URL[] currentContributions = getContributionJarURLs(repository);

        List<URL> addedContributions = getAddedContributions(currentContributions);
        for (URL contribution : addedContributions) {
            try {
                addContribution(contribution);
  //              node.startContribution(contribution.toString());
            } catch (Throwable e) {
                e.printStackTrace();
                logger.log(Level.WARNING, "Exception adding contribution: " + e);
            }
        }
        if (addedContributions.size() > 0) {
            try {
                node.start();
            } catch (NodeException e) {
                e.printStackTrace();
                logger.log(Level.WARNING, "Exception restarting node for added contributions: " + e);
            }
        }
        
        if (useHotUpdate && areContributionsAltered(currentContributions)) {
            stopNode();
            try {
                initNode();
            } catch (Throwable e) {
                e.printStackTrace();
                logger.log(Level.SEVERE, "exception starting SCA Node", e);
            }
        }
    }

    protected List<URL> getAddedContributions(URL[] currentContrabutions) {
        List<URL> urls = new ArrayList<URL>();
        for (URL url : currentContrabutions) {
            if (!existingContributions.containsKey(url)) {
                urls.add(url);
            }
        }
        return urls;
    }

    protected boolean areContributionsAltered(URL[] currentContrabutions) {
        try {
            
            List removedContributions = getRemovedContributions(currentContrabutions);
            List updatedContributions = getUpdatedContributions(currentContrabutions);
            
            return (removedContributions.size() > 0 || updatedContributions.size() > 0);

        } catch (URISyntaxException e) {
            throw new RuntimeException(e);
        }
    }

    protected List<URL> getUpdatedContributions(URL[] currentContrabutions) throws URISyntaxException {
        List<URL> urls = new ArrayList<URL>();
        for (URL url : currentContrabutions) {
            if (existingContributions.containsKey(url)) {
                File curentFile = new File(url.toURI());
                if (curentFile.lastModified() != existingContributions.get(url)) {
                    urls.add(url);
                    logger.info("updated contribution: " + curentFile.getName());
                }
            }
        }
        return urls;
    }

    protected List getRemovedContributions(URL[] currentContrabutions) throws URISyntaxException {
        List<URL> currentUrls = Arrays.asList(currentContrabutions);
        List<URL> urls = new ArrayList<URL>();
        for (URL url : existingContributions.keySet()) {
            if (!currentUrls.contains(url)) {
                urls.add(url);
            }
        }
        for (URL url : urls) {
            logger.info("removed contributions: " + new File(url.toURI()).getName());
        }
        return urls;
    }

    protected void initParameters(ServletContext servletContext) {
        if (servletContext.getInitParameter("domainName") != null) {
            domainName = servletContext.getInitParameter("domainName");
        } else {
            domainName = null;
        }

        if (servletContext.getInitParameter("nodeName") != null) {
            nodeName = servletContext.getInitParameter("nodeName");
        } else {
            nodeName = "DefaultNode";
        }

        if (servletContext.getInitParameter("hotDeployInterval") != null) {
            hotDeployInterval = Long.parseLong(servletContext.getInitParameter("hotDeployInterval"));
        }

        useHotUpdate = Boolean.valueOf(servletContext.getInitParameter("hotUpdate")).booleanValue();

        if (servletContext.getInitParameter("repositoryFolder") != null) {
            repository = new File(servletContext.getInitParameter("repositoryFolder"));
        } else {
            repository = new File(servletContext.getRealPath(REPOSITORY_FOLDER_NAME));
        }
        logger.info("Tuscany Contribution Repository -> " + repository);
    }

}

class AddableURLClassLoader extends URLClassLoader {

    public AddableURLClassLoader(URL[] urls, ClassLoader parent) {
        super(urls, parent);
    }
    
    /**
     * Make URLClassLoader addURL public 
     */
    @Override
    public void addURL(URL url) {
        super.addURL(url);
    }
    
}