C++ 工具函数库

在写一些大型项目的过程中经常需要一些工具函数,例如获取随机数、计时器、打印函数、重要常量(如最大值)、信号与槽等,由于每一个工程都自己手动实现一个实在是太傻,我将其总结放入一个文件中。


utils.h

// Copyright(C), Edward-Elric233
// Author: Edward-Elric233
// Version: 1.0
// Date: 2022/6/27
// Description: 
#ifndef UTILS_H
#define UTILS_H#include "json.hpp"
#include <iostream>
#include <random>
#include <chrono>
#include <fstream>
#include <memory>
#include <mutex>
#include <unordered_map>
#include <functional>namespace edward {constexpr int INF = 0x3f3f3f3f;//extern std::ofstream ofs;inline void print() {std::cout << "\n";
//    ofs << "\n";
}
template<typename T, typename... Args>
void print(T&& first, Args&&... args) {std::cout << first << " ";
//    ofs << first << " ";print(std::forward<Args>(args)...);
}template<typename Iter>
void printArr(Iter begin, Iter end) {while (begin != end) {std::cout << *begin++ << " ";}std::cout << "\n";
}template<typename T1, typename T2>
std::ostream& operator<<(std::ostream& os, const std::pair<T1, T2>& pr) {os << pr.first << " " << pr.second;return os;
}template<typename Container>
void printArr(const Container& container) {for (auto x : container) {std::cout << x << " ";}std::cout << "\n";
}class Random {
public:// random number generator.static std::mt19937 pseudoRandNumGen;static void initRand(int seed) { pseudoRandNumGen = std::mt19937(seed); }   //设置随机数种子static int fastRand(int lb, int ub) { return (pseudoRandNumGen() % (ub - lb)) + lb; }static int fastRand(int ub) { return pseudoRandNumGen() % ub; }static int rand(int lb, int ub) { return std::uniform_int_distribution<int>(lb, ub - 1)(pseudoRandNumGen); }static int rand(int ub) { return std::uniform_int_distribution<int>(0, ub - 1)(pseudoRandNumGen); }
};class Timer {std::chrono::time_point<std::chrono::system_clock> timePoint_;
public:Timer(): timePoint_(std::chrono::system_clock::now()) {}Timer(const Timer&) = delete;~Timer() = default;void operator() (const std::string& msg) {auto duration = std::chrono::system_clock::now() - timePoint_;print(msg, static_cast<double>(duration.count()) / decltype(duration)::period::den, "s");}void reset() {timePoint_ = std::chrono::system_clock::now();}void operator() (nlohmann::json& arr) {auto duration = std::chrono::system_clock::now() - timePoint_;arr.push_back(duration.count());}};using Slot = std::shared_ptr<void>;//前置声明
template<typename Signature>
class Signal;
template<typename Ret, typename... Args>
class Signal<Ret(Args...)>;namespace detail {//前置声明template<typename Callback> class SlotImpl;template<typename Callback>class SignalImpl {public:using SlotList = std::unordered_map<SlotImpl<Callback> *, std::weak_ptr<SlotImpl<Callback>>>;SignalImpl(): slots_(new SlotList), mutex_() {}~SignalImpl() {}//只能在加锁后使用void cowWithLock() {if (!slots_.unique()) {slots_.reset(new SlotList(*slots_));}}//添加槽函数void add(const std::shared_ptr<SlotImpl<Callback>> &slot) {std::lock_guard<std::mutex> lockGuard(mutex_);cowWithLock();slots_->insert({slot.get(), slot});}//供SlotImpl调用,删除槽函数void remove(SlotImpl<Callback> *slot) {std::lock_guard<std::mutex> lockGuard(mutex_);cowWithLock();slots_->erase(slot);}std::shared_ptr<SlotList> getSlotList() {std::lock_guard<std::mutex> lockGuard(mutex_);return slots_;}private:std::mutex mutex_;//保存SlotImpl的weak_ptr//之所以不保存SlotList而是保存其shared_ptr是为了实现COWstd::shared_ptr<SlotList> slots_;};template<typename Callback>class SlotImpl {public:SlotImpl(Callback&& cb, const std::shared_ptr<SignalImpl<Callback>> &signal): cb_(cb), signal_(signal) {}~SlotImpl() {auto signal = signal_.lock();if (signal) {signal->remove(this);}}Callback cb_;private://保存SignalImpl的weak_ptrstd::weak_ptr<SignalImpl<Callback>> signal_;};
}template<typename Ret, typename... Args>
class Signal<Ret(Args...)> {
public:using Callback = std::function<Ret(Args...)>;using SignalImpl = detail::SignalImpl<Callback>;using SlotImpl = detail::SlotImpl<Callback>;Signal(): impl_(new SignalImpl) {}~Signal() {}/*!* 添加槽函数* @param cb 槽函数* @return 需要保存这个智能指针,否则会自动从槽函数列表中删除*/template<typename Func>Slot connect(Func&& cb) {std::shared_ptr<SlotImpl> slot(new SlotImpl(std::forward<Func>(cb), impl_));impl_->add(slot);return slot;}template<typename ...ARGS>void operator() (ARGS&&... args) {auto slots = impl_->getSlotList();//使用引用避免智能指针的解引用auto &s = *slots;for (auto &&[pSlotImpl, pWkSlotImpl] : s) {auto pShrSlotImpl = pWkSlotImpl.lock();if (pShrSlotImpl) {pShrSlotImpl->cb_(std::forward<ARGS>(args)...);}}}private://保存shared_ptr的原因是需要传递给SlotImpl,在SlotImpl析构的时候会清除自己const std::shared_ptr<SignalImpl> impl_;
};}#endif //UTILS_H

utils.cpp

// Copyright(C), Edward-Elric233
// Author: Edward-Elric233
// Version: 1.0
// Date: 2022/6/27
// Description: 
#include "utils.h"namespace edward {std::mt19937 Random::pseudoRandNumGen(std::chrono::system_clock::now().time_since_epoch().count()); //默认使用当下时间戳初始化随机数种子,精确到纳秒//std::ofstream ofs("../test/debug.txt");}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/383509.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

muduo网络库使用入门

muduo网络库介绍 muduo网络库是陈硕大神开发的基于主从Reactor模式的&#xff0c;事件驱动的高性能网络库。 网络编程中有很多是事务性的工作&#xff0c;使用muduo网络库&#xff0c;用户只需要填上关键的业务逻辑代码&#xff0c;并将回调注册到框架中&#xff0c;就可以实…

C++ map/unordered_map元素类型std::pair<const key_type, mapped_type>陷阱

在开发的过程中需要遍历一个unordered_map然后把他的迭代器传给另一个对象&#xff1a; class A; class B { public:void deal(const std::pair<int, A>& item); }; std::unordered_map<int, A> mp; B b; for (auto &pr : mp) {b.deal(pr); }在我的项目中…

Ubuntu install ‘Bash to dock‘

绪论 在Ubuntu环境搭建这篇博客中记录了使用Dash To Dock来配置Ubuntu的菜单项&#xff0c;使得实现macOS一样的效果。为了配置新电脑的环境&#xff0c;我还是想安装这个软件。但是如今在Ubuntu Software中已经找不到这个软件了&#xff0c;我在网上借鉴了一些博客的经验才得…

Leetcode第309场周赛

Date: September 4, 2022 Difficulty: medium Rate by others: ⭐⭐⭐⭐ Time consuming: 1h30min 题目链接 竞赛 - 力扣 (LeetCode) 题目解析 2399. 检查相同字母间的距离 class Solution {public:bool checkDistances(string s, vector<int>& distance) {vec…

C++ 模板函数、模板类:如果没有被使用就不会被实例化

C中如果一个模板函数没有使用过&#xff0c;那么其局部静态变量都不会被实例化&#xff1a; class A { public:A() {edward::print("A ctor");} };template<typename T> void test() {static A a; }int main() {test<int>(); //如果注释掉则不会有输出r…

C++ 条件变量的使用

绪论 并发编程纷繁复杂&#xff0c;其中用于线程同步的主要工具——条件变量&#xff0c;虽然精悍&#xff0c;但是要想正确灵活的运用却并不容易。 对于条件变量的理解有三个难点&#xff1a; 为什么wait函数需要将解锁和阻塞、唤醒和上锁这两对操作编程原子的&#xff1f;为…

C++Primer学习笔记:第1章 开始

本博客为阅读《C Primer》&#xff08;第5版&#xff09;的读书笔记 ps:刚开始的时候我将所有的笔记都放在一篇博客中&#xff0c;等看到第六章的时候发现实在是太多了&#xff0c;导致我自己都不想看&#xff0c;为了日后回顾&#xff08;不那么有心理压力&#xff09;&#…

【ubuntu】ubuntu14.04上安装搜狗输入法

** 在ubuntu14.04.4 desktop 64amd版本上安装sogou输入法 ** 0.换安装源为中国源&#xff08;可选&#xff0c;下载会快些&#xff09; 1.搭fcitx环境 2.安装sogou for linux 详细步骤&#xff1a; 因为sogou中文输入法基于fcitx(Free Chinese Input Toy for X),需要先搭环境…

【ubuntu】ubuntu下用make编译程序报错找不到openssl/conf.h

ubuntu下用make编译程序报错找不到openssl/conf.h 安装libssl-dev:i386&#xff0c;sudo apt-get install libssl-dev:i386 看好版本&#xff0c;如果不加i386默认下载的是32位&#xff0c;用ln命令连接过去也还是用不了的!libssl.dev安装好后&#xff0c;用find / -name libs…

【ubuntu】ubuntu如何改变系统用户名

ubuntu如何改变系统用户名 方法1&#xff1a;修改现有用户名 方法2&#xff1a;创建新用户&#xff0c;删掉旧用户 方法1&#xff1a; * *—&#xff01;&#xff01;&#xff01;有博客说要先改密码&#xff0c;再改用户名&#xff0c;否则会出现无法登陆状况&#xff01;&…

什么是signal(SIGCHLD, SIG_IGN)函数

什么是signal(SIGCHLD, SIG_IGN)函数 在进行网络编程时候遇到这个函数的使用&#xff0c;自己学习结果如下&#xff0c;有不对请帮忙指正:) signal(SIGCHLD, SIG_IGN)打开manpage康一康~ sighandler_t signal ( int signum, sighandler_t handler );参数1 int signum: 就是…

ssh连接不上linux虚拟机

ssh连接不上linux虚拟机 1.开启ssh服务 linux虚拟机下命令行输入&#xff1a; start service ssh如果显示没有ssh&#xff0c;就下面两个试一试哪一个ok&#xff0c;安装一下ssh&#xff1a; sudo apt-get install openssh-server sudo apt-get install sshd2.还有人说可能是…

没写client,想先测试server端怎么办?

没写client&#xff0c;想先测试server端怎么办&#xff1f; 办法&#xff1a; 1.先打开终端./server&#xff0c;运行起来server 2.再开一个终端&#xff0c; 输入nc 127.0.0.1 8888 回车&#xff08;这里port号要和server里边设置的一致&#xff0c;127.0.0.1是和本机的测试…

【报错解决】linux网络编程报错storage size of ‘serv_addr’ isn’t known解决办法

linux网络编程报错storage size of ‘serv_addr’ isn’t known解决办法 报错如下&#xff1a; server.c:18:21: error: storage size of ‘serv_addr’ isn’t known struct sockaddr_in serv_addr, clit_addr; ^server.c:18:32: error: storage size of ‘clit_addr’ isn’…

【c】写头文件要加#ifndef,#define, #endif

头文件首位 编写.h时&#xff0c; 最好加上如下&#xff0c;用来防止重复包含头文件&#xff1a; 例如&#xff1a; 要编写头文件test.h 在头文件开头写上两行&#xff1a;#ifndef _TEST_H#define _TEST_H// 文件名的大写#endif头文件结尾写上一行&#xff1a;#endif这样做是为…

【c】【报错解决】incompatible implicit declaration

【报错解决】incompatible implicit declaration 背景; 1.自己封装的函数wrap.c包含&#xff1a; #include "wrap.h"2.主函数调用如下&#xff1a; #include <stdio.h> #include <stdlib.h> ... #include <errno.h> #include "wrap.h"…

【ubuntu】vim语法高亮设置无效

如果你的.vimrc配置了语法高亮&#xff0c;但是你的vim没实现&#xff0c;可能你的vim是vim-tiny的黑白版本&#xff0c;你需要vim-gnome这个带GUI的彩色版本。 apt-get update apt-get upgrade apt-get install vim-gnome reboot打开vi就能看到彩色啦

__attribute__机制介绍

1. __attribute__ GNU C的一大特色&#xff08;却不被初学者所知&#xff09;就是__attribute__机制。 __attribute__可以设置函数属性(Function Attribute)、变量属性(Variable Attribute)和类型属性(Type Attribute) __attribute__前后都有两个下划线&#xff0c;并且后面会紧…

【git】git基本操作命令

1.建立本地仓库 git config --global user.name "lora" git config --global user.email "xxxgmail.com"2.建立目录 mkdir xxx3.初始化 cd xxx //进入目录 git init //初始化4.将代码上传至本地缓存区 git add . //上传全部 git add 文件名 //…

【git】解决gitlab ip更改问题

有时候因为部署gitlab虚拟机的ip发生变化&#xff0c;gitlab的clone地址没有同时更新到新的ip&#xff0c; 这导致后续clone报错&#xff0c;解决办法如下&#xff1a; 进入部署gitlab的主机&#xff1a; sudo vim /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.…