org.apache.cassandra.sink.SinkManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
A fork of the Apache Cassandra Project that uses Lucene indexes for providing near real time search such as ElasticSearch or Solr, including full text search capabilities, multi-dimensional queries, and relevance scoring.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.cassandra.sink;
import java.net.InetAddress;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;
import org.apache.cassandra.db.IMutation;
import org.apache.cassandra.net.MessageIn;
import org.apache.cassandra.net.MessageOut;
public class SinkManager
{
private static final Set messageSinks = new CopyOnWriteArraySet<>();
private static final Set requestSinks = new CopyOnWriteArraySet<>();
public static void add(IMessageSink ms)
{
messageSinks.add(ms);
}
public static void add(IRequestSink rs)
{
requestSinks.add(rs);
}
public static void remove(IMessageSink ms)
{
messageSinks.remove(ms);
}
public static void remove(IRequestSink rs)
{
requestSinks.remove(rs);
}
public static void clear()
{
messageSinks.clear();
requestSinks.clear();
}
public static MessageOut processOutboundMessage(MessageOut message, int id, InetAddress to)
{
if (messageSinks.isEmpty())
return message;
for (IMessageSink ms : messageSinks)
{
message = ms.handleMessage(message, id, to);
if (message == null)
return null;
}
return message;
}
public static MessageIn processInboundMessage(MessageIn message, int id)
{
if (messageSinks.isEmpty())
return message;
for (IMessageSink ms : messageSinks)
{
message = ms.handleMessage(message, id, null);
if (message == null)
return null;
}
return message;
}
public static IMutation processWriteRequest(IMutation mutation)
{
if (requestSinks.isEmpty())
return mutation;
for (IRequestSink rs : requestSinks)
{
mutation = rs.handleWriteRequest(mutation);
if (mutation == null)
return null;
}
return mutation;
}
}