blob: e2238e7cabdabfddec9adeefe903b3ee79c11363 [file] [log] [blame]
// Copyright 2006-2013 The Apache Software Foundation
//
// 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.
package org.apache.tapestry5.internal.services;
import org.apache.tapestry5.func.F;
import org.apache.tapestry5.internal.event.InvalidationEventHubImpl;
import org.apache.tapestry5.internal.util.MultiKey;
import org.apache.tapestry5.ioc.Messages;
import org.apache.tapestry5.ioc.Resource;
import org.apache.tapestry5.ioc.internal.util.CollectionFactory;
import org.apache.tapestry5.ioc.internal.util.URLChangeTracker;
import org.apache.tapestry5.ioc.util.CaseInsensitiveMap;
import org.apache.tapestry5.services.messages.PropertiesFileParser;
import org.apache.tapestry5.services.pageload.ComponentResourceLocator;
import org.apache.tapestry5.services.pageload.ComponentResourceSelector;
import java.util.Collections;
import java.util.List;
import java.util.Map;
/**
* A utility class that encapsulates all the logic for reading properties files and assembling {@link Messages} from
* them, in accordance with extension rules and locale. This represents code that was refactored out of
* {@link ComponentMessagesSourceImpl}. This class can be used as a base class, though the existing code base uses it as
* a utility. Composition trumps inheritance!
* <p/>
* The message catalog for a component is the combination of all appropriate properties files for the component, plus
* any keys inherited form base components and, ultimately, the application global message catalog. At some point we
* should add support for per-library message catalogs.
* <p/>
* Message catalogs are read using the UTF-8 character set. This is tricky in JDK 1.5; we read the file into memory then
* feed that bytestream to Properties.load().
*/
public class MessagesSourceImpl extends InvalidationEventHubImpl implements MessagesSource
{
private final URLChangeTracker tracker;
private final PropertiesFileParser propertiesFileParser;
private final ComponentResourceLocator resourceLocator;
/**
* Keyed on bundle id and ComponentResourceSelector.
*/
private final Map<MultiKey, Messages> messagesByBundleIdAndSelector = CollectionFactory.newConcurrentMap();
/**
* Keyed on bundle id and ComponentResourceSelector, the cooked properties include properties inherited from less
* locale-specific properties files, or inherited from parent bundles.
*/
private final Map<MultiKey, Map<String, String>> cookedProperties = CollectionFactory.newConcurrentMap();
/**
* Raw properties represent just the properties read from a specific properties file, in isolation.
*/
private final Map<Resource, Map<String, String>> rawProperties = CollectionFactory.newConcurrentMap();
private final Map<String, String> emptyMap = Collections.emptyMap();
public MessagesSourceImpl(boolean productionMode, URLChangeTracker tracker,
ComponentResourceLocator resourceLocator, PropertiesFileParser propertiesFileParser)
{
super(productionMode);
this.tracker = tracker;
this.propertiesFileParser = propertiesFileParser;
this.resourceLocator = resourceLocator;
}
public void checkForUpdates()
{
if (tracker != null && tracker.containsChanges())
{
invalidate();
}
}
public void invalidate()
{
messagesByBundleIdAndSelector.clear();
cookedProperties.clear();
rawProperties.clear();
tracker.clear();
fireInvalidationEvent();
}
public Messages getMessages(MessagesBundle bundle, ComponentResourceSelector selector)
{
MultiKey key = new MultiKey(bundle.getId(), selector);
Messages result = messagesByBundleIdAndSelector.get(key);
if (result == null)
{
result = buildMessages(bundle, selector);
messagesByBundleIdAndSelector.put(key, result);
}
return result;
}
private Messages buildMessages(MessagesBundle bundle, ComponentResourceSelector selector)
{
Map<String, String> properties = findBundleProperties(bundle, selector);
return new MapMessages(selector.locale, properties);
}
/**
* Assembles a set of properties appropriate for the bundle in question, and the desired locale. The properties
* reflect the properties of the bundles' parent (if any) for the locale, overalyed with any properties defined for
* this bundle and its locale.
*/
private Map<String, String> findBundleProperties(MessagesBundle bundle, ComponentResourceSelector selector)
{
if (bundle == null)
return emptyMap;
MultiKey key = new MultiKey(bundle.getId(), selector);
Map<String, String> existing = cookedProperties.get(key);
if (existing != null)
return existing;
// What would be cool is if we could maintain a cache of bundle id + locale -->
// Resource. That would optimize quite a bit of this; may need to use an alternative to
// LocalizedNameGenerator.
Resource propertiesResource = bundle.getBaseResource().withExtension("properties");
List<Resource> localizations = resourceLocator.locateMessageCatalog(propertiesResource, selector);
// Localizations are now in least-specific to most-specific order.
Map<String, String> previous = findBundleProperties(bundle.getParent(), selector);
for (Resource localization : F.flow(localizations).reverse())
{
Map<String, String> rawProperties = getRawProperties(localization);
// Woould be nice to write into the cookedProperties cache here,
// but we can't because we don't know the selector part of the MultiKey.
previous = extend(previous, rawProperties);
}
cookedProperties.put(key, previous);
return previous;
}
/**
* Returns a new map consisting of all the properties in previous overlayed with all the properties in
* rawProperties. If rawProperties is empty, returns just the base map.
*/
private Map<String, String> extend(Map<String, String> base, Map<String, String> rawProperties)
{
if (rawProperties.isEmpty())
return base;
// Make a copy of the base Map
Map<String, String> result = new CaseInsensitiveMap<String>(base);
// Add or overwrite properties to the copy
result.putAll(rawProperties);
return result;
}
private Map<String, String> getRawProperties(Resource localization)
{
Map<String, String> result = rawProperties.get(localization);
if (result == null)
{
result = readProperties(localization);
rawProperties.put(localization, result);
}
return result;
}
/**
* Creates and returns a new map that contains properties read from the properties file.
*/
private Map<String, String> readProperties(Resource resource)
{
if (!resource.exists())
return emptyMap;
if (tracker != null)
{
tracker.add(resource.toURL());
}
try
{
return propertiesFileParser.parsePropertiesFile(resource);
} catch (Exception ex)
{
throw new RuntimeException(String.format("Unable to read message catalog from %s: %s", resource, ex), ex);
}
}
}