好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 如何用Django處理gzip數(shù)據(jù)流

如何用Django處理gzip數(shù)據(jù)流

熱門標簽:天津塘沽區(qū)地圖標注 滴滴地圖標注公司 江門智能電話機器人 如何申請400電話代理 400電話在線如何申請 地圖標注可以遠程操作嗎 杭州房產(chǎn)地圖標注 智能電話機器人調(diào)研 甘肅高頻外呼系統(tǒng)

最近在工作中遇到一個需求,就是要開一個接口來接收供應(yīng)商推送的數(shù)據(jù)。項目采用的python的django框架,我是想也沒想,就直接一梭哈,寫出了如下代碼:

class XXDataPushView(APIView):
  """
  接收xx數(shù)據(jù)推送
  """
		# ...
  @white_list_required
  def post(self, request, **kwargs):
    req_data = request.data or {}
				# ...

但隨后,發(fā)現(xiàn)每日數(shù)據(jù)并沒有任何變化,質(zhì)問供應(yīng)商是否沒有做推送,在忽悠我們。然后對方給的答復是,他們推送的是gzip壓縮的數(shù)據(jù)流,接收端需要主動進行解壓。此前從沒有處理過這種壓縮的數(shù)據(jù),對方具體如何做的推送對我來說也是一個黑盒。

因此,我要求對方給一個推送的簡單示例,沒想到對方不講武德,仍過來一段沒法單獨運行的java代碼:

private byte[] compress(JSONObject body) {
  try {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    GZIPOutputStream gzip = new GZIPOutputStream(out);
    gzip.write(body.toString().getBytes());
    gzip.close();
    return out.toByteArray();
  } catch (Exception e) {
    logger.error("Compress data failed with error: " + e.getMessage()).commit();
  }
  return JSON.toJSONString(body).getBytes();
}

public void post(JSONObject body, String url, FutureCallbackHttpResponse> callback) {
  RequestBuilder requestBuilder = RequestBuilder.post(url);
  requestBuilder.addHeader("Content-Type", "application/json; charset=UTF-8");
  requestBuilder.addHeader("Content-Encoding", "gzip");

  byte[] compressData = compress(body);

  int timeout = (int) Math.max(((float)compressData.length) / 5000000, 5000);

  RequestConfig.Builder requestConfigBuilder = RequestConfig.custom();
  requestConfigBuilder.setSocketTimeout(timeout).setConnectTimeout(timeout);

  requestBuilder.setEntity(new ByteArrayEntity(compressData));

  requestBuilder.setConfig(requestConfigBuilder.build());

  excuteRequest(requestBuilder, callback);
}

private void excuteRequest(RequestBuilder requestBuilder, FutureCallbackHttpResponse> callback) {
  HttpUriRequest request = requestBuilder.build();
  httpClient.execute(request, new FutureCallbackHttpResponse>() {
    @Override
    public void completed(HttpResponse httpResponse) {
      try {
        int responseCode = httpResponse.getStatusLine().getStatusCode();
        if (callback != null) {
          if (responseCode == 200) {
            callback.completed(httpResponse);
          } else {
            callback.failed(new Exception("Status code is not 200"));
          }
        }
      } catch (Exception e) {
        logger.error("Get error on " + requestBuilder.getMethod() + " " + requestBuilder.getUri() + ": " + e.getMessage()).commit();
        if (callback != null) {
          callback.failed(e);
        }
      }

      EntityUtils.consumeQuietly(httpResponse.getEntity());
    }

    @Override
    public void failed(Exception e) {
      logger.error("Get error on " + requestBuilder.getMethod() + " " + requestBuilder.getUri() + ": " + e.getMessage()).commit();
      if (callback != null) {
        callback.failed(e);
      }
    }

    @Override
    public void cancelled() {
      logger.error("Request cancelled on " + requestBuilder.getMethod() + " " + requestBuilder.getUri()).commit();
      if (callback != null) {
        callback.cancelled();
      }
    }
  });
}

從上述代碼可以看出,對方將json數(shù)據(jù)壓縮為了gzip數(shù)據(jù)流stream。于是搜索django的文檔,只有這段關(guān)于gzip處理的裝飾器描述:

django.views.decorators.gzip 里的裝飾器控制基于每個視圖的內(nèi)容壓縮。

  • gzip_page()

如果瀏覽器允許 gzip 壓縮,那么這個裝飾器將壓縮內(nèi)容。它相應(yīng)的設(shè)置了 Vary 頭部,這樣緩存將基于 Accept-Encoding 頭進行存儲。

但是,這個裝飾器只是壓縮請求響應(yīng)至瀏覽器的內(nèi)容,我們目前的需求是解壓縮接收的數(shù)據(jù)。這不是我們想要的。

幸運的是,在flask中有一個擴展叫flask-inflate,安裝了此擴展會自動對請求來的數(shù)據(jù)做解壓操作。查看該擴展的具體代碼處理:

# flask_inflate.py
import gzip
from flask import request

GZIP_CONTENT_ENCODING = 'gzip'


class Inflate(object):
  def __init__(self, app=None):
    if app is not None:
      self.init_app(app)

  @staticmethod
  def init_app(app):
    app.before_request(_inflate_gzipped_content)


def inflate(func):
  """
  A decorator to inflate content of a single view function
  """
  def wrapper(*args, **kwargs):
    _inflate_gzipped_content()
    return func(*args, **kwargs)

  return wrapper


def _inflate_gzipped_content():
  content_encoding = getattr(request, 'content_encoding', None)

  if content_encoding != GZIP_CONTENT_ENCODING:
    return

  # We don't want to read the whole stream at this point.
  # Setting request.environ['wsgi.input'] to the gzipped stream is also not an option because
  # when the request is not chunked, flask's get_data will return a limited stream containing the gzip stream
  # and will limit the gzip stream to the compressed length. This is not good, as we want to read the
  # uncompressed stream, which is obviously longer.
  request.stream = gzip.GzipFile(fileobj=request.stream)

上述代碼的核心是:

 request.stream = gzip.GzipFile(fileobj=request.stream)

于是,在django中可以如下處理:

class XXDataPushView(APIView):
  """
  接收xx數(shù)據(jù)推送
  """
		# ...
  @white_list_required
  def post(self, request, **kwargs):
    content_encoding = request.META.get("HTTP_CONTENT_ENCODING", "")
    if content_encoding != "gzip":
      req_data = request.data or {}
    else:
      gzip_f = gzip.GzipFile(fileobj=request.stream)
      data = gzip_f.read().decode(encoding="utf-8")
      req_data = json.loads(data)
    # ... handle req_data

ok, 問題完美解決。還可以用如下方式測試請求:

import gzip
import requests
import json

data = {}

data = json.dumps(data).encode("utf-8")
data = gzip.compress(data)

resp = requests.post("http://localhost:8760/push_data/",data=data,headers={"Content-Encoding": "gzip", "Content-Type":"application/json;charset=utf-8"})

print(resp.json())

以上就是如何用Django處理gzip數(shù)據(jù)流的詳細內(nèi)容,更多關(guān)于Django處理gzip數(shù)據(jù)流的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • Django url 路由匹配過程詳解
  • python基于爬蟲+django,打造個性化API接口
  • 詳解Django關(guān)于StreamingHttpResponse與FileResponse文件下載的最優(yōu)方法
  • Django 實現(xiàn)圖片上傳和下載功能
  • Django前后端分離csrf token獲取方式
  • django中ImageField的使用詳解
  • Django用內(nèi)置方法實現(xiàn)簡單搜索功能的方法
  • 用ldap作為django后端用戶登錄驗證的實現(xiàn)
  • 詳解Django自定義圖片和文件上傳路徑(upload_to)的2種方式
  • Django數(shù)據(jù)統(tǒng)計功能count()的使用
  • Django REST Framework 分頁(Pagination)詳解

標簽:重慶 河池 東莞 長春 廊坊 德宏 漢中 臨汾

巨人網(wǎng)絡(luò)通訊聲明:本文標題《如何用Django處理gzip數(shù)據(jù)流》,本文關(guān)鍵詞  如,何用,Django,處理,gzip,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《如何用Django處理gzip數(shù)據(jù)流》相關(guān)的同類信息!
  • 本頁收集關(guān)于如何用Django處理gzip數(shù)據(jù)流的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 久久久久性| 三级午夜| 日韩久久久久久精品无码品善网| 麻豆高清在线| 无限韩国视频免费播放| ass极品大白腚cpis| 久久香蕉综合精品国产| 亚洲AⅤ无码一区二区波多野按摩 苍井そら50分钟无码流出 | 丝瓜榴莲秋葵榴莲污污污| 魅魔被群cao的合不拢腿H小说 | 老鸭窝91久久久久精品色| 久久久久国产一区二区三区四区| 辣文在线阅读| 秋霞韩国电影网| 欧美 日韩 人妻 高清 中文| 91桃子| 精品亚洲一区二区| Free HD XXXX Moms movie777| 国精产品一区二区三区不卡| 政和县| 小奶娃的婬乱生活H| 男人捅女人下面的视频| 这里是九九伊人| gog0美女大尺度人体私拍| 牛牛影视在线| 欧美毛茸茸| 乳罩脱了喂男人吃奶视频| 黑人巨鞭大战欧美肥妇| 一区二区三区产品乱码的解决方法| 男啪女色黄无遮挡免费观看| 美妇厨房激情婬乱无删减| 两男一女办公室内啪啪| 国产精品爽爽va免费观看| 好大好粗好爽| 成年免费大片黄在看| 体育生爽擼又大又粗的雞巴电影| 乌克兰精品少妇一区二区三区| 我和岳一晚4次| 浪货趴办公点~H揉秘书在线播放| 狠狠色综合网站久久久久久久| 色戒未删减版在线|