org.jumpmind.symmetric.route.SimpleRouterContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symmetric-ds Show documentation
Show all versions of symmetric-ds Show documentation
SymmetricDS is an open source database synchronization solution. It is platform-independent,
web-enabled, and database-agnostic. SymmetricDS was first built to replicate changes between 'retail store'
databases and ad centralized 'corporate' database.
The newest version!
/*
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU Lesser General Public License (the
* "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* .
*
* 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.jumpmind.symmetric.route;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import org.jumpmind.symmetric.common.Constants;
import org.jumpmind.symmetric.common.logging.ILog;
import org.jumpmind.symmetric.model.NodeChannel;
import org.springframework.jdbc.core.JdbcTemplate;
/**
*
*/
public class SimpleRouterContext implements IRouterContext {
protected NodeChannel channel;
protected JdbcTemplate jdbcTemplate;
protected boolean encountedTransactionBoundary = false;
protected Map contextCache = new HashMap();
protected Map stats = new HashMap();
protected String nodeId;
public SimpleRouterContext(String nodeId, JdbcTemplate jdbcTemplate, NodeChannel channel) {
this.init(jdbcTemplate, channel, nodeId);
}
protected SimpleRouterContext() {
}
protected void init(JdbcTemplate jdbcTemplate, NodeChannel channel, String nodeId) {
this.channel = channel;
this.jdbcTemplate = jdbcTemplate;
this.nodeId = nodeId;
}
public String getNodeId() {
return nodeId;
}
public NodeChannel getChannel() {
return this.channel;
}
public Map getContextCache() {
return this.contextCache;
}
public JdbcTemplate getJdbcTemplate() {
return this.jdbcTemplate;
}
public void setEncountedTransactionBoundary(boolean encountedTransactionBoundary) {
this.encountedTransactionBoundary = encountedTransactionBoundary;
}
public boolean isEncountedTransactionBoundary() {
return this.encountedTransactionBoundary;
}
synchronized public void incrementStat(long amount, String name) {
Long val = stats.get(name);
if (val == null) {
val = 0l;
}
val += amount;
stats.put(name, val);
}
synchronized public long getStat(String name) {
Long val = (Long) stats.get(name);
if (val == null) {
val = 0l;
}
return val;
}
synchronized public void logStats(ILog log, long totalTimeInMs) {
boolean infoLevel = totalTimeInMs > Constants.LONG_OPERATION_THRESHOLD;
Set keys = new TreeSet(stats.keySet());
StringBuilder statsPrintout = new StringBuilder(channel.getChannelId());
for (String key : keys) {
statsPrintout.append(", " + key + "=" + stats.get(key));
}
if (infoLevel) {
log.info("RouterStats", statsPrintout);
} else {
log.debug("RouterStats", statsPrintout);
}
}
synchronized public void transferStats(SimpleRouterContext ctx) {
Set keys = new HashSet(ctx.stats.keySet());
for (String key : keys) {
Long value = stats.get(key);
if (value == null) {
value = 0l;
}
incrementStat(value, key);
}
}
}