blob: cc98a093710fee3a1193374b2401cae5b72043db [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.ignite.internal.managers.systemview.walker;
import org.apache.ignite.cache.CacheAtomicityMode;
import org.apache.ignite.cache.CacheMode;
import org.apache.ignite.cache.CacheRebalanceMode;
import org.apache.ignite.cache.CacheWriteSynchronizationMode;
import org.apache.ignite.cache.PartitionLossPolicy;
import org.apache.ignite.internal.processors.cache.CacheType;
import org.apache.ignite.spi.systemview.view.CacheView;
import org.apache.ignite.spi.systemview.view.SystemViewRowAttributeWalker;
/**
* Generated by {@code org.apache.ignite.codegen.SystemViewRowAttributeWalkerGenerator}.
* {@link CacheView} attributes walker.
*
* @see CacheView
*/
public class CacheViewWalker implements SystemViewRowAttributeWalker<CacheView> {
/** {@inheritDoc} */
@Override public void visitAll(AttributeVisitor v) {
v.accept(0, "cacheName", String.class);
v.accept(1, "cacheId", int.class);
v.accept(2, "cacheType", CacheType.class);
v.accept(3, "cacheMode", CacheMode.class);
v.accept(4, "atomicityMode", CacheAtomicityMode.class);
v.accept(5, "cacheGroupName", String.class);
v.accept(6, "affinity", String.class);
v.accept(7, "affinityMapper", String.class);
v.accept(8, "backups", int.class);
v.accept(9, "cacheGroupId", int.class);
v.accept(10, "cacheLoaderFactory", String.class);
v.accept(11, "cacheStoreFactory", String.class);
v.accept(12, "cacheWriterFactory", String.class);
v.accept(13, "conflictResolver", String.class);
v.accept(14, "dataRegionName", String.class);
v.accept(15, "defaultLockTimeout", long.class);
v.accept(16, "evictionFilter", String.class);
v.accept(17, "evictionPolicyFactory", String.class);
v.accept(18, "expiryPolicyFactory", String.class);
v.accept(19, "interceptor", String.class);
v.accept(20, "isCopyOnRead", boolean.class);
v.accept(21, "isEagerTtl", boolean.class);
v.accept(22, "isEncryptionEnabled", boolean.class);
v.accept(23, "isEventsDisabled", boolean.class);
v.accept(24, "isInvalidate", boolean.class);
v.accept(25, "isLoadPreviousValue", boolean.class);
v.accept(26, "isManagementEnabled", boolean.class);
v.accept(27, "isNearCacheEnabled", boolean.class);
v.accept(28, "isOnheapCacheEnabled", boolean.class);
v.accept(29, "isReadFromBackup", boolean.class);
v.accept(30, "isReadThrough", boolean.class);
v.accept(31, "isSqlEscapeAll", boolean.class);
v.accept(32, "isSqlOnheapCacheEnabled", boolean.class);
v.accept(33, "isStatisticsEnabled", boolean.class);
v.accept(34, "isStoreKeepBinary", boolean.class);
v.accept(35, "isWriteBehindEnabled", boolean.class);
v.accept(36, "isWriteThrough", boolean.class);
v.accept(37, "maxConcurrentAsyncOperations", int.class);
v.accept(38, "maxQueryIteratorsCount", int.class);
v.accept(39, "nearCacheEvictionPolicyFactory", String.class);
v.accept(40, "nearCacheStartSize", int.class);
v.accept(41, "nodeFilter", String.class);
v.accept(42, "partitionLossPolicy", PartitionLossPolicy.class);
v.accept(43, "queryDetailMetricsSize", int.class);
v.accept(44, "queryParallelism", int.class);
v.accept(45, "rebalanceBatchSize", int.class);
v.accept(46, "rebalanceBatchesPrefetchCount", long.class);
v.accept(47, "rebalanceDelay", long.class);
v.accept(48, "rebalanceMode", CacheRebalanceMode.class);
v.accept(49, "rebalanceOrder", int.class);
v.accept(50, "rebalanceThrottle", long.class);
v.accept(51, "rebalanceTimeout", long.class);
v.accept(52, "sqlIndexMaxInlineSize", int.class);
v.accept(53, "sqlOnheapCacheMaxSize", int.class);
v.accept(54, "sqlSchema", String.class);
v.accept(55, "topologyValidator", String.class);
v.accept(56, "writeBehindBatchSize", int.class);
v.accept(57, "writeBehindCoalescing", boolean.class);
v.accept(58, "writeBehindFlushFrequency", long.class);
v.accept(59, "writeBehindFlushSize", int.class);
v.accept(60, "writeBehindFlushThreadCount", int.class);
v.accept(61, "writeSynchronizationMode", CacheWriteSynchronizationMode.class);
}
/** {@inheritDoc} */
@Override public void visitAll(CacheView row, AttributeWithValueVisitor v) {
v.accept(0, "cacheName", String.class, row.cacheName());
v.acceptInt(1, "cacheId", row.cacheId());
v.accept(2, "cacheType", CacheType.class, row.cacheType());
v.accept(3, "cacheMode", CacheMode.class, row.cacheMode());
v.accept(4, "atomicityMode", CacheAtomicityMode.class, row.atomicityMode());
v.accept(5, "cacheGroupName", String.class, row.cacheGroupName());
v.accept(6, "affinity", String.class, row.affinity());
v.accept(7, "affinityMapper", String.class, row.affinityMapper());
v.acceptInt(8, "backups", row.backups());
v.acceptInt(9, "cacheGroupId", row.cacheGroupId());
v.accept(10, "cacheLoaderFactory", String.class, row.cacheLoaderFactory());
v.accept(11, "cacheStoreFactory", String.class, row.cacheStoreFactory());
v.accept(12, "cacheWriterFactory", String.class, row.cacheWriterFactory());
v.accept(13, "conflictResolver", String.class, row.conflictResolver());
v.accept(14, "dataRegionName", String.class, row.dataRegionName());
v.acceptLong(15, "defaultLockTimeout", row.defaultLockTimeout());
v.accept(16, "evictionFilter", String.class, row.evictionFilter());
v.accept(17, "evictionPolicyFactory", String.class, row.evictionPolicyFactory());
v.accept(18, "expiryPolicyFactory", String.class, row.expiryPolicyFactory());
v.accept(19, "interceptor", String.class, row.interceptor());
v.acceptBoolean(20, "isCopyOnRead", row.isCopyOnRead());
v.acceptBoolean(21, "isEagerTtl", row.isEagerTtl());
v.acceptBoolean(22, "isEncryptionEnabled", row.isEncryptionEnabled());
v.acceptBoolean(23, "isEventsDisabled", row.isEventsDisabled());
v.acceptBoolean(24, "isInvalidate", row.isInvalidate());
v.acceptBoolean(25, "isLoadPreviousValue", row.isLoadPreviousValue());
v.acceptBoolean(26, "isManagementEnabled", row.isManagementEnabled());
v.acceptBoolean(27, "isNearCacheEnabled", row.isNearCacheEnabled());
v.acceptBoolean(28, "isOnheapCacheEnabled", row.isOnheapCacheEnabled());
v.acceptBoolean(29, "isReadFromBackup", row.isReadFromBackup());
v.acceptBoolean(30, "isReadThrough", row.isReadThrough());
v.acceptBoolean(31, "isSqlEscapeAll", row.isSqlEscapeAll());
v.acceptBoolean(32, "isSqlOnheapCacheEnabled", row.isSqlOnheapCacheEnabled());
v.acceptBoolean(33, "isStatisticsEnabled", row.isStatisticsEnabled());
v.acceptBoolean(34, "isStoreKeepBinary", row.isStoreKeepBinary());
v.acceptBoolean(35, "isWriteBehindEnabled", row.isWriteBehindEnabled());
v.acceptBoolean(36, "isWriteThrough", row.isWriteThrough());
v.acceptInt(37, "maxConcurrentAsyncOperations", row.maxConcurrentAsyncOperations());
v.acceptInt(38, "maxQueryIteratorsCount", row.maxQueryIteratorsCount());
v.accept(39, "nearCacheEvictionPolicyFactory", String.class, row.nearCacheEvictionPolicyFactory());
v.acceptInt(40, "nearCacheStartSize", row.nearCacheStartSize());
v.accept(41, "nodeFilter", String.class, row.nodeFilter());
v.accept(42, "partitionLossPolicy", PartitionLossPolicy.class, row.partitionLossPolicy());
v.acceptInt(43, "queryDetailMetricsSize", row.queryDetailMetricsSize());
v.acceptInt(44, "queryParallelism", row.queryParallelism());
v.acceptInt(45, "rebalanceBatchSize", row.rebalanceBatchSize());
v.acceptLong(46, "rebalanceBatchesPrefetchCount", row.rebalanceBatchesPrefetchCount());
v.acceptLong(47, "rebalanceDelay", row.rebalanceDelay());
v.accept(48, "rebalanceMode", CacheRebalanceMode.class, row.rebalanceMode());
v.acceptInt(49, "rebalanceOrder", row.rebalanceOrder());
v.acceptLong(50, "rebalanceThrottle", row.rebalanceThrottle());
v.acceptLong(51, "rebalanceTimeout", row.rebalanceTimeout());
v.acceptInt(52, "sqlIndexMaxInlineSize", row.sqlIndexMaxInlineSize());
v.acceptInt(53, "sqlOnheapCacheMaxSize", row.sqlOnheapCacheMaxSize());
v.accept(54, "sqlSchema", String.class, row.sqlSchema());
v.accept(55, "topologyValidator", String.class, row.topologyValidator());
v.acceptInt(56, "writeBehindBatchSize", row.writeBehindBatchSize());
v.acceptBoolean(57, "writeBehindCoalescing", row.writeBehindCoalescing());
v.acceptLong(58, "writeBehindFlushFrequency", row.writeBehindFlushFrequency());
v.acceptInt(59, "writeBehindFlushSize", row.writeBehindFlushSize());
v.acceptInt(60, "writeBehindFlushThreadCount", row.writeBehindFlushThreadCount());
v.accept(61, "writeSynchronizationMode", CacheWriteSynchronizationMode.class, row.writeSynchronizationMode());
}
/** {@inheritDoc} */
@Override public int count() {
return 62;
}
}