org.yx.http.handler.WebContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sumk Show documentation
Show all versions of sumk Show documentation
A quick developing framewort for internet company
/**
* Copyright (C) 2016 - 2030 youtongluan.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.yx.http.handler;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Objects;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.yx.common.context.NodeContext;
import org.yx.http.act.HttpActionInfo;
import org.yx.http.act.HttpActionNode;
public class WebContext extends NodeContext {
private final HttpActionInfo actionInfo;
private final HttpServletRequest httpRequest;
private final HttpServletResponse httpResponse;
private final Charset charset;
private Object data;
private int lowestOrder;
private Object result;
private transient String str_data;
private transient String str_resp;
private final long beginTime;
private boolean failed;
public long beginTime() {
return this.beginTime;
}
public String dataInString() {
return str_data;
}
public String respInString() {
return str_resp;
}
public Object result() {
return result;
}
void result(Object result, boolean cacheInStr) {
this.result = result;
if (cacheInStr && result != null && String.class == result.getClass()) {
this.str_resp = (String) result;
}
}
public WebContext(HttpActionInfo info, HttpServletRequest req, HttpServletResponse resp, long beginTime,
Charset charset) {
super(Objects.requireNonNull(info).node());
this.actionInfo = info;
this.httpRequest = Objects.requireNonNull(req);
this.charset = Objects.requireNonNull(charset);
this.httpResponse = resp;
this.beginTime = beginTime;
}
public Charset charset() {
return this.charset;
}
public Object data() {
return data;
}
public byte[] getDataInByteArray() {
if (data instanceof String) {
return ((String) data).getBytes(charset());
}
return (byte[]) data;
}
public HttpServletRequest httpRequest() {
return httpRequest;
}
public HttpServletResponse httpResponse() {
return httpResponse;
}
void data(Object data) {
this.data = data;
if (data != null && String.class == data.getClass()) {
this.str_data = (String) data;
}
}
/**
* 开发者定义的原始act,这里的act不包含逗号。 如果有逗号分隔,这里就只是@Web中的一段
*
* @return 就是@Web上定义的act,不为null
*/
public String rawAct() {
return this.actionInfo.rawAct();
}
public int getLowestOrder() {
return lowestOrder;
}
public void setLowestOrder(int lowestOrder) {
this.lowestOrder = lowestOrder;
}
public List tags() {
return this.node.tags();
}
public boolean isFailed() {
return failed;
}
public void setFailed(boolean failed) {
this.failed = failed;
}
public HttpActionInfo actionInfo() {
return actionInfo;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy