文件分片上传

import md5 from "@/utils/uploadMD5";  //见上一篇文章封装MD5
import { taskInfoService, initTaskService, mergeUploadService } from "@/api/chunkUploadFile";
const FILE_CHUNKSIZE = 5 * 1024 * 1024;
const BlobSlice =
  File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice;
let failCount = 0;

//定义data
data() {
  return {
    file: null,
    fileMd5: "",
    uploadId: "",
    fileName: "",
    simultaneousUploads: 3,  //并发数
    uploadPercentage: 0,  //上传进度
    uploadFail: false,  //上传失败
  };
}

async fileUpload() {
  this.file.chunkList = [];
  this.fileMd5 = await md5(this.file, FILE_CHUNKSIZE);

  const checkRes = await taskInfoService(this.fileMd5); //检查是否已上传
  if (checkRes.code === 100000) {
    // 已上传
    this.uploadPercentage = 100;
    return;
  }
  if (checkRes.code === 300000) {
    // 上传失败
    this.uploadFail = false;
    return;
  }
  let fileChunks = this.createFileChunk();
  const initTaskData = {
    fileMd5: this.fileMd5,
    fileName: this.file.name,
    fileSize: this.file.size,
    chunkSize: FILE_CHUNKSIZE,
    partCount: Math.ceil(this.file.size / FILE_CHUNKSIZE),
    rtspUrl: this.fileInfo.rtspUrl,
    beginTime: this.fileInfo.beginTime,
    endTime: this.fileInfo.endTime,
    fileType: this.fileInfo.type,
  };
  if (checkRes.code === 2000000) {
    // 断点续传
    const uploadedList = checkRes.urlList;  //已上传成功的切片列表
    uploadedList.forEach((uploaded) => {
      let index = this.fileChunks.findIndex((item) => item === uploaded);
      if (index !== -1) {
        this.fileChunks.splice(index, 1);
      }
    });
  }
  // 文件未上传
  const initRes = await initTaskService(initTaskData);  //获取各切片上传地址
  let uploadUrls = initRes.data.urlList;
  this.uploadId = initRes.data.uploadId;
  this.fileName = initRes.data.fileName;
  fileChunks.map((chunkItem, index) => {
    this.file.chunkList.push({
      chunkNumber: index + 1,
      chunk: chunkItem,
      uploadUrl: uploadUrls[index],
    });
  });
  // 上传
  await this.uploadChunkBase(this.file.chunkList);
  // 合并文件
  await mergeUploadService({
    uploadId: this.uploadId,
    fileName: this.fileName,
    fileMd5: this.fileMd5,
    rtspUrl: this.fileInfo.rtspUrl,
    beginTime: this.fileInfo.beginTime,
    endTime: this.fileInfo.endTime,
    fileType: this.fileInfo.type,
  });
}

//各切片上传
uploadChunkBase(chunkList) {
  let successCount = 0;
  let totalChunks = chunkList.length;
  return new Promise((resolve, reject) => {
    const handler = () => {
      if (chunkList.length) {
        const chunkItem = chunkList.shift();
        // 直接上传二进制,不需要构造 FormData,否则上传后文件损坏
        axios
          .put(chunkItem.uploadUrl, chunkItem.chunk.file, {
            // 上传进度处理
            headers: {
              "Content-Type": "application/octet-stream",
            },
          })
          .then((response) => {
            if (response.status === 200) {
              console.log("分片:" + chunkItem.chunkNumber + " 上传成功");
              successCount++;
              this.uploadPercentage = (successCount / totalChunks) * 100;
              // 继续上传下一个分片
              handler();
            } else {
              console.log(
                "上传失败:" + response.status + "," + response.statusText
              );
            }
          })
          .catch((error) => {
            // 失败后只上传五次,防止卡死
            failCount++;
            if (failCount < 5) {
              // 更新状态
              console.log(
                "分片:" + chunkItem.chunkNumber + " 上传失败," + error
              );
              // 重新添加到队列中
              chunkList.push(chunkItem);
              handler();
            } else {
              this.$message.error(
                "分片:" + chunkItem.chunkNumber + " 上传失败"
              );
            }
          });
      }
      if (successCount >= totalChunks) {
        resolve();
      }
    };
    // 并发  import Queue from 'promise-queue-plus';
    for (let i = 0; i < this.simultaneousUploads; i++) {
      handler();
    }
  });
}

// 文件分片
createFileChunk() {
  const fileChunkList = [];
  let count = 0;
  while (count < this.file.size) {
    fileChunkList.push({
      file: BlobSlice.call(this.file, count, count + FILE_CHUNKSIZE),
    });
    count += FILE_CHUNKSIZE;
  }
  return fileChunkList;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 210,914评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 89,935评论 2 383
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,531评论 0 345
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,309评论 1 282
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,381评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,730评论 1 289
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,882评论 3 404
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,643评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,095评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,448评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,566评论 1 339
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,253评论 4 328
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,829评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,715评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,945评论 1 264
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,248评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,440评论 2 348

推荐阅读更多精彩内容