Java tutorial
/* * $Id$ * * Janus platform is an open-source multiagent platform. * More details on http://www.janusproject.io * * Copyright (C) 2014 Sebastian RODRIGUEZ, Nicolas GAUD, Stphane GALLAND. * * 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 io.janusproject.kernel.bic; import io.janusproject.services.logging.LogService; import io.janusproject.util.LoggerCreator; import io.sarl.core.Logging; import io.sarl.lang.core.Agent; import io.sarl.lang.core.Skill; import java.util.UUID; import java.util.logging.Level; import java.util.logging.Logger; import org.arakhne.afc.vmutil.locale.Locale; import com.google.common.base.Strings; import com.google.inject.Inject; /** Janus implementation of SARL's {@link Logging} built-in capacity. * * @author $Author: srodriguez$ * @author $Author: ngaud$ * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ */ class LoggingSkill extends Skill implements Logging { @Inject private LogService logService; private Logger logger; /** * @param agent - owner of this skill. */ public LoggingSkill(Agent agent) { super(agent); } /** Replies the logger. * * @return the logger. */ public Logger getLogger() { return this.logger; } /** Set the logger. * * @param logger - the logger. */ void setLogger(Logger logger) { this.logger = logger; } @Override protected void install() { UUID agentId = getOwner().getID(); String loggerName = Locale.getString(LoggingSkill.class, "AGENT_NAME", agentId); //$NON-NLS-1$ this.logger = LoggerCreator.createLogger(loggerName, this.logService.getLogger()); } @Override public void setLoggingName(String name) { String n = name; if (n == null || n.isEmpty()) { n = Locale.getString(LoggingSkill.class, "AGENT_NAME", getOwner().getID()); //$NON-NLS-1$ } Level level = this.logger.getLevel(); this.logger = LoggerCreator.createLogger(n, this.logService.getLogger()); this.logger.setLevel(level); } @Override public void println(Object message) { info(message); } @Override public void error(Object message, Throwable exception) { if (this.logger.isLoggable(Level.SEVERE)) { String m = Strings.nullToEmpty(message == null ? null : message.toString()); if (exception != null) { this.logger.log(Level.SEVERE, m, exception); } else { this.logger.log(Level.SEVERE, m); } } } @Override public void error(Object message) { if (this.logger.isLoggable(Level.SEVERE)) { String m = Strings.nullToEmpty(message == null ? null : message.toString()); this.logger.log(Level.SEVERE, m); } } @Override public void warning(Object message, Throwable exception) { if (this.logger.isLoggable(Level.WARNING)) { String m = Strings.nullToEmpty(message == null ? null : message.toString()); if (exception != null) { this.logger.log(Level.WARNING, m, exception); } else { this.logger.log(Level.WARNING, m); } } } @Override public void warning(Object message) { if (this.logger.isLoggable(Level.WARNING)) { String m = Strings.nullToEmpty(message == null ? null : message.toString()); this.logger.log(Level.WARNING, m); } } @Override public void info(Object message) { if (this.logger.isLoggable(Level.INFO)) { String m = Strings.nullToEmpty(message == null ? null : message.toString()); this.logger.log(Level.INFO, m); } } @Override public void debug(Object message) { if (this.logger.isLoggable(Level.CONFIG)) { String m = Strings.nullToEmpty(message == null ? null : message.toString()); this.logger.log(Level.CONFIG, m); } } @Override public boolean isErrorLogEnabled() { return this.logger.isLoggable(Level.SEVERE); } @Override public boolean isWarningLogEnabled() { return this.logger.isLoggable(Level.WARNING); } @Override public boolean isInfoLogEnabled() { return this.logger.isLoggable(Level.INFO); } @Override public boolean isDebugLogEnabled() { return this.logger.isLoggable(Level.CONFIG); } @Override public int getLogLevel() { return LoggerCreator.toInt(this.logger.getLevel()); } @Override public void setLogLevel(int level) { this.logger.setLevel(LoggerCreator.fromInt(level)); } }