|
| 1 | +// |
| 2 | +// MessagePack for Java |
| 3 | +// |
| 4 | +// Copyright (C) 2009-2011 FURUHASHI Sadayuki |
| 5 | +// |
| 6 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | +// you may not use this file except in compliance with the License. |
| 8 | +// You may obtain a copy of the License at |
| 9 | +// |
| 10 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +// |
| 12 | +// Unless required by applicable law or agreed to in writing, software |
| 13 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +// See the License for the specific language governing permissions and |
| 16 | +// limitations under the License. |
| 17 | +// |
| 18 | +package org.msgpack.template; |
| 19 | + |
| 20 | +import java.io.IOException; |
| 21 | +import java.nio.ByteBuffer; |
| 22 | + |
| 23 | +import org.msgpack.packer.Packer; |
| 24 | +import org.msgpack.unpacker.Unpacker; |
| 25 | +import org.msgpack.MessageTypeException; |
| 26 | + |
| 27 | + |
| 28 | +public class ByteBufferTemplate implements Template { |
| 29 | + private ByteBufferTemplate() { } |
| 30 | + |
| 31 | + public void write(Packer pk, Object target) throws IOException { |
| 32 | + if(target == null) { |
| 33 | + throw new MessageTypeException("Attempted to write null"); |
| 34 | + } |
| 35 | + ByteBuffer buf = (ByteBuffer) target; |
| 36 | + byte[] bytes = buf.array(); |
| 37 | + pk.writeByteArray(bytes); |
| 38 | + } |
| 39 | + |
| 40 | + public Object read(Unpacker u, Object to) throws IOException { |
| 41 | + byte[] bytes = u.readByteArray(); // TODO read to 'to' obj |
| 42 | + ByteBuffer buf = ByteBuffer.wrap(bytes); |
| 43 | + return buf; |
| 44 | + } |
| 45 | + |
| 46 | + static public ByteBufferTemplate getInstance() { |
| 47 | + return instance; |
| 48 | + } |
| 49 | + |
| 50 | + static final ByteBufferTemplate instance = new ByteBufferTemplate(); |
| 51 | +} |
| 52 | + |
0 commit comments