12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /**
- * Copyright (C) 2008 Happy Fish / YuQing
- * <p>
- * FastDFS Java Client may be copied only under the terms of the GNU Lesser
- * General Public License (LGPL).
- * Please visit the FastDFS Home Page http://www.csource.org/ for more detail.
- */
- package com.kmall.common.fileserver.fastdfs;
- import java.io.UnsupportedEncodingException;
- import java.util.Date;
- /**
- * C struct body decoder
- *
- * @author Happy Fish / YuQing
- * @version Version 1.17
- */
- public abstract class StructBase {
- /**
- * set fields
- *
- * @param bs byte array
- * @param offset start offset
- */
- public abstract void setFields(byte[] bs, int offset);
- protected String stringValue(byte[] bs, int offset, FieldInfo filedInfo) {
- try {
- return (new String(bs, offset + filedInfo.offset, filedInfo.size, ClientGlobal.g_charset)).trim();
- } catch (UnsupportedEncodingException ex) {
- ex.printStackTrace();
- return null;
- }
- }
- protected long longValue(byte[] bs, int offset, FieldInfo filedInfo) {
- return ProtoCommon.buff2long(bs, offset + filedInfo.offset);
- }
- protected int intValue(byte[] bs, int offset, FieldInfo filedInfo) {
- return (int) ProtoCommon.buff2long(bs, offset + filedInfo.offset);
- }
- protected int int32Value(byte[] bs, int offset, FieldInfo filedInfo) {
- return ProtoCommon.buff2int(bs, offset + filedInfo.offset);
- }
- protected byte byteValue(byte[] bs, int offset, FieldInfo filedInfo) {
- return bs[offset + filedInfo.offset];
- }
- protected boolean booleanValue(byte[] bs, int offset, FieldInfo filedInfo) {
- return bs[offset + filedInfo.offset] != 0;
- }
- protected Date dateValue(byte[] bs, int offset, FieldInfo filedInfo) {
- return new Date(ProtoCommon.buff2long(bs, offset + filedInfo.offset) * 1000);
- }
- protected static class FieldInfo {
- protected String name;
- protected int offset;
- protected int size;
- public FieldInfo(String name, int offset, int size) {
- this.name = name;
- this.offset = offset;
- this.size = size;
- }
- }
- }
|