blob: f5aeaa68cea2f70654e2d516066a745a45b9a55a [file] [log] [blame]
/*
* 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.db.virtual.walker;
import org.apache.cassandra.db.virtual.model.Column;
import org.apache.cassandra.db.virtual.model.MeterMetricRow;
/**
* The {@link org.apache.cassandra.db.virtual.model.MeterMetricRow} row metadata and data walker.
*
* @see org.apache.cassandra.db.virtual.model.MeterMetricRow
*/
public class MeterMetricRowWalker implements RowWalker<MeterMetricRow>
{
@Override
public void visitMeta(MetadataVisitor visitor)
{
visitor.accept(Column.Type.PARTITION_KEY, "name", String.class);
visitor.accept(Column.Type.REGULAR, "count", Long.TYPE);
visitor.accept(Column.Type.REGULAR, "fifteen_minute_rate", Double.TYPE);
visitor.accept(Column.Type.REGULAR, "five_minute_rate", Double.TYPE);
visitor.accept(Column.Type.REGULAR, "mean_rate", Double.TYPE);
visitor.accept(Column.Type.REGULAR, "one_minute_rate", Double.TYPE);
visitor.accept(Column.Type.REGULAR, "scope", String.class);
}
@Override
public void visitRow(MeterMetricRow row, RowMetadataVisitor visitor)
{
visitor.accept(Column.Type.PARTITION_KEY, "name", String.class, row::name);
visitor.accept(Column.Type.REGULAR, "count", Long.TYPE, row::count);
visitor.accept(Column.Type.REGULAR, "fifteen_minute_rate", Double.TYPE, row::fifteenMinuteRate);
visitor.accept(Column.Type.REGULAR, "five_minute_rate", Double.TYPE, row::fiveMinuteRate);
visitor.accept(Column.Type.REGULAR, "mean_rate", Double.TYPE, row::meanRate);
visitor.accept(Column.Type.REGULAR, "one_minute_rate", Double.TYPE, row::oneMinuteRate);
visitor.accept(Column.Type.REGULAR, "scope", String.class, row::scope);
}
@Override
public int count(Column.Type type)
{
switch (type)
{
case PARTITION_KEY:
return 1;
case CLUSTERING:
return 0;
case REGULAR:
return 6;
default:
throw new IllegalStateException("Unknown column type: " + type);
}
}
}