2014-10-08 20:20:15 +00:00
|
|
|
// Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
|
|
|
|
// Licensed under the MIT License:
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
2014-05-15 23:05:20 +00:00
|
|
|
package org.capnproto;
|
|
|
|
|
|
|
|
public final class MessageBuilder {
|
2014-05-24 14:12:44 +00:00
|
|
|
|
|
|
|
private final BuilderArena arena;
|
|
|
|
|
|
|
|
public MessageBuilder() {
|
2014-06-15 18:17:32 +00:00
|
|
|
this.arena = new BuilderArena(BuilderArena.SUGGESTED_FIRST_SEGMENT_WORDS,
|
|
|
|
BuilderArena.SUGGESTED_ALLOCATION_STRATEGY);
|
|
|
|
}
|
|
|
|
|
|
|
|
public MessageBuilder(int firstSegmentWords) {
|
|
|
|
this.arena = new BuilderArena(firstSegmentWords,
|
|
|
|
BuilderArena.SUGGESTED_ALLOCATION_STRATEGY);
|
|
|
|
}
|
|
|
|
|
|
|
|
public MessageBuilder(int firstSegmentWords, BuilderArena.AllocationStrategy allocationStrategy) {
|
|
|
|
this.arena = new BuilderArena(firstSegmentWords,
|
|
|
|
allocationStrategy);
|
2014-05-24 14:12:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 21:47:42 +00:00
|
|
|
public <T> T getRoot(StructBuilder.Factory<T> factory) {
|
2014-05-15 23:05:20 +00:00
|
|
|
throw new Error("unimplemented");
|
|
|
|
}
|
|
|
|
|
2014-10-28 16:51:01 +00:00
|
|
|
public <T> T initRoot(FromPointerBuilder<T> factory) {
|
2014-05-24 14:12:44 +00:00
|
|
|
SegmentBuilder rootSegment = this.arena.segments.get(0);
|
2014-11-09 21:32:51 +00:00
|
|
|
if (rootSegment.currentSize() == 0) {
|
|
|
|
int location = rootSegment.allocate(1);
|
|
|
|
if (location == SegmentBuilder.FAILED_ALLOCATION) {
|
|
|
|
throw new Error("could not allocate root pointer");
|
|
|
|
}
|
|
|
|
if (location != 0) {
|
|
|
|
throw new Error("First allocated word of new segment was not at offset 0");
|
|
|
|
}
|
|
|
|
return factory.initFromPointerBuilder(rootSegment, location, 0);
|
|
|
|
} else {
|
|
|
|
return factory.initFromPointerBuilder(rootSegment, 0, 0);
|
2014-05-24 14:12:44 +00:00
|
|
|
}
|
2014-05-15 23:05:20 +00:00
|
|
|
}
|
2014-05-24 14:45:55 +00:00
|
|
|
|
2014-05-24 18:33:25 +00:00
|
|
|
public final java.nio.ByteBuffer[] getSegmentsForOutput() {
|
|
|
|
return this.arena.getSegmentsForOutput();
|
|
|
|
}
|
2014-05-15 23:05:20 +00:00
|
|
|
}
|