Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
use uuid::Uuid;
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash)]
pub struct AIDocumentId(Uuid);
impl AIDocumentId {
pub fn new() -> Self {
Self(Uuid::new_v4())
}
}
impl std::fmt::Display for AIDocumentId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl TryFrom<String> for AIDocumentId {
type Error = anyhow::Error;
fn try_from(value: String) -> Result<Self, Self::Error> {
Ok(Self(Uuid::try_parse(&value)?))
}
}
impl TryFrom<&str> for AIDocumentId {
type Error = anyhow::Error;
fn try_from(value: &str) -> Result<Self, Self::Error> {
Ok(Self(Uuid::try_parse(value)?))
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct AIDocumentVersion(pub usize);
impl AIDocumentVersion {
#[cfg(feature = "test-util")]
pub fn new_for_test(version: usize) -> Self {
Self(version)
}
pub fn next(&self) -> Self {
Self(self.0 + 1)
}
}
impl std::fmt::Display for AIDocumentVersion {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "v{}", self.0)
}
}
impl Default for AIDocumentVersion {
fn default() -> Self {
Self(1)
}
}