当前位置: 首页>>代码示例>>Java>>正文


Java FileDataInput.readInt方法代码示例

本文整理汇总了Java中org.apache.cassandra.io.util.FileDataInput.readInt方法的典型用法代码示例。如果您正苦于以下问题:Java FileDataInput.readInt方法的具体用法?Java FileDataInput.readInt怎么用?Java FileDataInput.readInt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.cassandra.io.util.FileDataInput的用法示例。


在下文中一共展示了FileDataInput.readInt方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: deserialize

import org.apache.cassandra.io.util.FileDataInput; //导入方法依赖的package包/类
public Map<MetadataType, MetadataComponent> deserialize(Descriptor descriptor, FileDataInput in, EnumSet<MetadataType> types) throws IOException
{
    Map<MetadataType, MetadataComponent> components = new EnumMap<>(MetadataType.class);
    // read number of components
    int numComponents = in.readInt();
    // read toc
    Map<MetadataType, Integer> toc = new EnumMap<>(MetadataType.class);
    MetadataType[] values = MetadataType.values();
    for (int i = 0; i < numComponents; i++)
    {
        toc.put(values[in.readInt()], in.readInt());
    }
    for (MetadataType type : types)
    {
        Integer offset = toc.get(type);
        if (offset != null)
        {
            in.seek(offset);
            MetadataComponent component = type.serializer.deserialize(descriptor.version, in);
            components.put(type, component);
        }
    }
    return components;
}
 
开发者ID:Netflix,项目名称:sstable-adaptor,代码行数:25,代码来源:MetadataSerializer.java

示例2: deserialize

import org.apache.cassandra.io.util.FileDataInput; //导入方法依赖的package包/类
public Map<MetadataType, MetadataComponent> deserialize(Descriptor descriptor, FileDataInput in, EnumSet<MetadataType> types) throws IOException
{
    Map<MetadataType, MetadataComponent> components = Maps.newHashMap();
    // read number of components
    int numComponents = in.readInt();
    // read toc
    Map<MetadataType, Integer> toc = new HashMap<>(numComponents);
    for (int i = 0; i < numComponents; i++)
    {
        toc.put(MetadataType.values()[in.readInt()], in.readInt());
    }
    for (MetadataType type : types)
    {
        MetadataComponent component = null;
        if (toc.containsKey(type))
        {
            in.seek(toc.get(type));
            component = type.serializer.deserialize(descriptor.version, in);
        }
        components.put(type, component);
    }
    return components;
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:24,代码来源:MetadataSerializer.java

示例3: deserialize

import org.apache.cassandra.io.util.FileDataInput; //导入方法依赖的package包/类
public Map<MetadataType, MetadataComponent> deserialize(Descriptor descriptor, FileDataInput in, EnumSet<MetadataType> types) throws IOException
{
    Map<MetadataType, MetadataComponent> components = Maps.newHashMap();
    // read number of components
    int numComponents = in.readInt();
    // read toc
    Map<MetadataType, Integer> toc = new HashMap<>(numComponents);
    MetadataType[] values = MetadataType.values();
    for (int i = 0; i < numComponents; i++)
    {
        toc.put(values[in.readInt()], in.readInt());
    }
    for (MetadataType type : types)
    {
        Integer offset = toc.get(type);
        if (offset != null)
        {
            in.seek(offset);
            MetadataComponent component = type.serializer.deserialize(descriptor.version, in);
            components.put(type, component);
        }
    }
    return components;
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:25,代码来源:MetadataSerializer.java

示例4: readSimpleColumns

import org.apache.cassandra.io.util.FileDataInput; //导入方法依赖的package包/类
private void readSimpleColumns(FileDataInput file, SortedSet<ByteBuffer> columnNames, List<OnDiskAtom> result) throws IOException
{
    OnDiskAtom.Serializer atomSerializer = cf.getOnDiskSerializer();
    int count = file.readInt();
    int n = 0;
    for (int i = 0; i < count; i++)
    {
        OnDiskAtom column = atomSerializer.deserializeFromSSTable(file, sstable.descriptor.version);
        if (column instanceof IColumn)
        {
            if (columnNames.contains(column.name()))
            {
                result.add(column);
                if (++n >= columns.size())
                    break;
            }
        }
        else
        {
            result.add(column);
        }
    }
}
 
开发者ID:dprguiuc,项目名称:Cassandra-Wasef,代码行数:24,代码来源:SSTableNamesIterator.java


注:本文中的org.apache.cassandra.io.util.FileDataInput.readInt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。