forked from marcusb/grails-cometd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CometdGrailsPlugin.groovy
132 lines (111 loc) · 4.45 KB
/
CometdGrailsPlugin.groovy
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
/*
* Copyright © 2010 MBTE Sweden AB
*
* Licensed 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.
*/
import grails.util.Environment
import org.codehaus.groovy.grails.commons.ConfigurationHolder
import org.codehaus.groovy.grails.commons.ServiceArtefactHandler
import org.cometd.server.BayeuxServerImpl
import org.cometd.server.CometdServlet
import org.cometd.bayeux.server.BayeuxServer
import grails.plugin.cometd.ServiceCometdProcessor
import org.springframework.web.context.support.ServletContextAttributeExporter
import org.apache.commons.logging.LogFactory
class CometdGrailsPlugin {
static LOG = LogFactory.getLog('grails.plugin.cometd.CometdGrailsPlugin')
def version = "0.2.1"
def grailsVersion = "1.3.1 > *"
def pluginExcludes = [
'grails-app/services/**/test/',
'grails-app/views/error.gsp',
'scripts',
'web-app/'
]
def author = 'Marcus Better'
def authorEmail = 'marcus@better.se'
def title = 'Ajax push support using CometD'
def description = '''\
CometD is a scalable HTTP-based event routing bus that uses a Ajax Push technology pattern known as Comet.
This plugin allows your Grails application to send asynchronous notifications to HTTP clients using
CometD and the Bayeux protocol.
'''
def documentation = "http://www.grails.org/plugin/cometd"
def loadAfter = ['services', 'controllers']
def observe = ['services', 'controllers']
def doWithWebDescriptor = { xml ->
def conf = ConfigurationHolder.config.plugins.cometd
LOG.debug("Initializing with continutationFilter: ${!conf.continuationFilter.disable}")
if (!conf.continuationFilter.disable) {
def filters = xml.'filter'
filters[filters.size() - 1] + {
filter {
'filter-name'('continuation')
'filter-class'('org.eclipse.jetty.continuation.ContinuationFilter')
}
}
def filterMappings = xml.'filter-mapping'
filterMappings[filterMappings.size() - 1] + {
'filter-mapping' {
'filter-name'('continuation')
'servlet-name'('cometd')
}
}
}
def servlets = xml.'servlet'
servlets[servlets.size() - 1] + {
servlet {
'servlet-name'('cometd')
'servlet-class'(CometdServlet.class.name)
// Add servlet init params from the config file
if (conf.init?.params) {
LOG.debug("Initializing with init-params: ${conf.init.params}")
conf.init.params.each { key, value ->
'init-param' {
'param-name'(key)
'param-value'(value)
}
}
}
}
}
def mappings = xml.'servlet-mapping'
mappings[mappings.size() - 1] + {
'servlet-mapping' {
'servlet-name'('cometd')
'url-pattern'('/cometd/*')
}
}
}
def doWithSpring = {
bayeux(BayeuxServerImpl, true) { bean ->
bean.destroyMethod = 'stop'
}
// the CometdServlet will pick up the Bayeux object from the servlet context
bayeuxAttributeExporter(ServletContextAttributeExporter) {
attributes = [(BayeuxServer.ATTRIBUTE): ref('bayeux')]
}
}
def processor = new ServiceCometdProcessor()
def doWithDynamicMethods = { context ->
application.serviceClasses?.each { service ->
processor.process(service.referenceInstance, context)
}
}
def onChange = { event ->
if (application.isServiceClass(event.source)) {
def artefact = application.addArtefact(ServiceArtefactHandler.TYPE, event.source)
processor.process(artefact.referenceInstance, event.ctx)
}
}
}