forked from gpc/searchable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SearchableGrailsPlugin.groovy
249 lines (227 loc) · 11.8 KB
/
SearchableGrailsPlugin.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
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
/*
* Copyright 2007 the original author or authors.
*
* 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.plugin.searchable.internal.compass.*
import grails.plugin.searchable.internal.compass.domain.DynamicDomainMethodUtils
import grails.plugin.searchable.internal.compass.mapping.*
import grails.plugin.searchable.internal.compass.spring.*
import grails.util.GrailsUtil
import org.apache.commons.logging.LogFactory
import org.codehaus.groovy.grails.commons.GrailsApplication
import org.compass.gps.device.hibernate.HibernateGpsDevice
import org.compass.gps.impl.SingleCompassGps
import org.springframework.context.ApplicationContext
import org.springframework.core.JdkVersion
/**
* @author Maurice Nicholson
*/
class SearchableGrailsPlugin {
static LOG = LogFactory.getLog("grails.plugin.searchable.SearchableGrailsPlugin")
def version = "0.6-SNAPSHOT"
def author = 'Maurice Nicholson'
def authorEmail = '[email protected]'
def title = 'Adds rich search functionality to Grails domain models. This version is recommended for JDK 1.5+'
def description = '''
Adds rich search functionality to Grails domain models.
Built on Compass (http://www.compass-project.org/) and Lucene (http://lucene.apache.org/)
This version is recommended for JDK 1.5+
'''
def documentation = 'http://grails.org/Searchable+Plugin'
def grailsVersion = "1.0 > *"
def dependsOn = [dataSource: "1.0 > *",
domainClass: "1.0 > *",
i18n: "1.0 > *",
core: "1.0 > *",
hibernate: "1.0 > *"]
// def watchedResources = "file:./grails-app/doai/*Codec.groovy"
def loadAfter = ["autobase", "liquibase", "databaseMigration"]
def config
def doWithDynamicMethods = { applicationContext ->
def compass = applicationContext.getBean("compass")
def searchableMethodFactory = applicationContext.getBean("searchableMethodFactory")
DynamicDomainMethodUtils.attachDynamicMethods(searchableMethodFactory, application.domainClasses, compass)
}
// Build Compass and Compass::GPS
def doWithSpring = {
if (!JdkVersion.isAtLeastJava15()) {
LOG.error("This version of the Searchable Plugin is only compatible with JDK 1.5+. See the documentation at ${documentation} for the JDK 1.4 alternative")
System.out.println("ERROR: This version of the Searchable Plugin is only compatible with JDK 1.5+. See the documentation at ${documentation} for the JDK 1.4 alternative")
}
// Configuration
config = getConfiguration(parentCtx, application)
// Compass
LOG.debug("Defining Compass and Compass::GPS beans")
def defaultConnection = getDefaultCompassConnection(application)
compass(DefaultSearchableCompassFactoryBean) { bean ->
grailsApplication = application
compassConnection = config.compassConnection ?: defaultConnection
compassSettings = config.compassSettings instanceof ConfigObject ? config.compassSettings.toProperties() : config.compassSettings
defaultExcludedProperties = config.defaultExcludedProperties ?: ["password"]
defaultFormats = config.defaultFormats instanceof ConfigObject ? config.defaultFormats.toProperties() : config.defaultFormats
compassClassMappingXmlBuilder = new DefaultSearchableCompassClassMappingXmlBuilder()
}
// Compass::GPS
// lifecycleInjector(org.compass.gps.device.hibernate.lifecycle.DefaultHibernateEntityCollectionLifecycleInjector, true) {}
// compassGpsDevice(SpringHibernate3GpsDevice) {
compassGpsDevice(HibernateGpsDevice) { bean ->
bean.destroyMethod = "stop"
name = "hibernate"
sessionFactory = ref("sessionFactory")
fetchCount = config.fetchCount ?: 5000
// lifecycleInjector = lifecycleInjector
}
compassGps(SingleCompassGps) {
compass = compass
gpsDevices = [compassGpsDevice]
}
def defaultMethodOptions = config.defaultMethodOptions
if (!defaultMethodOptions && config.defaultSearchOptions) {
LOG.warn(
"The Searchable Plugin \"defaultSearchOptions\" configuration option is deprecated and " +
"will be removed in the next version. Upgrade the Searchable plugin configuration to the latest format " +
"and use \"defaultMethodOptions\" instead"
)
System.out.println("WARN: " +
"The Searchable Plugin \"defaultSearchOptions\" configuration option is deprecated and " +
"will be removed in the next version. Upgrade the Searchable plugin configuration to the latest format " +
"and use \"defaultMethodOptions\" instead"
)
defaultMethodOptions = [search: config.defaultSearchOptions]
}
searchableMethodFactory(DefaultSearchableMethodFactory) {
compass = compass
compassGps = compassGps
defaultMethodOptions = defaultMethodOptions
grailsApplication = application
}
LOG.debug("Done defining Compass and Compass::GPS beans")
}
// Post initialization spring config
def doWithApplicationContext = {
def compass = applicationContext.getBean("compass")
if (!SearchableCompassUtils.hasMappings(compass)) {
return false
}
// release locks? Defaults to true.
if (compass.searchEngineIndexManager.isLocked()) {
if (config.releaseLocksOnStartup != false) {
compass.searchEngineIndexManager.releaseLocks()
LOG.warn("The index was forcefully unlocked. The index is probably out of sync and needs re-building")
}
}
// start the gps, mirroring any changes made through Hibernate API
// to be mirrored to the search engine - defaults to true.
def mirrorChanges = config.mirrorChanges != false
def compassGps = applicationContext.getBean("compassGps")
if (mirrorChanges) {
compassGps.start()
LOG.debug("Started Compass::GPS")
}
// index the database on startup?
def bulkIndex = !(config.bulkIndexOnStartup in [false, "fork"])
def forkBulkIndex = config.bulkIndexOnStartup in ["fork"]
if (bulkIndex) {
CompassGpsUtils.index(compassGps, null)
} else if (forkBulkIndex) {
Thread.start {
CompassGpsUtils.index(compassGps, null)
}
} else {
LOG.debug("Not performing bulk index")
}
}
/* def doWithWebDescriptor = {
// TODO Implement additions to web.xml (optional)
}*/
/* def onChange = { event ->
LOG.debug("onChange called")
// TODO Implement code that is executed when this class plugin class is changed
// the event contains: event.application and event.applicationContext objects
}*/
/* def onApplicationChange = { event ->
LOG.debug("onApplicationChange called")
// TODO Implement code that is executed when any class in a GrailsApplication changes
// the event contain: event.source, event.application and event.applicationContext objects
// TODO destroy and rebuild Compass and Compass::GPS
}*/
// Get a configuration instance
private getConfiguration(ApplicationContext applicationContext, GrailsApplication application) {
// Try to load Searchable.groovy from the current project and
// merge into the main config.
def config = application.config
try {
Class configClass = application.getClassLoader().loadClass("Searchable")
ConfigSlurper configSlurper = new ConfigSlurper(GrailsUtil.getEnvironment())
Map binding = new HashMap()
binding.userHome = System.properties['user.home']
binding.grailsEnv = application.metadata["grails.env"]
binding.appName = application.metadata["app.name"]
binding.appVersion = application.metadata["app.version"]
configSlurper.binding = binding
config.merge(configSlurper.parse(configClass))
} catch (ClassNotFoundException e) {
LOG.debug("Not found: ${e.message}")
}
// If 'searchable' is in the config, return it.
if (config.searchable) {
return config.searchable
}
// try to load from Spring context bean
if (applicationContext.containsBean("searchableConfig")) {
def searchableConfig = applicationContext.getBean("searchableConfig")
if (searchableConfig instanceof ConfigObject) {
config.merge(searchableConfig)
} else if (searchableConfig instanceof Map) {
def tmp = new ConfigObject()
tmp.putAll(searchableConfig)
config.merge(tmp)
} else {
throw new IllegalArgumentException("The 'searchableConfig' Spring bean must be a Map or ConfigObject instance but is: ${searchableConfig?.getClass()}")
}
return config.searchable
}
// try to load it from the previous config file
try {
LOG.debug("Trying to load config from 'SearchableConfiguration.class'")
def obj = Class.forName('SearchableConfiguration', true, Thread.currentThread().contextClassLoader).newInstance()
LOG.warn(
"The Searchable Plugin's 'SearchableConfiguration.groovy' file is deprecated and will be removed in the next version! " +
"Configuration for the Searchable Plugin should now be defined with the standard Grails config mechanism. " +
"You can either (1) add the plugin's config properties to \"grails-app/conf/Config.groovy\", or (2) provide a plugin-specific file " +
"called \"grails-app/conf/Searchable.groovy\". " +
"Run \"grails install-searchable-config\" to try the second option without affecting your existing configuration, " +
"but you will need to merge your own settings into the new configuration file."
)
System.out.println("WARN: " +
"The Searchable Plugin's 'SearchableConfiguration.groovy' file is deprecated and will be removed in the next version! " +
"Configuration for the Searchable Plugin should now be defined with the standard Grails config mechanism. " +
"You can either (1) add the plugin's config properties to \"grails-app/conf/Config.groovy\", or (2) provide a plugin-specific file " +
"called \"grails-app/conf/Searchable.groovy\". " +
"Run \"grails install-searchable-config\" to try the second option without affecting your existing configuration, " +
"but you will need to merge your own settings into the new configuration file."
)
return obj.properties
} catch (ClassNotFoundException e) {
LOG.debug("Not found: ${e.message}")
return [:]
}
}
private getDefaultCompassConnection(application) {
def appName = application.metadata["app.name"]
def userHome = System.properties['user.home']
def grailsEnv = GrailsUtil.getEnvironment()
return new File("${userHome}/.grails/projects/${appName}/searchable-index/${grailsEnv}").absolutePath
}
}