• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java TMessageType类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: process

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Override
public boolean process(TProtocol in, TProtocol out) throws TException {
	TMessage msg = in.readMessageBegin();
	Controller<?, ?> fn = (Controller<?, ?>) this.beanFactory
			.getBean(msg.name);
	if (fn == null) {
		if (LOGGER.isWarnEnabled()) {
			LOGGER.warn("Invalid request: failed to find interface="
					+ msg.name + ", from: " + getInetAddress(in));
		}

		TProtocolUtil.skip(in, TType.STRUCT);
		in.readMessageEnd();
		TApplicationException x = new TApplicationException(
				TApplicationException.UNKNOWN_METHOD,
				"Invalid method name: '" + msg.name + "'");
		out.writeMessageBegin(new TMessage(msg.name,
				TMessageType.EXCEPTION, msg.seqid));
		x.write(out);
		out.writeMessageEnd();
		out.getTransport().flush();
		return true;
	}
	process(msg.seqid, msg.name, in, out, fn);
	return true;
}
 
开发者ID:jigsaw-projects,项目名称:jigsaw-payment,代码行数:27,代码来源:TProtobufProcessor.java


示例2: encodeRequest

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
protected void encodeRequest(Channel channel, ChannelBuffer buffer, Request request)
    throws IOException {
    Invocation invocation = (Invocation) request.getData();
    TProtocol protocol = newProtocol(channel.getUrl(), buffer);
    try {
        protocol.writeMessageBegin(new TMessage(
            invocation.getMethodName(), TMessageType.CALL, 
            thriftSeq.getAndIncrement()));
        protocol.writeStructBegin(new TStruct(invocation.getMethodName() + "_args"));
        for(int i = 0; i < invocation.getParameterTypes().length; i++) {
            Class<?> type = invocation.getParameterTypes()[i];

        }
    } catch (TException e) {
        throw new IOException(e.getMessage(), e);
    }

}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:19,代码来源:ThriftNativeCodec.java


示例3: writeResult

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@SuppressWarnings("rawtypes")
private void writeResult(final TProtocol out, final TMessage msg, final WriterHandler onComplete, TBase args,
		final TBase result) {
	try {
		onComplete.beforeWrite(msg, args, result);
		// if (!isOneway()) {
		out.writeMessageBegin(new TMessage(msg.name, TMessageType.REPLY, msg.seqid));
		if (result != null) {
			result.write(out);
		} else {
			out.writeStructBegin(null);
			out.writeFieldStop();
			out.writeStructEnd();
		}
		out.writeMessageEnd();
		out.getTransport().flush();
		// }
		onComplete.afterWrite(msg, null, TMessageType.REPLY, args, result);
	} catch (Throwable e) {
		onComplete.afterWrite(msg, e, TMessageType.EXCEPTION, args, result);
	}
}
 
开发者ID:houkx,项目名称:nettythrift,代码行数:23,代码来源:DefaultNettyProcessor.java


示例4: process

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Override
public final boolean process(final TProtocol in, final TProtocol out)
    throws TException {
  final TMessage msg = in.readMessageBegin();
  final ProcessFunction<LocatorServiceImpl, ?> fn = this.fnMap
      .get(msg.name);
  if (fn != null) {
    fn.process(msg.seqid, in, out, this.inst);
    // terminate connection on receiving closeConnection
    // direct class comparison should be the fastest way
    return fn.getClass() != LocatorService.Processor.closeConnection.class;
  }
  else {
    TProtocolUtil.skip(in, TType.STRUCT);
    in.readMessageEnd();
    TApplicationException x = new TApplicationException(
        TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"
            + msg.name + "'");
    out.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION,
        msg.seqid));
    x.write(out);
    out.writeMessageEnd();
    out.getTransport().flush();
    return true;
  }
}
 
开发者ID:gemxd,项目名称:gemfirexd-oss,代码行数:27,代码来源:LocatorServiceImpl.java


示例5: process

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Override
public boolean process(TProtocol in, TProtocol out) throws TException {
  TMessage msg = in.readMessageBegin();
  ProcessFunction fn = processMap.get(msg.name);
  if (fn == null) {
    TProtocolUtil.skip(in, TType.STRUCT);
    in.readMessageEnd();
    TApplicationException x = new TApplicationException(TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"+msg.name+"'");
    out.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION, msg.seqid));
    x.write(out);
    out.writeMessageEnd();
    out.getTransport().flush();
    return true;
  }
  fn.process(msg.seqid, in, out, iface);
  return true;
}
 
开发者ID:adityayadav76,项目名称:internet_of_things_simulator,代码行数:18,代码来源:TBaseProcessor.java


示例6: getMessageTypeAndSeq

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
private byte[] getMessageTypeAndSeq(JSONObject request,
                                    JSONObject methodInfo) throws TProtocolException {
    if (request.has(ARGUMENTS_KEY)) {
        if (methodInfo != null && methodInfo.has((ONEWAY_KEY))) {
            return new byte[] { TMessageType.ONEWAY, 0 };
        } else {
            return new byte[] { TMessageType.CALL, 0 };
        }
    } else if (request.has(RESULT_KEY)) {
        return new byte[] { TMessageType.REPLY, 1 };
    } else if (request.has(EXCEPTION_KEY)) {
        return new byte[] { TMessageType.EXCEPTION, 1 };
    } else {
        throw new TProtocolException(TProtocolException.INVALID_DATA,
                new Exception("Unable to parse message type"));
    }
}
 
开发者ID:degupta,项目名称:human_readable_json_protocol,代码行数:18,代码来源:HumanReadableJsonProtocol.java


示例7: writeMessageBegin

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Override
public void writeMessageBegin(TMessage tMessage) throws TException {
    oprot.writeStructBegin(null);
    oprot.writeString(METHOD_KEY);
    oprot.writeString(tMessage.name);
    switch (tMessage.type) {
        case TMessageType.CALL:
            oprot.writeString(ARGUMENTS_KEY);
            break;
        case TMessageType.REPLY:
            oprot.writeString(RESULT_KEY);
            break;
        case TMessageType.EXCEPTION:
            oprot.writeString(EXCEPTION_KEY);
            break;
    }
}
 
开发者ID:degupta,项目名称:human_readable_json_protocol,代码行数:18,代码来源:HumanReadableJsonProtocol.java


示例8: readApplicationException

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
private static TApplicationException readApplicationException(int seqId, ThriftFunction func,
                                                              TProtocol inputProtocol,
                                                              TMessage msg) throws TException {
    if (msg.seqid != seqId) {
        throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID);
    }

    if (!func.name().equals(msg.name)) {
        return new TApplicationException(TApplicationException.WRONG_METHOD_NAME, msg.name);
    }

    if (msg.type == TMessageType.EXCEPTION) {
        final TApplicationException appEx = TApplicationExceptions.read(inputProtocol);
        inputProtocol.readMessageEnd();
        return appEx;
    }

    return null;
}
 
开发者ID:line,项目名称:armeria,代码行数:20,代码来源:THttpClientDelegate.java


示例9: writeValue

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Override
void writeValue(JsonGenerator jw, Byte val) throws IOException {
    String serialized;
    switch (val.byteValue()) {
    case TMessageType.CALL:
        serialized = "CALL";
        break;
    case TMessageType.REPLY:
        serialized = "REPLY";
        break;
    case TMessageType.EXCEPTION:
        serialized = "EXCEPTION";
        break;
    case TMessageType.ONEWAY:
        serialized = "ONEWAY";
        break;
    default:
        throw new IllegalArgumentException("Unsupported message type: " + val);
    }
    jw.writeString(serialized);
}
 
开发者ID:line,项目名称:armeria,代码行数:22,代码来源:TypedParser.java


示例10: testStructuredLogging

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Test(timeout = 10000)
public void testStructuredLogging() throws Exception {
    HelloService.Iface client = newClient();
    client.hello("kawamuray");

    ThriftStructuredLog log = writtenLogs.take();
    //assertThat(writtenLogs.size()).isEqualTo(1);

    assertThat(log.timestampMillis()).isGreaterThan(0);
    assertThat(log.responseTimeNanos()).isGreaterThanOrEqualTo(0);

    assertThat(log.thriftServiceName()).isEqualTo(HelloService.class.getCanonicalName());
    assertThat(log.thriftMethodName()).isEqualTo("hello");

    ThriftCall call = log.thriftCall();
    assertThat(call.header().name).isEqualTo("hello");
    assertThat(call.header().type).isEqualTo(TMessageType.CALL);
    assertThat(call.args()).isEqualTo(new hello_args().setName("kawamuray"));

    ThriftReply reply = log.thriftReply();
    assertThat(reply.header().name).isEqualTo("hello");
    assertThat(reply.header().type).isEqualTo(TMessageType.REPLY);
    assertThat(reply.header().seqid).isEqualTo(call.header().seqid);
    assertThat(reply.result()).isEqualTo(new hello_result().setSuccess("Hello kawamuray"));
}
 
开发者ID:line,项目名称:armeria,代码行数:26,代码来源:ThriftStructuredLoggingTest.java


示例11: encodeRequest

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
protected void encodeRequest(Channel channel, ChannelBuffer buffer, Request request)
        throws IOException {
    Invocation invocation = (Invocation) request.getData();
    TProtocol protocol = newProtocol(channel.getUrl(), buffer);
    try {
        protocol.writeMessageBegin(new TMessage(
                invocation.getMethodName(), TMessageType.CALL,
                thriftSeq.getAndIncrement()));
        protocol.writeStructBegin(new TStruct(invocation.getMethodName() + "_args"));
        for (int i = 0; i < invocation.getParameterTypes().length; i++) {
            Class<?> type = invocation.getParameterTypes()[i];

        }
    } catch (TException e) {
        throw new IOException(e.getMessage(), e);
    }

}
 
开发者ID:hufeng,项目名称:dubbo2.js,代码行数:19,代码来源:ThriftNativeCodec.java


示例12: process

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
public final void process(int seqid, TProtocol iprot, TProtocol oprot, I iface) throws TException {
  T args = getEmptyArgsInstance();
  try {
    args.read(iprot);
  } catch (TProtocolException e) {
    iprot.readMessageEnd();
    TApplicationException x = new TApplicationException(TApplicationException.PROTOCOL_ERROR, e.getMessage());
    oprot.writeMessageBegin(new TMessage(getMethodName(), TMessageType.EXCEPTION, seqid));
    x.write(oprot);
    oprot.writeMessageEnd();
    oprot.getTransport().flush();
    return;
  }
  iprot.readMessageEnd();
  TBase result = getResult(iface, args);
  oprot.writeMessageBegin(new TMessage(getMethodName(), TMessageType.REPLY, seqid));
  result.write(oprot);
  oprot.writeMessageEnd();
  oprot.getTransport().flush();
}
 
开发者ID:YinYanfei,项目名称:CadalWorkspace,代码行数:21,代码来源:ProcessFunction.java


示例13: process

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
public boolean process(TProtocol in, TProtocol out) throws TException {
  TMessage msg = in.readMessageBegin();
  ProcessFunction fn = processMap.get(msg.name);
  if (fn == null) {
    TProtocolUtil.skip(in, TType.STRUCT);
    in.readMessageEnd();
    TApplicationException x = new TApplicationException(TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"+msg.name+"'");
    out.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION, msg.seqid));
    x.write(out);
    out.writeMessageEnd();
    out.getTransport().flush();
    return true;
  }
  fn.process(msg.seqid, in, out, iface);
  return true;
}
 
开发者ID:YinYanfei,项目名称:CadalWorkspace,代码行数:17,代码来源:TBaseProcessor.java


示例14: writeException

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@SuppressWarnings({ "rawtypes" })
private void writeException(final TProtocol out, final TMessage msg, final WriterHandler onComplete,
		final TApplicationException x, TBase args) {
	Throwable cause = null;
	try {
		onComplete.beforeWrite(msg, args, null);
		out.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION, msg.seqid));
		x.write(out);
		out.writeMessageEnd();
		out.getTransport().flush();
	} catch (Throwable e) {
		cause = e;
	}
	onComplete.afterWrite(msg, cause, TMessageType.EXCEPTION, args, null);
}
 
开发者ID:houkx,项目名称:nettythrift,代码行数:16,代码来源:DefaultNettyProcessor.java


示例15: process

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
@Override
public final boolean process(final TProtocol in, final TProtocol out)
    throws TException {
  final TMessage msg = in.readMessageBegin();
  final ProcessFunction<GFXDServiceImpl, ?> fn = this.fnMap.get(msg.name);
  if (fn != null) {
    fn.process(msg.seqid, in, out, this.inst);
    // terminate connection on receiving closeConnection
    // direct class comparison should be the fastest way
    // TODO: SW: also need to clean up connection artifacts in the case of
    // client connection failure (ConnectionListener does get a notification
    // but how to tie the socket/connectionNumber to the connectionID?)
    return fn.getClass() != GFXDService.Processor.closeConnection.class;
  }
  else {
    TProtocolUtil.skip(in, TType.STRUCT);
    in.readMessageEnd();
    TApplicationException x = new TApplicationException(
        TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"
            + msg.name + "'");
    out.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION,
        msg.seqid));
    x.write(out);
    out.writeMessageEnd();
    out.getTransport().flush();
    return true;
  }
}
 
开发者ID:gemxd,项目名称:gemfirexd-oss,代码行数:29,代码来源:GFXDServiceImpl.java


示例16: write_args

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
public void write_args(TProtocol prot) throws TException {
	prot.writeMessageBegin(new TMessage(Processor.FUNCTION_NAME, TMessageType.CALL, 0));
	ArgsThriftBase args = new ArgsThriftBase();
	args.setFieldValue(AbstractThriftBase.FieldsEnum.VALUE, arg);
	args.write(prot);
	prot.writeMessageEnd();
}
 
开发者ID:venwyhk,项目名称:ikasoa,代码行数:8,代码来源:CallBack.java


示例17: receiveBase

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
protected void receiveBase(TBase result, String methodName) throws TException {
  TMessage msg = iprot_.readMessageBegin();
  if (msg.type == TMessageType.EXCEPTION) {
    TApplicationException x = TApplicationException.read(iprot_);
    iprot_.readMessageEnd();
    throw x;
  }
  if (msg.seqid != seqid_) {
    throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID, methodName + " failed: out of sequence response");
  }
  result.read(iprot_);
  iprot_.readMessageEnd();
}
 
开发者ID:adityayadav76,项目名称:internet_of_things_simulator,代码行数:14,代码来源:TServiceClient.java


示例18: typeString

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
private static String typeString(byte typeValue) {
    switch (typeValue) {
        case TMessageType.CALL:
            return "CALL";
        case TMessageType.REPLY:
            return "REPLY";
        case TMessageType.EXCEPTION:
            return "EXCEPTION";
        case TMessageType.ONEWAY:
            return "ONEWAY";
        default:
            return "UNKNOWN(" + (typeValue & 0xFF) + ')';
    }
}
 
开发者ID:line,项目名称:armeria,代码行数:15,代码来源:THttpService.java


示例19: encodeSuccess

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
private static HttpData encodeSuccess(ServiceRequestContext ctx,
                                      RpcResponse reply,
                                      SerializationFormat serializationFormat,
                                      String methodName, int seqId,
                                      TBase<?, ?> result) {

    final ByteBuf buf = ctx.alloc().buffer(128);
    boolean success = false;
    try {
        final TTransport transport = new TByteBufTransport(buf);
        final TProtocol outProto = ThriftProtocolFactories.get(serializationFormat).getProtocol(transport);
        final TMessage header = new TMessage(methodName, TMessageType.REPLY, seqId);
        outProto.writeMessageBegin(header);
        result.write(outProto);
        outProto.writeMessageEnd();

        ctx.logBuilder().responseContent(reply, new ThriftReply(header, result));

        final HttpData encoded = new ByteBufHttpData(buf, false);
        success = true;
        return encoded;
    } catch (TException e) {
        throw new Error(e); // Should never reach here.
    } finally {
        if (!success) {
            buf.release();
        }
    }
}
 
开发者ID:line,项目名称:armeria,代码行数:30,代码来源:THttpService.java


示例20: ThriftCall

import org.apache.thrift.protocol.TMessageType; //导入依赖的package包/类
/**
 * Creates a new instance that contains a Thrift {@link TMessageType#CALL} or {@link TMessageType#ONEWAY}
 * message.
 */
public ThriftCall(TMessage header, TBase<?, ?> args) {
    super(header);
    if (header.type != TMessageType.CALL && header.type != TMessageType.ONEWAY) {
        throw new IllegalArgumentException(
                "header.type: " + typeStr(header.type) + " (expected: CALL or ONEWAY)");
    }

    this.args = requireNonNull(args, "args");
}
 
开发者ID:line,项目名称:armeria,代码行数:14,代码来源:ThriftCall.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java FloodlightTestModuleLoader类代码示例发布时间:2022-05-21
下一篇:
Java SerializationException类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap