Let's talk about a language that doesn't suck
npm
Javascript Package Manager
Node Package Manager
npm install request
fetch a package called request
A package to add padding to a string
Removed by its author
In the C++ community, we were slightly amused
auto left_pad(std::string_view str, int n, char fill = ' ') {
auto padded = right_pad(str, n, fill);
std::rotate(padded.begin(),
padded.begin() + str.size(),
padded.end());
return padded;
}
That's a rotate!
left-pad/index.js
function leftPad (str, len){
var i = -1;
len = len - str.length;
while (++i < len) {
str = ' ' + str;
}
return str;
}
How long would it take you to write an implementation that is:
npm install left-pad
takes a few seconds
Package Managers (npm cargo, pip, etc) are tools that allow to consumme and produce sharable code trivially
C++ developers are not superior beings
We just have terrible tools
A program consists of [...] translation units linked together.
The text of the program is kept in units called source files [...].
A source file together with all the headers [...] is called a translation unit.
A program consists of one or more translation units linked together.
A module unit is a translation unit [...]
🦄 A program consists of module units linked together. 🦄
A translation unit consists of a sequence of declarations.
A declaration is said to be a definition of each entity that it defines.
Every program shall contain exactly one definition of every [...] function or variable that is odr-used in that program outside of a discarded statement.
boost::asio::tcp::socket socket(...);
This is what I want
asio.lib
tcp.o
tcp.cppm
module boost.asio.tcp;
boost::asio::tcp
socket
Most software today is very much like an Egyptian pyramid with millions of bricks piled on top of each other, with no structural integrity, but just done by brute force and thousands of slaves.
libfoo
System A (Development)
libfoo
System B (Deployment)
find_package(boost::thread)
What does boost::thread
mean ?
template
concept
/ Generic programminginline
auto
deduced return typeconstexpr
/ consteval
cmake -DCMAKE_TOOLCHAIN_FILE=msvc-x64.cmake
Prefer expressing semantics in C++ code!
#include <iostream>
int main() {
std::cout << "Hello Word\n";
}
#include <iostream>
int main() {
std::cout << "Hello Word\n";
}
npm install lodash-modularized
+ lodash-modularized@0.0.2
added 197 packages from 6 contributors
and audited 1459 packages in 32.069s
This is complex.
#include <iostream>
int main() {
std::cout << "Hello Word\n";
}
This is chaotic.
fill_buffer();
// flush_buffer(); //Only useful on the zx spectrum, I think
write_next_line();
fill_buffer();
#ifdef 0
flush_buffer();
#endif
write_next_line();
fill_buffer();
#ifdef COMMODORE64
flush_buffer();
#endif
write_next_line();
fill_buffer();
#ifdef __linux__
flush_buffer();
#endif
write_next_line();
#ifdef __linux__
#define LPCTSTR const char*
#endif
HANDLE open_file(LPCTSTR fileename) {
#ifdef DEBUG
log("Opening {}", fileename);
#endif
#ifdef WIN32
return CreateFile(fileename,
GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL, nullptr);
#elif __linux__
return open(fileename, O_RDONLY);
#else
#error "Platform not supported"
#endif
}
#ifdef __linux__
#define LPCTSTR const char*
#endif
HANDLE open_file(LPCTSTR filename) {
#ifdef DEBUG
log("Opening {}", fileename);
#endif
#ifdef WIN32
return CreateFile(filename,
GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL, nullptr);
#elif __linux__
return open(fileename, O_RDONLY);
#else
#error "Platform not supported"
#endif
}
#ifdef __linux__
#define LPCTSTR const char*
#endif
HANDLE open_file(LPCTSTR filename) {
#ifdef WIN32
return CreateFile(filename,
GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL, nullptr);
#elif __linux__
return open(fileename, O_RDONLY);
#else
#error "Platform not supported"
#endif
}
HANDLE open_file(LPCTSTR filename) {
return CreateFile(filename,
GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL, nullptr);
}
void* open_file(const char* filename) {
return CreateFileA(filename,
GENERIC_READ, FILE_SHARE_READ,
nullptr, OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL, nullptr);
}
??? open_file(const char* name) {
if constexpr (???) {
return CreateFileA(name,
GENERIC_READ,
FILE_SHARE_READ,
nullptr,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
nullptr);
}
else if constexpr (???) {
return open(name, O_CREAT | O_RDONLY);
}
static_assert(???, "Platform not supported");
}
export module cor3ntin.sys_info;
export namespace cor3ntin::sys_info {
#ifdef WIN32
constexpr bool is_win32 = true;
#else
constexpr bool is_win32 = false;
#endif
#ifdef __unix__
constexpr bool is_posix = true;
#else
constexpr bool is_posix = false;
#endif
}
import cor3ntin.sys_info;
??? open_file(const char* name) {
using namespace cor3ntin;
if constexpr (sys_info::is_win32) {
return CreateFileA(name,
GENERIC_READ,
FILE_SHARE_READ,
nullptr,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
nullptr);
}
else if constexpr (sys_info::is_posix) {
return open(name, O_CREAT | O_RDONLY);
}
static_assert(sys_info::is_posix || sys_info::is_win32,
"Platform not supported");
}
using native_handle =
std::conditional_t <
sys_info::is_win32,
void* ,
int
> ;
import cor3ntin.sys_info;
native_handle open_file(const char* name) {
using namespace cor3ntin;
if constexpr (sys_info::is_win32) {
return CreateFileA(name,
GENERIC_READ,
FILE_SHARE_READ,
nullptr,
OPEN_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
nullptr);
}
else if constexpr (sys_info::is_posix) {
return open(name, O_CREAT | O_RDONLY);
}
static_assert(sys_info::is_posix || sys_info::is_win32,
"Platform not supported");
}
export module cor3ntin.posix;
export namespace cor3ntin::posix {
int open(const char *path, int oflag);
}
#define
to declare constants.
O_RDONLY
module;
#ifdef __unix__
# include <fcntl.h>
#endif
export module cor3ntin.posix;
export namespace cor3ntin::posix {
int open(const char *path, int oflag);
#ifdef O_RDONLY
#define __O_RDONLY O_RDONLY
# undef O_RDONLY
constexpr int O_RDONLY = __O_RDONLY;
# undef __O_RDONLY
#else
constexpr int O_RDONLY = -1;
#endif
}
#ifdef __linux__
#include <sys/stat.h>
#include <fcntl.h>
#endif
module cor3ntin.posix;
#ifdef __linux__
namespace cor3ntin::posix {
int open(const char *path, int oflag) {
return ::open(path, oflag);
}
}
#endif
import <type_traits>
import cor3ntin.posix;
import cor3ntin.win32;
import cor3ntin.sys_info;
export module cor3ntin.io;
export namespace cor3ntin::io {
using native_handle = std::conditional_t <sys_info::is_win32,
void*, int>;
native_handle open_file(const char* name) {
using namespace cor3ntin;
if constexpr (sys_info::is_win32) {
return win32::CreateFileA(name, /*...*/);
}
else if constexpr (sys_info::is_posix) {
return posix::open(name, posix::O_CREAT | posix::O_RDONLY);
}
static_assert(sys_info::is_posix || sys_info::is_win32,
"Platform not supported");
}
}
native_handle
open_file(const char* name) requires sys_info::is_win32 {
using namespace cor3ntin::win32;
return CreateFileA(name, /*..*/);
}
native_handle
open_file(const char* name) requires sys_info::is_posix {
using namespace cor3ntin::posix;
return open(name, O_CREAT | O_RDONLY);
}
#[cfg(unix)]
fn open_file(name: String) {}
#[cfg(windows)]
fn open_file(name: String) {}
constexpr
vcpkg install windows10-sdk
[package]
name = "rustls"
version = "0.15.2"
edition = "2018"
description = "Rustls is a modern TLS library written in Rust."
homepage = "https://github.com/ctz/rustls"
repository = "https://github.com/ctz/rustls"
categories = ["network-programming", "cryptography"]
[dependencies]
base64 = "0.10"
log = "0.4.4"
ring = "0.16.5"
sct = "0.6.0"
webpki = "0.21.0"
A few developers
A few thousands lines of C code
A few thousands developers
250 millions lines of C++ Code
That's Cute !
NPM > 1 Million packages
10 millions users
30 billions downloads. Per day
This is necessary to maintain the common understanding of packages names and versions