/* * This file is part of the "bluetoothheater" distribution * (https://gitlab.com/mrjones.id.au/bluetoothheater) * * Copyright (C) 2018 Ray Jones * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef BTC_BROWSERUPLOAD_H_ #define BTC_BROWSERUPLOAD_H_ #include #include #include #include struct sBrowserUpload{ struct { String name; int size; } SrcFile; struct { File file; // a File object to store the received file into SPIFFS int state; } DstFile; bool bUploadActive; int _queueResult; volatile bool _bProcessed; //methods sBrowserUpload() { reset(); createQueue(); _bProcessed = true; } void createQueue(); void reset() { if(DstFile.file) { DstFile.file.close(); } DstFile.state = 0; bUploadActive = false; } void init(); int begin(String& filename, int filesize = -1); int doFragment(HTTPUpload& upload, httpsserver::HTTPResponse * res = NULL); int end(HTTPUpload& upload); bool isSPIFFSupload() const { return DstFile.state != 0; }; bool isOK() const; bool Ready() const; int queueFragment(HTTPUpload& upload); bool queueProcess(); int queueResult(); }; struct sUpdateFragment { // uint16_t len; // uint8_t buf[1500]; HTTPUpload *pUploadInfo; }; #endif