mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
04a9bc46f4
zealously updates and adds qTox copyright information. Fixes #5713
75 lines
2.0 KiB
C++
75 lines
2.0 KiB
C++
/*
|
|
Copyright © 2019 by The qTox Project Contributors
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
qTox is libre 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.
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "src/core/toxfile.h"
|
|
#include <QFile>
|
|
#include <QRegularExpression>
|
|
#include <tox/tox.h>
|
|
|
|
#define TOX_HEX_ID_LENGTH 2 * TOX_ADDRESS_SIZE
|
|
|
|
/**
|
|
* @file corestructs.h
|
|
* @brief Some headers use Core structs but don't need to include all of core.h
|
|
*
|
|
* They should include this file directly instead to reduce compilation times
|
|
*
|
|
* @var uint8_t ToxFile::fileKind
|
|
* @brief Data file (default) or avatar
|
|
*/
|
|
|
|
/**
|
|
* @brief ToxFile constructor
|
|
*/
|
|
ToxFile::ToxFile(uint32_t fileNum, uint32_t friendId, QString filename, QString filePath,
|
|
FileDirection Direction)
|
|
: fileKind{TOX_FILE_KIND_DATA}
|
|
, fileNum(fileNum)
|
|
, friendId(friendId)
|
|
, fileName{filename}
|
|
, filePath{filePath}
|
|
, file{new QFile(filePath)}
|
|
, bytesSent{0}
|
|
, filesize{0}
|
|
, status{INITIALIZING}
|
|
, direction{Direction}
|
|
{}
|
|
|
|
bool ToxFile::operator==(const ToxFile& other) const
|
|
{
|
|
return (fileNum == other.fileNum) && (friendId == other.friendId)
|
|
&& (direction == other.direction);
|
|
}
|
|
|
|
bool ToxFile::operator!=(const ToxFile& other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
|
|
void ToxFile::setFilePath(QString path)
|
|
{
|
|
filePath = path;
|
|
file->setFileName(path);
|
|
}
|
|
|
|
bool ToxFile::open(bool write)
|
|
{
|
|
return write ? file->open(QIODevice::ReadWrite) : file->open(QIODevice::ReadOnly);
|
|
}
|