⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osgiplatformabstraction.java

📁 Introduction to Sybase IQ.pdf
💻 JAVA
字号:
/* Copyright (c) 2005-2008 Jan S. Rellermeyer * Systems Group, * Department of Computer Science, ETH Zurich. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: *    - Redistributions of source code must retain the above copyright notice, *      this list of conditions and the following disclaimer. *    - Redistributions in binary form must reproduce the above copyright *      notice, this list of conditions and the following disclaimer in the *      documentation and/or other materials provided with the distribution. *    - Neither the name of ETH Zurich nor the names of its contributors may be *      used to endorse or promote products derived from this software without *      specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */package ch.ethz.iks.slp.impl;import java.util.Dictionary;import org.osgi.framework.BundleContext;import org.osgi.framework.Constants;import org.osgi.framework.InvalidSyntaxException;import org.osgi.framework.ServiceEvent;import org.osgi.framework.ServiceListener;import org.osgi.framework.ServiceReference;import org.osgi.service.log.LogService;import ch.ethz.iks.slp.impl.filter.Filter;/** * Platform abstraction for the OSGi implementation. *  * @author Jan S. Rellermeyer, ETH Zurich */public class OSGiPlatformAbstraction implements PlatformAbstraction,		ServiceListener {	/**	 * 	 */	private final BundleContext context;	/**	 * 	 */	private LogService log = new NullPatternLogService();			/**	 * Constructor.	 * 	 * @param context	 *            the bundle context from the OSGi framework.	 * @param log	 *            the LogService, or null.	 * @param debug	 *            true if debugging is enabled.	 * @throws InvalidSyntaxException 	 * 				may never happen	 */	OSGiPlatformAbstraction(BundleContext context) throws InvalidSyntaxException {		this.context = context;		// initially get the LogService		final ServiceReference sref = context				.getServiceReference(LogService.class.getName());		if (sref != null) {			this.log = (LogService) context.getService(sref);		}		// track the LogService for life cycle events		context.addServiceListener(this, "(" + Constants.OBJECTCLASS + "=" + LogService.class.getName() + ")");		logDebug("jSLP OSGi started.");	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#createFilter(java.lang.String)	 */	public Filter createFilter(String filterString) {		try {			final org.osgi.framework.Filter filter = context					.createFilter(filterString);			return new Filter() {				public boolean match(Dictionary values) {					return filter.match(values);				}				public String toString() {					return filter.toString();				}			};		} catch (InvalidSyntaxException e) {			throw new IllegalArgumentException(e.getMessage());		}	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logDebug(java.lang.String)	 */	public void logDebug(String message) {		if(SLPCore.CONFIG.getDebugEnabled()) {			log.log(LogService.LOG_DEBUG, message);		}	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logDebug(java.lang.String,	 *      java.lang.Throwable)	 */	public void logDebug(String message, Throwable exception) {		if(SLPCore.CONFIG.getDebugEnabled()) {			log.log(LogService.LOG_DEBUG, message, exception);		}	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logError(java.lang.String)	 */	public void logError(String message) {		log.log(LogService.LOG_ERROR, message);	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logError(java.lang.String,	 *      java.lang.Throwable)	 */	public void logError(String message, Throwable exception) {		log.log(LogService.LOG_ERROR, message, exception);	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logTraceMessage(java.lang.String)	 */	public void logTraceMessage(String message) {		if(SLPCore.CONFIG.getTraceMessage()) {			log.log(LogService.LOG_INFO, message);		}	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logTraceDrop(java.lang.String)	 */	public void logTraceDrop(String message) {		if(SLPCore.CONFIG.getTraceDrop()) {			log.log(LogService.LOG_INFO, message);		}	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logTraceMessage(java.lang.String)	 */	public void logTraceReg(String message) {		if(SLPCore.CONFIG.getTraceReg()) {			log.log(LogService.LOG_INFO, message);		}	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logWarning(java.lang.String)	 */	public void logWarning(String message) {		log.log(LogService.LOG_WARNING, message);	}	/**	 * 	 * @see ch.ethz.iks.slp.impl.PlatformAbstraction#logWarning(java.lang.String,	 *      java.lang.Throwable)	 */	public void logWarning(String message, Throwable exception) {		log.log(LogService.LOG_WARNING, message, exception);	}	/**	 * 	 * @see org.osgi.framework.ServiceListener#serviceChanged(org.osgi.framework.ServiceEvent)	 */	public void serviceChanged(final ServiceEvent event) {		switch (event.getType()) {		case ServiceEvent.REGISTERED:			log = (LogService) context.getService(event.getServiceReference());			return;		case ServiceEvent.UNREGISTERING:			log = new NullPatternLogService();		default:		}	}		// if no LogService is present, we use a dummy log	private class NullPatternLogService implements LogService {		public void log(int level, String message) {			if(level == LogService.LOG_ERROR || level == LogService.LOG_WARNING) {				System.err.println(message);			} else {				System.out.println(message);			}		}		public void log(int level, String message, Throwable exception) {			log(level, message + exception.getMessage());		}		public void log(ServiceReference sr, int level, String message) {			log(null, level, message);		}		public void log(ServiceReference sr, int level, String message, Throwable t) {			log(null, level, message, t);		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -