/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php * * 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 com.android.ide.eclipse.adt.internal.editors.layout; import com.android.ide.eclipse.adt.AndroidConstants; import com.android.ide.eclipse.adt.internal.resources.ResourceType; import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceFile; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceFolder; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager; import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IFileListener; import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IResourceEventListener; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager.IResourceListener; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IMarkerDelta; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResourceDelta; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Map.Entry; /** * Monitor for file changes that could trigger a layout redraw, or a UI update */ public final class LayoutReloadMonitor { // singleton, enforced by private constructor. private final static LayoutReloadMonitor sThis = new LayoutReloadMonitor(); /** * Map of listeners by IProject. */ private final Map<IProject, List<ILayoutReloadListener>> mListenerMap = new HashMap<IProject, List<ILayoutReloadListener>>(); public final static class ChangeFlags { public boolean code = false; public boolean resources = false; public boolean rClass = false; public boolean localeList = false; boolean isAllTrue() { return code && resources && rClass && localeList; } } /** * List of projects having received a resource change. */ private final Map<IProject, ChangeFlags> mProjectFlags = new HashMap<IProject, ChangeFlags>(); /** * Classes which implement this interface provide a method to respond to resource changes * triggering a layout redraw */ public interface ILayoutReloadListener { /** * Sent when the layout needs to be redrawn * @param flags a {@link ChangeFlags} object indicating what type of resource changed. */ void reloadLayout(ChangeFlags flags); } /** * Returns the single instance of {@link LayoutReloadMonitor}. */ public static LayoutReloadMonitor getMonitor() { return sThis; } private LayoutReloadMonitor() { // listen to resource changes. Used for non-layout resource (trigger a redraw), or // any resource folder (trigger a locale list refresh) ResourceManager.getInstance().addListener(mResourceListener); // also listen for .class file changed in case the layout has custom view classes. GlobalProjectMonitor monitor = GlobalProjectMonitor.getMonitor(); monitor.addFileListener(mFileListener, IResourceDelta.ADDED | IResourceDelta.CHANGED | IResourceDelta.REMOVED); monitor.addResourceEventListener(mResourceEventListener); } /** * Adds a listener for a given {@link IProject}. * @param project * @param listener */ public void addListener(IProject project, ILayoutReloadListener listener) { synchronized (mListenerMap) { List<ILayoutReloadListener> list = mListenerMap.get(project); if (list == null) { list = new ArrayList<ILayoutReloadListener>(); mListenerMap.put(project, list); } list.add(listener); } } /** * Removes a listener for a given {@link IProject}. */ public void removeListener(IProject project, ILayoutReloadListener listener) { synchronized (mListenerMap) { List<ILayoutReloadListener> list = mListenerMap.get(project); if (list != null) { list.remove(listener); } } } /** * Removes a listener, no matter which {@link IProject} it was associated with. */ public void removeListener(ILayoutReloadListener listener) { synchronized (mListenerMap) { for (List<ILayoutReloadListener> list : mListenerMap.values()) { Iterator<ILayoutReloadListener> it = list.iterator(); while (it.hasNext()) { ILayoutReloadListener i = it.next(); if (i == listener) { it.remove(); } } } } } /** * Implementation of the {@link IFileListener} as an internal class so that the methods * do not appear in the public API of {@link LayoutReloadMonitor}. */ private IFileListener mFileListener = new IFileListener() { /* * Callback for IFileListener. Called when a file changed. * This records the changes for each project, but does not notify listeners. */ public void fileChanged(IFile file, IMarkerDelta[] markerDeltas, int kind) { // get the file project IProject project = file.getProject(); // if this project has already been marked as modified, we do nothing. ChangeFlags changeFlags = mProjectFlags.get(project); if (changeFlags != null && changeFlags.isAllTrue()) { return; } // here we only care about code change (so change for .class files). // Resource changes is handled by the IResourceListener. if (AndroidConstants.EXT_CLASS.equals(file.getFileExtension())) { if (file.getName().matches("R[\\$\\.](.*)")) { // this is a R change! if (changeFlags == null) { changeFlags = new ChangeFlags(); mProjectFlags.put(project, changeFlags); } changeFlags.rClass = true; } else { // this is a code change! if (changeFlags == null) { changeFlags = new ChangeFlags(); mProjectFlags.put(project, changeFlags); } changeFlags.code = true; } } } }; /** * Implementation of the {@link IResourceEventListener} as an internal class so that the methods * do not appear in the public API of {@link LayoutReloadMonitor}. */ private IResourceEventListener mResourceEventListener = new IResourceEventListener() { /* * Callback for ResourceMonitor.IResourceEventListener. Called at the beginning of a * resource change event. This is called once, while fileChanged can be * called several times. * */ public void resourceChangeEventStart() { // nothing to be done here, it all happens in the resourceChangeEventEnd } /* * Callback for ResourceMonitor.IResourceEventListener. Called at the end of a resource * change event. This is where we notify the listeners. */ public void resourceChangeEventEnd() { // for each IProject that was changed, we notify all the listeners. synchronized (mListenerMap) { for (Entry<IProject, ChangeFlags> project : mProjectFlags.entrySet()) { List<ILayoutReloadListener> listeners = mListenerMap.get(project.getKey()); ChangeFlags flags = project.getValue(); if (listeners != null) { for (ILayoutReloadListener listener : listeners) { listener.reloadLayout(flags); } } } } // empty the list. mProjectFlags.clear(); } }; /** * Implementation of the {@link IResourceListener} as an internal class so that the methods * do not appear in the public API of {@link LayoutReloadMonitor}. */ private IResourceListener mResourceListener = new IResourceListener() { public void folderChanged(IProject project, ResourceFolder folder, int eventType) { // if this project has already been marked as modified, we do nothing. ChangeFlags changeFlags = mProjectFlags.get(project); if (changeFlags != null && changeFlags.isAllTrue()) { return; } // this means a new resource folder was added or removed, which can impact the // locale list. if (changeFlags == null) { changeFlags = new ChangeFlags(); mProjectFlags.put(project, changeFlags); } changeFlags.localeList = true; } public void fileChanged(IProject project, ResourceFile file, int eventType) { // if this project has already been marked as modified, we do nothing. ChangeFlags changeFlags = mProjectFlags.get(project); if (changeFlags != null && changeFlags.isAllTrue()) { return; } // now check that the file is *NOT* a layout file (those automatically trigger a layout // reload and we don't want to do it twice.) ResourceType[] resTypes = file.getResourceTypes(); // it's unclear why but there has been cases of resTypes being empty! if (resTypes.length > 0) { // files that generates > 1 types cannot be layout files. if (resTypes.length > 1 || resTypes[0] != ResourceType.LAYOUT) { // this is a resource change, that may require a layout redraw! if (changeFlags == null) { changeFlags = new ChangeFlags(); mProjectFlags.put(project, changeFlags); } changeFlags.resources = true; } } } }; }