您的位置:首页 > 房产 > 家装 > 【lesson11】客户端backUp类的实现

【lesson11】客户端backUp类的实现

2025/1/8 11:07:16 来源:https://blog.csdn.net/m0_67077469/article/details/139610518  浏览:    关键词:【lesson11】客户端backUp类的实现

文章目录

  • 成员变量
  • 成员函数
    • backUp
    • getFileIdentifier
    • isNeedUpload
    • upLoad
    • RunMoudle

成员变量

private:std::string _back_dir;//备份文件夹路径名dataManager* _data;//dataManager指针对象

成员函数

backUp

backUp(const std::string& back_dir, const std::string& back_file):_back_dir(back_dir)
{_data = new dataManager(back_file);//创建dataManager对象指针fileUtil fu(_back_dir);//如果没有_back_dir文件夹就创建它if (fu.exists() == false)fu.createDirectory();
}

getFileIdentifier

//传入文件名就可以得到getFileIdentifier返回的唯一标识
std::string getFileIdentifier(const std::string& filePath)
{fileUtil fu(filePath);if(fu.exists() == false){ std::cout << "getFileIdentifier fail not exists" << std::endl;return "";}//自己设计的唯一标识std::stringstream s;s << fu.fileName() << "-";s << std::to_string(fu.fileSize()) << "-";s << std::to_string(fu.lastModifyTime());return s.str();
}

isNeedUpload

//判断文件是否需要备份上传
bool isNeedUpload(const std::string& filePath)
{//1.获取哈希表中文件之前的唯一标识std::string old_id;bool ret = _data->getUniqueIdentifierByFilePath(filePath , &old_id);if (ret != false){//2.获取现在的唯一标识std::string new_id = getFileIdentifier(filePath);//3.判断两者是否相同,相同者表明不需要备份上传,否则就需要if (new_id == old_id)return false;}//如果文件超过设置的时间内都没有变化,则需要上传,否则不需要fileUtil fu(filePath);if (time(nullptr) - fu.lastModifyTime() <= 3){return false;}return true;
}

upLoad

bool upLoad(const std::string& filePath)
{//1.获取数据std::string body;fileUtil fu(filePath);fu.getContent(&body);//2.搭建客户端, 并发送请求httplib::Client client(SERVER_IP, SERVER_PORT);//2.1构建上传请求内容httplib::MultipartFormData item;item.name = "file";item.filename = fu.fileName();item.content = body;item.content_type = "application/octet-stream";httplib::MultipartFormDataItems items;items.push_back(item);//2.2发送请求auto ret = client.Post("/upload", items);if (!ret && ret->status != 200){return false;}return true;
}

RunMoudle

bool RunMoudle()
{while (true){//1.获取文件夹所有文件的信息fileUtil fu(_back_dir);std::vector<std::string> arry;fu.getDirectory(&arry);//2..遍历所有文件for (auto& e : arry){/*_data->insert(e, id);*///2.1判断是否需要上传,是:继续往下走,否:继续遍历下一个文件if (isNeedUpload(e) == false){continue;}std::string id = getFileIdentifier(e);if (id.empty())continue;//3.上传成功则修改备份信息if (upLoad(e) == true){_data->insert(e, id);}}Sleep(1);}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com