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


Java MemoryOutputStream类代码示例

本文整理汇总了Java中org.apache.cassandra.io.util.MemoryOutputStream的典型用法代码示例。如果您正苦于以下问题:Java MemoryOutputStream类的具体用法?Java MemoryOutputStream怎么用?Java MemoryOutputStream使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MemoryOutputStream类属于org.apache.cassandra.io.util包,在下文中一共展示了MemoryOutputStream类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: deserialize

import org.apache.cassandra.io.util.MemoryOutputStream; //导入依赖的package包/类
public IndexSummary deserialize(DataInputStream in, IPartitioner partitioner, boolean haveSamplingLevel, int expectedIndexInterval) throws IOException
{
    int indexInterval = in.readInt();
    if (indexInterval != expectedIndexInterval)
    {
        throw new IOException(String.format("Cannot read index summary because Index Interval changed from %d to %d.",
                                                   indexInterval, expectedIndexInterval));
    }
    int summarySize = in.readInt();
    long offheapSize = in.readLong();
    int samplingLevel, fullSamplingSummarySize;
    if (haveSamplingLevel)
    {
        samplingLevel = in.readInt();
        fullSamplingSummarySize = in.readInt();
    }
    else
    {
        samplingLevel = BASE_SAMPLING_LEVEL;
        fullSamplingSummarySize = summarySize;
    }
    Memory memory = Memory.allocate(offheapSize);
    FBUtilities.copy(in, new MemoryOutputStream(memory), offheapSize);
    return new IndexSummary(partitioner, memory, summarySize, fullSamplingSummarySize, indexInterval, samplingLevel);
}
 
开发者ID:mafernandez-stratio,项目名称:cassandra-cqlMod,代码行数:26,代码来源:IndexSummary.java

示例2: deserialize

import org.apache.cassandra.io.util.MemoryOutputStream; //导入依赖的package包/类
public IndexSummary deserialize(DataInputStream in, IPartitioner partitioner) throws IOException
{
    int indexInterval = in.readInt();
    int summary_size = in.readInt();
    long offheap_size = in.readLong();
    Memory memory = Memory.allocate(offheap_size);
    FBUtilities.copy(in, new MemoryOutputStream(memory), offheap_size);
    return new IndexSummary(partitioner, memory, summary_size, indexInterval);
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:10,代码来源:IndexSummary.java

示例3: deserialize

import org.apache.cassandra.io.util.MemoryOutputStream; //导入依赖的package包/类
public IndexSummary deserialize(DataInputStream in, IPartitioner partitioner, boolean haveSamplingLevel, int expectedMinIndexInterval, int maxIndexInterval) throws IOException
{
    int minIndexInterval = in.readInt();
    if (minIndexInterval != expectedMinIndexInterval)
    {
        throw new IOException(String.format("Cannot read index summary because min_index_interval changed from %d to %d.",
                                            minIndexInterval, expectedMinIndexInterval));
    }

    int summarySize = in.readInt();
    long offheapSize = in.readLong();
    int samplingLevel, fullSamplingSummarySize;
    if (haveSamplingLevel)
    {
        samplingLevel = in.readInt();
        fullSamplingSummarySize = in.readInt();
    }
    else
    {
        samplingLevel = BASE_SAMPLING_LEVEL;
        fullSamplingSummarySize = summarySize;
    }

    int effectiveIndexInterval = (int) Math.ceil((BASE_SAMPLING_LEVEL / (double) samplingLevel) * minIndexInterval);
    if (effectiveIndexInterval > maxIndexInterval)
    {
        throw new IOException(String.format("Rebuilding index summary because the effective index interval (%d) is higher than" +
                                            " the current max index interval (%d)", effectiveIndexInterval, maxIndexInterval));
    }

    RefCountedMemory memory = new RefCountedMemory(offheapSize);
    FBUtilities.copy(in, new MemoryOutputStream(memory), offheapSize);
    return new IndexSummary(partitioner, memory, summarySize, fullSamplingSummarySize, minIndexInterval, samplingLevel);
}
 
开发者ID:daidong,项目名称:GraphTrek,代码行数:35,代码来源:IndexSummary.java

示例4: deserialize

import org.apache.cassandra.io.util.MemoryOutputStream; //导入依赖的package包/类
public IndexSummary deserialize(DataInputStream in, IPartitioner partitioner, boolean haveSamplingLevel, int expectedMinIndexInterval, int maxIndexInterval) throws IOException
{
    int minIndexInterval = in.readInt();
    if (minIndexInterval != expectedMinIndexInterval)
    {
        throw new IOException(String.format("Cannot read index summary because min_index_interval changed from %d to %d.",
                                            minIndexInterval, expectedMinIndexInterval));
    }

    int summarySize = in.readInt();
    long offheapSize = in.readLong();
    int samplingLevel, fullSamplingSummarySize;
    if (haveSamplingLevel)
    {
        samplingLevel = in.readInt();
        fullSamplingSummarySize = in.readInt();
    }
    else
    {
        samplingLevel = BASE_SAMPLING_LEVEL;
        fullSamplingSummarySize = summarySize;
    }

    int effectiveIndexInterval = (int) Math.ceil((BASE_SAMPLING_LEVEL / (double) samplingLevel) * minIndexInterval);
    if (effectiveIndexInterval > maxIndexInterval)
    {
        throw new IOException(String.format("Rebuilding index summary because the effective index interval (%d) is higher than" +
                                            " the current max index interval (%d)", effectiveIndexInterval, maxIndexInterval));
    }

    Memory memory = Memory.allocate(offheapSize);
    FBUtilities.copy(in, new MemoryOutputStream(memory), offheapSize);
    return new IndexSummary(partitioner, memory, summarySize, fullSamplingSummarySize, minIndexInterval, samplingLevel);
}
 
开发者ID:rajath26,项目名称:cassandra-trunk,代码行数:35,代码来源:IndexSummary.java

示例5: deserialize

import org.apache.cassandra.io.util.MemoryOutputStream; //导入依赖的package包/类
public IndexSummary deserialize(DataInputStream in, IPartitioner partitioner, boolean haveSamplingLevel, int expectedMinIndexInterval, int maxIndexInterval) throws IOException
{
    int minIndexInterval = in.readInt();
    if (minIndexInterval != expectedMinIndexInterval)
    {
        throw new IOException(String.format("Cannot read index summary because min_index_interval changed from %d to %d.",
                                            minIndexInterval, expectedMinIndexInterval));
    }

    int offsetCount = in.readInt();
    long offheapSize = in.readLong();
    int samplingLevel, fullSamplingSummarySize;
    if (haveSamplingLevel)
    {
        samplingLevel = in.readInt();
        fullSamplingSummarySize = in.readInt();
    }
    else
    {
        samplingLevel = BASE_SAMPLING_LEVEL;
        fullSamplingSummarySize = offsetCount;
    }

    int effectiveIndexInterval = (int) Math.ceil((BASE_SAMPLING_LEVEL / (double) samplingLevel) * minIndexInterval);
    if (effectiveIndexInterval > maxIndexInterval)
    {
        throw new IOException(String.format("Rebuilding index summary because the effective index interval (%d) is higher than" +
                                            " the current max index interval (%d)", effectiveIndexInterval, maxIndexInterval));
    }

    Memory offsets = Memory.allocate(offsetCount * 4);
    Memory entries = Memory.allocate(offheapSize - offsets.size());
    FBUtilities.copy(in, new MemoryOutputStream(offsets), offsets.size());
    FBUtilities.copy(in, new MemoryOutputStream(entries), entries.size());
    // our on-disk representation treats the offsets and the summary data as one contiguous structure,
    // in which the offsets are based from the start of the structure. i.e., if the offsets occupy
    // X bytes, the value of the first offset will be X. In memory we split the two regions up, so that
    // the summary values are indexed from zero, so we apply a correction to the offsets when de/serializing.
    // In this case subtracting X from each of the offsets.
    for (int i = 0 ; i < offsets.size() ; i += 4)
        offsets.setInt(i, (int) (offsets.getInt(i) - offsets.size()));
    return new IndexSummary(partitioner, offsets, offsetCount, entries, entries.size(), fullSamplingSummarySize, minIndexInterval, samplingLevel);
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:44,代码来源:IndexSummary.java


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