blob: aa78c2b4b5d425e51e2cf4f90682bc1f9a0676c2 [file] [log] [blame]
#pragma once
#include <array>
#include <cstdint>
#include <iosfwd>
#include <string>
#include <type_traits>
namespace rust {
inline namespace cxxbridge01 {
class String final {
public:
String() noexcept;
String(const String &) noexcept;
String(String &&) noexcept;
~String() noexcept;
String(const std::string &);
String(const char *);
String &operator=(const String &) noexcept;
String &operator=(String &&) noexcept;
explicit operator std::string() const;
// Note: no null terminator.
const char *data() const noexcept;
size_t size() const noexcept;
size_t length() const noexcept;
private:
// Size and alignment statically verified by rust_string.rs.
std::array<uintptr_t, 3> repr;
};
class Str final {
public:
Str() noexcept;
Str(const Str &) noexcept;
Str(const std::string &s);
Str(const char *s);
Str(std::string &&s) = delete;
Str &operator=(Str) noexcept;
explicit operator std::string() const;
// Note: no null terminator.
const char *data() const noexcept;
size_t size() const noexcept;
size_t length() const noexcept;
// Repr is PRIVATE; must not be used other than by our generated code.
//
// Not necessarily ABI compatible with &str. Codegen will translate to
// cxx::rust_str::RustStr which matches this layout.
struct Repr {
const char *ptr;
size_t len;
};
Str(Repr) noexcept;
explicit operator Repr() noexcept;
private:
Repr repr;
};
#ifndef CXXBRIDGE01_RUST_BOX
#define CXXBRIDGE01_RUST_BOX
template <typename T> class Box final {
public:
using value_type = T;
using const_pointer = typename std::add_pointer<
typename std::add_const<value_type>::type>::type;
using pointer = typename std::add_pointer<value_type>::type;
Box(const Box &other) : Box(*other) {}
Box(Box &&other) noexcept : repr(other.repr) { other.repr = 0; }
Box(const T &val) {
this->uninit();
::new (this->deref_mut()) T(val);
}
Box &operator=(const Box &other) {
if (this != &other) {
if (this->repr) {
**this = *other;
} else {
this->uninit();
::new (this->deref_mut()) T(*other);
}
}
return *this;
}
Box &operator=(Box &&other) noexcept {
if (this->repr) {
this->drop();
}
this->repr = other.repr;
other.repr = 0;
return *this;
}
~Box() noexcept {
if (this->repr) {
this->drop();
}
}
const T *operator->() const noexcept { return this->deref(); }
const T &operator*() const noexcept { return *this->deref(); }
T *operator->() noexcept { return this->deref_mut(); }
T &operator*() noexcept { return *this->deref_mut(); }
// Important: requires that `raw` came from an into_raw call. Do not pass a
// pointer from `new` or any other source.
static Box from_raw(T *raw) noexcept {
Box box;
box.set_raw(raw);
return box;
}
T *into_raw() noexcept {
T *raw = this->deref_mut();
this->repr = 0;
return raw;
}
private:
Box() noexcept {}
void uninit() noexcept;
void set_raw(pointer) noexcept;
pointer get_raw() noexcept;
void drop() noexcept;
const_pointer deref() const noexcept;
pointer deref_mut() noexcept;
uintptr_t repr;
};
#endif // CXXBRIDGE01_RUST_BOX
std::ostream &operator<<(std::ostream &os, const String &s);
std::ostream &operator<<(std::ostream &os, const Str &s);
// Snake case aliases for use in code that uses this style for type names.
using string = String;
using str = Str;
template <class T> using box = Box<T>;
} // namespace cxxbridge01
} // namespace rust