Add support for saving and opening files in different encodings. The implementation is now complete.
This commit is contained in:
parent
0e1f9f689c
commit
a3f5e91f0f
36 changed files with 362 additions and 92 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -228,6 +228,7 @@ dependencies = [
|
||||||
"ctor",
|
"ctor",
|
||||||
"db",
|
"db",
|
||||||
"editor",
|
"editor",
|
||||||
|
"encoding",
|
||||||
"env_logger 0.11.8",
|
"env_logger 0.11.8",
|
||||||
"fs",
|
"fs",
|
||||||
"futures 0.3.31",
|
"futures 0.3.31",
|
||||||
|
@ -961,6 +962,7 @@ dependencies = [
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"diffy",
|
"diffy",
|
||||||
"editor",
|
"editor",
|
||||||
|
"encoding",
|
||||||
"feature_flags",
|
"feature_flags",
|
||||||
"fs",
|
"fs",
|
||||||
"futures 0.3.31",
|
"futures 0.3.31",
|
||||||
|
@ -3302,6 +3304,7 @@ dependencies = [
|
||||||
"dashmap 6.1.0",
|
"dashmap 6.1.0",
|
||||||
"debugger_ui",
|
"debugger_ui",
|
||||||
"editor",
|
"editor",
|
||||||
|
"encoding",
|
||||||
"envy",
|
"envy",
|
||||||
"extension",
|
"extension",
|
||||||
"file_finder",
|
"file_finder",
|
||||||
|
@ -5272,6 +5275,7 @@ dependencies = [
|
||||||
name = "encodings"
|
name = "encodings"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
"editor",
|
"editor",
|
||||||
"encoding",
|
"encoding",
|
||||||
"fuzzy",
|
"fuzzy",
|
||||||
|
@ -5626,6 +5630,7 @@ dependencies = [
|
||||||
"criterion",
|
"criterion",
|
||||||
"ctor",
|
"ctor",
|
||||||
"dap",
|
"dap",
|
||||||
|
"encoding",
|
||||||
"extension",
|
"extension",
|
||||||
"fs",
|
"fs",
|
||||||
"futures 0.3.31",
|
"futures 0.3.31",
|
||||||
|
@ -6136,6 +6141,7 @@ dependencies = [
|
||||||
"paths",
|
"paths",
|
||||||
"proto",
|
"proto",
|
||||||
"rope",
|
"rope",
|
||||||
|
"schemars",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"smol",
|
"smol",
|
||||||
|
@ -6561,6 +6567,7 @@ dependencies = [
|
||||||
"ctor",
|
"ctor",
|
||||||
"db",
|
"db",
|
||||||
"editor",
|
"editor",
|
||||||
|
"encoding",
|
||||||
"futures 0.3.31",
|
"futures 0.3.31",
|
||||||
"fuzzy",
|
"fuzzy",
|
||||||
"git",
|
"git",
|
||||||
|
@ -12644,6 +12651,7 @@ dependencies = [
|
||||||
"context_server",
|
"context_server",
|
||||||
"dap",
|
"dap",
|
||||||
"dap_adapters",
|
"dap_adapters",
|
||||||
|
"encoding",
|
||||||
"extension",
|
"extension",
|
||||||
"fancy-regex 0.14.0",
|
"fancy-regex 0.14.0",
|
||||||
"fs",
|
"fs",
|
||||||
|
@ -13567,6 +13575,7 @@ dependencies = [
|
||||||
"dap_adapters",
|
"dap_adapters",
|
||||||
"debug_adapter_extension",
|
"debug_adapter_extension",
|
||||||
"editor",
|
"editor",
|
||||||
|
"encoding",
|
||||||
"env_logger 0.11.8",
|
"env_logger 0.11.8",
|
||||||
"extension",
|
"extension",
|
||||||
"extension_host",
|
"extension_host",
|
||||||
|
@ -19878,6 +19887,7 @@ dependencies = [
|
||||||
"component",
|
"component",
|
||||||
"dap",
|
"dap",
|
||||||
"db",
|
"db",
|
||||||
|
"encoding",
|
||||||
"fs",
|
"fs",
|
||||||
"futures 0.3.31",
|
"futures 0.3.31",
|
||||||
"gpui",
|
"gpui",
|
||||||
|
|
|
@ -477,6 +477,7 @@ documented = "0.9.1"
|
||||||
dotenvy = "0.15.0"
|
dotenvy = "0.15.0"
|
||||||
ec4rs = "1.1"
|
ec4rs = "1.1"
|
||||||
emojis = "0.6.1"
|
emojis = "0.6.1"
|
||||||
|
encoding = "0.2.33"
|
||||||
env_logger = "0.11"
|
env_logger = "0.11"
|
||||||
exec = "0.3.1"
|
exec = "0.3.1"
|
||||||
fancy-regex = "0.14.0"
|
fancy-regex = "0.14.0"
|
||||||
|
|
|
@ -32,6 +32,7 @@ cloud_llm_client.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
context_server.workspace = true
|
context_server.workspace = true
|
||||||
db.workspace = true
|
db.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
git.workspace = true
|
git.workspace = true
|
||||||
|
@ -72,6 +73,7 @@ which.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
zstd.workspace = true
|
zstd.workspace = true
|
||||||
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
agent = { workspace = true, "features" = ["test-support"] }
|
agent = { workspace = true, "features" = ["test-support"] }
|
||||||
agent_servers = { workspace = true, "features" = ["test-support"] }
|
agent_servers = { workspace = true, "features" = ["test-support"] }
|
||||||
|
|
|
@ -523,7 +523,8 @@ mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::{ContextServerRegistry, Templates};
|
use crate::{ContextServerRegistry, Templates};
|
||||||
use client::TelemetrySettings;
|
use client::TelemetrySettings;
|
||||||
use fs::Fs;
|
use encoding::all::UTF_8;
|
||||||
|
use fs::{Fs, encodings::EncodingWrapper};
|
||||||
use gpui::{TestAppContext, UpdateGlobal};
|
use gpui::{TestAppContext, UpdateGlobal};
|
||||||
use language_model::fake_provider::FakeLanguageModel;
|
use language_model::fake_provider::FakeLanguageModel;
|
||||||
use prompt_store::ProjectContext;
|
use prompt_store::ProjectContext;
|
||||||
|
@ -705,6 +706,7 @@ mod tests {
|
||||||
path!("/root/src/main.rs").as_ref(),
|
path!("/root/src/main.rs").as_ref(),
|
||||||
&"initial content".into(),
|
&"initial content".into(),
|
||||||
language::LineEnding::Unix,
|
language::LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -873,6 +875,7 @@ mod tests {
|
||||||
path!("/root/src/main.rs").as_ref(),
|
path!("/root/src/main.rs").as_ref(),
|
||||||
&"initial content".into(),
|
&"initial content".into(),
|
||||||
language::LineEnding::Unix,
|
language::LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -28,6 +28,7 @@ component.workspace = true
|
||||||
derive_more.workspace = true
|
derive_more.workspace = true
|
||||||
diffy = "0.4.2"
|
diffy = "0.4.2"
|
||||||
editor.workspace = true
|
editor.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
feature_flags.workspace = true
|
feature_flags.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
|
|
|
@ -1231,8 +1231,9 @@ async fn build_buffer_diff(
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use ::fs::Fs;
|
use ::fs::{Fs, encodings::EncodingWrapper};
|
||||||
use client::TelemetrySettings;
|
use client::TelemetrySettings;
|
||||||
|
use encoding::all::UTF_8;
|
||||||
use gpui::{TestAppContext, UpdateGlobal};
|
use gpui::{TestAppContext, UpdateGlobal};
|
||||||
use language_model::fake_provider::FakeLanguageModel;
|
use language_model::fake_provider::FakeLanguageModel;
|
||||||
use serde_json::json;
|
use serde_json::json;
|
||||||
|
@ -1501,6 +1502,7 @@ mod tests {
|
||||||
path!("/root/src/main.rs").as_ref(),
|
path!("/root/src/main.rs").as_ref(),
|
||||||
&"initial content".into(),
|
&"initial content".into(),
|
||||||
language::LineEnding::Unix,
|
language::LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -1670,6 +1672,7 @@ mod tests {
|
||||||
path!("/root/src/main.rs").as_ref(),
|
path!("/root/src/main.rs").as_ref(),
|
||||||
&"initial content".into(),
|
&"initial content".into(),
|
||||||
language::LineEnding::Unix,
|
language::LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -31,6 +31,7 @@ chrono.workspace = true
|
||||||
clock.workspace = true
|
clock.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
dashmap.workspace = true
|
dashmap.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
envy = "0.4.2"
|
envy = "0.4.2"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
|
|
|
@ -12,7 +12,8 @@ use buffer_diff::{DiffHunkSecondaryStatus, DiffHunkStatus, assert_hunks};
|
||||||
use call::{ActiveCall, ParticipantLocation, Room, room};
|
use call::{ActiveCall, ParticipantLocation, Room, room};
|
||||||
use client::{RECEIVE_TIMEOUT, User};
|
use client::{RECEIVE_TIMEOUT, User};
|
||||||
use collections::{HashMap, HashSet};
|
use collections::{HashMap, HashSet};
|
||||||
use fs::{FakeFs, Fs as _, RemoveOptions};
|
use encoding::all::UTF_8;
|
||||||
|
use fs::{FakeFs, Fs as _, RemoveOptions, encodings::EncodingWrapper};
|
||||||
use futures::{StreamExt as _, channel::mpsc};
|
use futures::{StreamExt as _, channel::mpsc};
|
||||||
use git::status::{FileStatus, StatusCode, TrackedStatus, UnmergedStatus, UnmergedStatusCode};
|
use git::status::{FileStatus, StatusCode, TrackedStatus, UnmergedStatus, UnmergedStatusCode};
|
||||||
use gpui::{
|
use gpui::{
|
||||||
|
@ -3706,6 +3707,7 @@ async fn test_buffer_reloading(
|
||||||
path!("/dir/a.txt").as_ref(),
|
path!("/dir/a.txt").as_ref(),
|
||||||
&new_contents,
|
&new_contents,
|
||||||
LineEnding::Windows,
|
LineEnding::Windows,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4472,6 +4474,7 @@ async fn test_reloading_buffer_manually(
|
||||||
path!("/a/a.rs").as_ref(),
|
path!("/a/a.rs").as_ref(),
|
||||||
&Rope::from("let seven = 7;"),
|
&Rope::from("let seven = 7;"),
|
||||||
LineEnding::Unix,
|
LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -5,7 +5,8 @@ use async_trait::async_trait;
|
||||||
use call::ActiveCall;
|
use call::ActiveCall;
|
||||||
use collections::{BTreeMap, HashMap};
|
use collections::{BTreeMap, HashMap};
|
||||||
use editor::Bias;
|
use editor::Bias;
|
||||||
use fs::{FakeFs, Fs as _};
|
use encoding::all::UTF_8;
|
||||||
|
use fs::{FakeFs, Fs as _, encodings::EncodingWrapper};
|
||||||
use git::status::{FileStatus, StatusCode, TrackedStatus, UnmergedStatus, UnmergedStatusCode};
|
use git::status::{FileStatus, StatusCode, TrackedStatus, UnmergedStatus, UnmergedStatusCode};
|
||||||
use gpui::{BackgroundExecutor, Entity, TestAppContext};
|
use gpui::{BackgroundExecutor, Entity, TestAppContext};
|
||||||
use language::{
|
use language::{
|
||||||
|
@ -924,7 +925,12 @@ impl RandomizedTest for ProjectCollaborationTest {
|
||||||
|
|
||||||
client
|
client
|
||||||
.fs()
|
.fs()
|
||||||
.save(&path, &content.as_str().into(), text::LineEnding::Unix)
|
.save(
|
||||||
|
&path,
|
||||||
|
&content.as_str().into(),
|
||||||
|
text::LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@ client.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
command_palette_hooks.workspace = true
|
command_palette_hooks.workspace = true
|
||||||
dirs.workspace = true
|
dirs.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
|
@ -53,7 +54,6 @@ util.workspace = true
|
||||||
workspace.workspace = true
|
workspace.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
itertools.workspace = true
|
itertools.workspace = true
|
||||||
encoding = "0.2.33"
|
|
||||||
|
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
|
|
|
@ -5,6 +5,7 @@ publish.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
anyhow.workspace = true
|
||||||
ui.workspace = true
|
ui.workspace = true
|
||||||
workspace.workspace = true
|
workspace.workspace = true
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
|
@ -12,7 +13,7 @@ picker.workspace = true
|
||||||
util.workspace = true
|
util.workspace = true
|
||||||
fuzzy.workspace = true
|
fuzzy.workspace = true
|
||||||
editor.workspace = true
|
editor.workspace = true
|
||||||
encoding = "0.2.33"
|
encoding.workspace = true
|
||||||
language.workspace = true
|
language.workspace = true
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
///! A crate for handling file encodings in the text editor.
|
||||||
use editor::Editor;
|
use editor::Editor;
|
||||||
use encoding::Encoding;
|
use encoding::Encoding;
|
||||||
use encoding::all::{
|
use encoding::all::{
|
||||||
|
@ -12,7 +13,7 @@ use ui::{Button, ButtonCommon, Context, LabelSize, Render, Tooltip, Window, div}
|
||||||
use ui::{Clickable, ParentElement};
|
use ui::{Clickable, ParentElement};
|
||||||
use workspace::{ItemHandle, StatusItemView, Workspace};
|
use workspace::{ItemHandle, StatusItemView, Workspace};
|
||||||
|
|
||||||
use crate::selectors::save_or_reopen::{EncodingSaveOrReopenSelector, get_current_encoding};
|
use crate::selectors::save_or_reopen::EncodingSaveOrReopenSelector;
|
||||||
|
|
||||||
/// A status bar item that shows the current file encoding and allows changing it.
|
/// A status bar item that shows the current file encoding and allows changing it.
|
||||||
pub struct EncodingIndicator {
|
pub struct EncodingIndicator {
|
||||||
|
@ -44,8 +45,6 @@ impl Render for EncodingIndicator {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EncodingIndicator {
|
impl EncodingIndicator {
|
||||||
pub fn get_current_encoding(&self, cx: &mut Context<Self>, editor: WeakEntity<Editor>) {}
|
|
||||||
|
|
||||||
pub fn new(
|
pub fn new(
|
||||||
encoding: Option<&'static dyn encoding::Encoding>,
|
encoding: Option<&'static dyn encoding::Encoding>,
|
||||||
workspace: WeakEntity<Workspace>,
|
workspace: WeakEntity<Workspace>,
|
||||||
|
@ -187,3 +186,48 @@ pub fn encoding_from_index(index: usize) -> &'static dyn Encoding {
|
||||||
_ => UTF_8,
|
_ => UTF_8,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Get an encoding from its name.
|
||||||
|
pub fn encoding_from_name(name: &str) -> &'static dyn Encoding {
|
||||||
|
match name {
|
||||||
|
"UTF-8" => UTF_8,
|
||||||
|
"UTF-16 LE" => UTF_16LE,
|
||||||
|
"UTF-16 BE" => UTF_16BE,
|
||||||
|
"IBM866" => IBM866,
|
||||||
|
"ISO 8859-1" => ISO_8859_1,
|
||||||
|
"ISO 8859-2" => ISO_8859_2,
|
||||||
|
"ISO 8859-3" => ISO_8859_3,
|
||||||
|
"ISO 8859-4" => ISO_8859_4,
|
||||||
|
"ISO 8859-5" => ISO_8859_5,
|
||||||
|
"ISO 8859-6" => ISO_8859_6,
|
||||||
|
"ISO 8859-7" => ISO_8859_7,
|
||||||
|
"ISO 8859-8" => ISO_8859_8,
|
||||||
|
"ISO 8859-10" => ISO_8859_10,
|
||||||
|
"ISO 8859-13" => ISO_8859_13,
|
||||||
|
"ISO 8859-14" => ISO_8859_14,
|
||||||
|
"ISO 8859-15" => ISO_8859_15,
|
||||||
|
"ISO 8859-16" => ISO_8859_16,
|
||||||
|
"KOI8-R" => KOI8_R,
|
||||||
|
"KOI8-U" => KOI8_U,
|
||||||
|
"MacRoman" => MAC_ROMAN,
|
||||||
|
"Mac Cyrillic" => MAC_CYRILLIC,
|
||||||
|
"Windows-874" => WINDOWS_874,
|
||||||
|
"Windows-1250" => WINDOWS_1250,
|
||||||
|
"Windows-1251" => WINDOWS_1251,
|
||||||
|
"Windows-1252" => WINDOWS_1252,
|
||||||
|
"Windows-1253" => WINDOWS_1253,
|
||||||
|
"Windows-1254" => WINDOWS_1254,
|
||||||
|
"Windows-1255" => WINDOWS_1255,
|
||||||
|
"Windows-1256" => WINDOWS_1256,
|
||||||
|
"Windows-1257" => WINDOWS_1257,
|
||||||
|
"Windows-1258" => WINDOWS_1258,
|
||||||
|
"Windows-949" => WINDOWS_949,
|
||||||
|
"EUC-JP" => EUC_JP,
|
||||||
|
"ISO 2022-JP" => ISO_2022_JP,
|
||||||
|
"GBK" => GBK,
|
||||||
|
"GB18030" => GB18030,
|
||||||
|
"Big5" => BIG5_2003,
|
||||||
|
"HZ-GB-2312" => HZ,
|
||||||
|
_ => UTF_8, // Default to UTF-8 for unknown names
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,30 +1,28 @@
|
||||||
|
/// This module contains the encoding selectors for saving or reopening files with a different encoding.
|
||||||
|
/// It provides a modal view that allows the user to choose between saving with a different encoding
|
||||||
|
/// or reopening with a different encoding, and then selecting the desired encoding from a list.
|
||||||
pub mod save_or_reopen {
|
pub mod save_or_reopen {
|
||||||
use editor::Editor;
|
use editor::Editor;
|
||||||
use gpui::Styled;
|
use gpui::Styled;
|
||||||
use gpui::{AppContext, ParentElement};
|
use gpui::{AppContext, ParentElement};
|
||||||
use picker::Picker;
|
use picker::Picker;
|
||||||
use picker::PickerDelegate;
|
use picker::PickerDelegate;
|
||||||
use std::cell::RefCell;
|
|
||||||
use std::ops::{Deref, DerefMut};
|
|
||||||
use std::rc::Rc;
|
|
||||||
use std::sync::Arc;
|
|
||||||
use std::sync::atomic::AtomicBool;
|
use std::sync::atomic::AtomicBool;
|
||||||
use util::ResultExt;
|
use util::ResultExt;
|
||||||
|
|
||||||
use fuzzy::{StringMatch, StringMatchCandidate};
|
use fuzzy::{StringMatch, StringMatchCandidate};
|
||||||
use gpui::{DismissEvent, Entity, EventEmitter, Focusable, WeakEntity};
|
use gpui::{DismissEvent, Entity, EventEmitter, Focusable, WeakEntity};
|
||||||
|
|
||||||
use ui::{Context, HighlightedLabel, Label, ListItem, Render, Window, rems, v_flex};
|
use ui::{Context, HighlightedLabel, ListItem, Render, Window, rems, v_flex};
|
||||||
use workspace::{ModalView, Workspace};
|
use workspace::{ModalView, Workspace};
|
||||||
|
|
||||||
use crate::selectors::encoding::{Action, EncodingSelector, EncodingSelectorDelegate};
|
use crate::selectors::encoding::{Action, EncodingSelector};
|
||||||
|
|
||||||
/// A modal view that allows the user to select between saving with a different encoding or
|
/// A modal view that allows the user to select between saving with a different encoding or
|
||||||
/// reopening with a different encoding.
|
/// reopening with a different encoding.
|
||||||
pub struct EncodingSaveOrReopenSelector {
|
pub struct EncodingSaveOrReopenSelector {
|
||||||
picker: Entity<Picker<EncodingSaveOrReopenDelegate>>,
|
picker: Entity<Picker<EncodingSaveOrReopenDelegate>>,
|
||||||
pub current_selection: usize,
|
pub current_selection: usize,
|
||||||
workspace: WeakEntity<Workspace>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EncodingSaveOrReopenSelector {
|
impl EncodingSaveOrReopenSelector {
|
||||||
|
@ -41,7 +39,6 @@ pub mod save_or_reopen {
|
||||||
Self {
|
Self {
|
||||||
picker,
|
picker,
|
||||||
current_selection: 0,
|
current_selection: 0,
|
||||||
workspace,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,9 +116,17 @@ pub mod save_or_reopen {
|
||||||
.read(cx)
|
.read(cx)
|
||||||
.active_excerpt(cx)?;
|
.active_excerpt(cx)?;
|
||||||
|
|
||||||
|
let weak_workspace = workspace.read(cx).weak_handle();
|
||||||
|
|
||||||
workspace.update(cx, |workspace, cx| {
|
workspace.update(cx, |workspace, cx| {
|
||||||
workspace.toggle_modal(window, cx, |window, cx| {
|
workspace.toggle_modal(window, cx, |window, cx| {
|
||||||
EncodingSelector::new(window, cx, Action::Save, buffer.downgrade())
|
EncodingSelector::new(
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
Action::Save,
|
||||||
|
buffer.downgrade(),
|
||||||
|
weak_workspace,
|
||||||
|
)
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -134,9 +139,17 @@ pub mod save_or_reopen {
|
||||||
.read(cx)
|
.read(cx)
|
||||||
.active_excerpt(cx)?;
|
.active_excerpt(cx)?;
|
||||||
|
|
||||||
|
let weak_workspace = workspace.read(cx).weak_handle();
|
||||||
|
|
||||||
workspace.update(cx, |workspace, cx| {
|
workspace.update(cx, |workspace, cx| {
|
||||||
workspace.toggle_modal(window, cx, |window, cx| {
|
workspace.toggle_modal(window, cx, |window, cx| {
|
||||||
EncodingSelector::new(window, cx, Action::Reopen, buffer.downgrade())
|
EncodingSelector::new(
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
Action::Reopen,
|
||||||
|
buffer.downgrade(),
|
||||||
|
weak_workspace,
|
||||||
|
)
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -165,7 +178,7 @@ pub mod save_or_reopen {
|
||||||
) {
|
) {
|
||||||
self.current_selection = ix;
|
self.current_selection = ix;
|
||||||
self.selector
|
self.selector
|
||||||
.update(cx, |selector, cx| {
|
.update(cx, |selector, _cx| {
|
||||||
selector.current_selection = ix;
|
selector.current_selection = ix;
|
||||||
})
|
})
|
||||||
.log_err();
|
.log_err();
|
||||||
|
@ -217,7 +230,7 @@ pub mod save_or_reopen {
|
||||||
.min(delegate.matches.len().saturating_sub(1));
|
.min(delegate.matches.len().saturating_sub(1));
|
||||||
delegate
|
delegate
|
||||||
.selector
|
.selector
|
||||||
.update(cx, |selector, cx| {
|
.update(cx, |selector, _cx| {
|
||||||
selector.current_selection = delegate.current_selection
|
selector.current_selection = delegate.current_selection
|
||||||
})
|
})
|
||||||
.log_err();
|
.log_err();
|
||||||
|
@ -263,33 +276,27 @@ pub mod save_or_reopen {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// This module contains the encoding selector for choosing an encoding to save or reopen a file with.
|
||||||
pub mod encoding {
|
pub mod encoding {
|
||||||
use std::{
|
use std::sync::atomic::AtomicBool;
|
||||||
ops::DerefMut,
|
|
||||||
rc::{Rc, Weak},
|
|
||||||
sync::{Arc, atomic::AtomicBool},
|
|
||||||
};
|
|
||||||
|
|
||||||
use fuzzy::{StringMatch, StringMatchCandidate};
|
use fuzzy::{StringMatch, StringMatchCandidate};
|
||||||
use gpui::{
|
use gpui::{AppContext, DismissEvent, Entity, EventEmitter, Focusable, WeakEntity};
|
||||||
AppContext, BackgroundExecutor, DismissEvent, Entity, EventEmitter, Focusable, Length,
|
|
||||||
WeakEntity, actions,
|
|
||||||
};
|
|
||||||
use language::Buffer;
|
use language::Buffer;
|
||||||
use picker::{Picker, PickerDelegate};
|
use picker::{Picker, PickerDelegate};
|
||||||
use ui::{
|
use ui::{
|
||||||
Context, DefiniteLength, HighlightedLabel, Label, ListItem, ListItemSpacing, ParentElement,
|
Context, HighlightedLabel, ListItem, ListItemSpacing, ParentElement, Render, Styled,
|
||||||
Render, Styled, Window, rems, v_flex,
|
Window, rems, v_flex,
|
||||||
};
|
};
|
||||||
use util::{ResultExt, TryFutureExt};
|
use util::{ResultExt, TryFutureExt};
|
||||||
use workspace::{ModalView, Workspace};
|
use workspace::{ModalView, Workspace};
|
||||||
|
|
||||||
use crate::encoding_from_index;
|
use crate::encoding_from_name;
|
||||||
|
|
||||||
/// A modal view that allows the user to select an encoding from a list of encodings.
|
/// A modal view that allows the user to select an encoding from a list of encodings.
|
||||||
pub struct EncodingSelector {
|
pub struct EncodingSelector {
|
||||||
picker: Entity<Picker<EncodingSelectorDelegate>>,
|
picker: Entity<Picker<EncodingSelectorDelegate>>,
|
||||||
action: Action,
|
workspace: WeakEntity<Workspace>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct EncodingSelectorDelegate {
|
pub struct EncodingSelectorDelegate {
|
||||||
|
@ -298,12 +305,14 @@ pub mod encoding {
|
||||||
matches: Vec<StringMatch>,
|
matches: Vec<StringMatch>,
|
||||||
selector: WeakEntity<EncodingSelector>,
|
selector: WeakEntity<EncodingSelector>,
|
||||||
buffer: WeakEntity<Buffer>,
|
buffer: WeakEntity<Buffer>,
|
||||||
|
action: Action,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EncodingSelectorDelegate {
|
impl EncodingSelectorDelegate {
|
||||||
pub fn new(
|
pub fn new(
|
||||||
selector: WeakEntity<EncodingSelector>,
|
selector: WeakEntity<EncodingSelector>,
|
||||||
buffer: WeakEntity<Buffer>,
|
buffer: WeakEntity<Buffer>,
|
||||||
|
action: Action,
|
||||||
) -> EncodingSelectorDelegate {
|
) -> EncodingSelectorDelegate {
|
||||||
EncodingSelectorDelegate {
|
EncodingSelectorDelegate {
|
||||||
current_selection: 0,
|
current_selection: 0,
|
||||||
|
@ -350,6 +359,7 @@ pub mod encoding {
|
||||||
matches: Vec::new(),
|
matches: Vec::new(),
|
||||||
selector,
|
selector,
|
||||||
buffer,
|
buffer,
|
||||||
|
action,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -365,12 +375,7 @@ pub mod encoding {
|
||||||
self.current_selection
|
self.current_selection
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_selected_index(
|
fn set_selected_index(&mut self, ix: usize, _: &mut Window, _: &mut Context<Picker<Self>>) {
|
||||||
&mut self,
|
|
||||||
ix: usize,
|
|
||||||
window: &mut Window,
|
|
||||||
cx: &mut Context<Picker<Self>>,
|
|
||||||
) {
|
|
||||||
self.current_selection = ix;
|
self.current_selection = ix;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -427,21 +432,40 @@ pub mod encoding {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn confirm(
|
fn confirm(&mut self, _: bool, window: &mut Window, cx: &mut Context<Picker<Self>>) {
|
||||||
&mut self,
|
|
||||||
secondary: bool,
|
|
||||||
window: &mut Window,
|
|
||||||
cx: &mut Context<Picker<Self>>,
|
|
||||||
) {
|
|
||||||
if let Some(buffer) = self.buffer.upgrade() {
|
if let Some(buffer) = self.buffer.upgrade() {
|
||||||
buffer.update(cx, |buffer, cx| {
|
buffer.update(cx, |buffer, cx| {
|
||||||
buffer.encoding = encoding_from_index(self.current_selection)
|
buffer.encoding =
|
||||||
|
encoding_from_name(self.matches[self.current_selection].string.as_str());
|
||||||
|
if self.action == Action::Reopen {
|
||||||
|
let executor = cx.background_executor().clone();
|
||||||
|
executor.spawn(buffer.reload(cx)).detach();
|
||||||
|
} else if self.action == Action::Save {
|
||||||
|
let executor = cx.background_executor().clone();
|
||||||
|
|
||||||
|
let workspace = self
|
||||||
|
.selector
|
||||||
|
.upgrade()
|
||||||
|
.unwrap()
|
||||||
|
.read(cx)
|
||||||
|
.workspace
|
||||||
|
.upgrade()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
executor
|
||||||
|
.spawn(workspace.update(cx, |workspace, cx| {
|
||||||
|
workspace
|
||||||
|
.save_active_item(workspace::SaveIntent::Save, window, cx)
|
||||||
|
.log_err()
|
||||||
|
}))
|
||||||
|
.detach();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
self.dismissed(window, cx);
|
self.dismissed(window, cx);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn dismissed(&mut self, window: &mut Window, cx: &mut Context<Picker<Self>>) {
|
fn dismissed(&mut self, _: &mut Window, cx: &mut Context<Picker<Self>>) {
|
||||||
self.selector
|
self.selector
|
||||||
.update(cx, |_, cx| cx.emit(DismissEvent))
|
.update(cx, |_, cx| cx.emit(DismissEvent))
|
||||||
.log_err();
|
.log_err();
|
||||||
|
@ -450,9 +474,9 @@ pub mod encoding {
|
||||||
fn render_match(
|
fn render_match(
|
||||||
&self,
|
&self,
|
||||||
ix: usize,
|
ix: usize,
|
||||||
selected: bool,
|
_: bool,
|
||||||
window: &mut Window,
|
_: &mut Window,
|
||||||
cx: &mut Context<Picker<Self>>,
|
_: &mut Context<Picker<Self>>,
|
||||||
) -> Option<Self::ListItem> {
|
) -> Option<Self::ListItem> {
|
||||||
Some(
|
Some(
|
||||||
ListItem::new(ix)
|
ListItem::new(ix)
|
||||||
|
@ -466,6 +490,7 @@ pub mod encoding {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The action to perform after selecting an encoding.
|
/// The action to perform after selecting an encoding.
|
||||||
|
#[derive(PartialEq, Clone)]
|
||||||
pub enum Action {
|
pub enum Action {
|
||||||
Save,
|
Save,
|
||||||
Reopen,
|
Reopen,
|
||||||
|
@ -477,11 +502,13 @@ pub mod encoding {
|
||||||
cx: &mut Context<EncodingSelector>,
|
cx: &mut Context<EncodingSelector>,
|
||||||
action: Action,
|
action: Action,
|
||||||
buffer: WeakEntity<Buffer>,
|
buffer: WeakEntity<Buffer>,
|
||||||
|
workspace: WeakEntity<Workspace>,
|
||||||
) -> EncodingSelector {
|
) -> EncodingSelector {
|
||||||
let delegate = EncodingSelectorDelegate::new(cx.entity().downgrade(), buffer);
|
let delegate =
|
||||||
|
EncodingSelectorDelegate::new(cx.entity().downgrade(), buffer, action.clone());
|
||||||
let picker = cx.new(|cx| Picker::uniform_list(delegate, window, cx));
|
let picker = cx.new(|cx| Picker::uniform_list(delegate, window, cx));
|
||||||
|
|
||||||
EncodingSelector { picker, action }
|
EncodingSelector { picker, workspace }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ async-trait.workspace = true
|
||||||
client.workspace = true
|
client.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
dap.workspace = true
|
dap.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
extension.workspace = true
|
extension.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
|
|
|
@ -12,6 +12,7 @@ use async_tar::Archive;
|
||||||
use client::ExtensionProvides;
|
use client::ExtensionProvides;
|
||||||
use client::{Client, ExtensionMetadata, GetExtensionsResponse, proto, telemetry::Telemetry};
|
use client::{Client, ExtensionMetadata, GetExtensionsResponse, proto, telemetry::Telemetry};
|
||||||
use collections::{BTreeMap, BTreeSet, HashMap, HashSet, btree_map};
|
use collections::{BTreeMap, BTreeSet, HashMap, HashSet, btree_map};
|
||||||
|
use encoding::all::UTF_8;
|
||||||
pub use extension::ExtensionManifest;
|
pub use extension::ExtensionManifest;
|
||||||
use extension::extension_builder::{CompileExtensionOptions, ExtensionBuilder};
|
use extension::extension_builder::{CompileExtensionOptions, ExtensionBuilder};
|
||||||
use extension::{
|
use extension::{
|
||||||
|
@ -20,6 +21,7 @@ use extension::{
|
||||||
ExtensionLanguageServerProxy, ExtensionSlashCommandProxy, ExtensionSnippetProxy,
|
ExtensionLanguageServerProxy, ExtensionSlashCommandProxy, ExtensionSnippetProxy,
|
||||||
ExtensionThemeProxy,
|
ExtensionThemeProxy,
|
||||||
};
|
};
|
||||||
|
use fs::encodings::EncodingWrapper;
|
||||||
use fs::{Fs, RemoveOptions};
|
use fs::{Fs, RemoveOptions};
|
||||||
use futures::future::join_all;
|
use futures::future::join_all;
|
||||||
use futures::{
|
use futures::{
|
||||||
|
@ -1468,10 +1470,15 @@ impl ExtensionStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Ok(index_json) = serde_json::to_string_pretty(&index) {
|
if let Ok(index_json) = serde_json::to_string_pretty(&index) {
|
||||||
fs.save(&index_path, &index_json.as_str().into(), Default::default())
|
fs.save(
|
||||||
.await
|
&index_path,
|
||||||
.context("failed to save extension index")
|
&index_json.as_str().into(),
|
||||||
.log_err();
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.context("failed to save extension index")
|
||||||
|
.log_err();
|
||||||
}
|
}
|
||||||
|
|
||||||
log::info!("rebuilt extension index in {:?}", start_time.elapsed());
|
log::info!("rebuilt extension index in {:?}", start_time.elapsed());
|
||||||
|
@ -1636,6 +1643,7 @@ impl ExtensionStore {
|
||||||
&tmp_dir.join(EXTENSION_TOML),
|
&tmp_dir.join(EXTENSION_TOML),
|
||||||
&Rope::from(manifest_toml),
|
&Rope::from(manifest_toml),
|
||||||
language::LineEnding::Unix,
|
language::LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -16,6 +16,7 @@ anyhow.workspace = true
|
||||||
async-tar.workspace = true
|
async-tar.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
git.workspace = true
|
git.workspace = true
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
|
@ -34,7 +35,8 @@ text.workspace = true
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
util.workspace = true
|
util.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
encoding = "0.2.33"
|
schemars.workspace = true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
|
|
|
@ -1,14 +1,70 @@
|
||||||
use anyhow::{Error, Result};
|
//! Encoding and decoding utilities using the `encoding` crate.
|
||||||
|
use std::fmt::Debug;
|
||||||
|
|
||||||
|
use anyhow::{Error, Result};
|
||||||
use encoding::Encoding;
|
use encoding::Encoding;
|
||||||
|
use serde::{Deserialize, de::Visitor};
|
||||||
|
|
||||||
/// A wrapper around `encoding::Encoding` to implement `Send` and `Sync`.
|
/// A wrapper around `encoding::Encoding` to implement `Send` and `Sync`.
|
||||||
/// Since the reference is static, it is safe to send it across threads.
|
/// Since the reference is static, it is safe to send it across threads.
|
||||||
pub struct EncodingWrapper(&'static dyn Encoding);
|
pub struct EncodingWrapper(&'static dyn Encoding);
|
||||||
|
|
||||||
|
impl Debug for EncodingWrapper {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
f.debug_tuple("EncodingWrapper")
|
||||||
|
.field(&self.0.name())
|
||||||
|
.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct EncodingWrapperVisitor;
|
||||||
|
|
||||||
|
impl<'vi> Visitor<'vi> for EncodingWrapperVisitor {
|
||||||
|
type Value = EncodingWrapper;
|
||||||
|
|
||||||
|
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
||||||
|
formatter.write_str("a valid encoding name")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn visit_str<E: serde::de::Error>(self, encoding: &str) -> Result<EncodingWrapper, E> {
|
||||||
|
Ok(EncodingWrapper(
|
||||||
|
encoding::label::encoding_from_whatwg_label(encoding)
|
||||||
|
.ok_or_else(|| serde::de::Error::custom("Invalid Encoding"))?,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn visit_string<E: serde::de::Error>(self, encoding: String) -> Result<EncodingWrapper, E> {
|
||||||
|
Ok(EncodingWrapper(
|
||||||
|
encoding::label::encoding_from_whatwg_label(&encoding)
|
||||||
|
.ok_or_else(|| serde::de::Error::custom("Invalid Encoding"))?,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'de> Deserialize<'de> for EncodingWrapper {
|
||||||
|
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
|
||||||
|
where
|
||||||
|
D: serde::Deserializer<'de>,
|
||||||
|
{
|
||||||
|
deserializer.deserialize_str(EncodingWrapperVisitor)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PartialEq for EncodingWrapper {
|
||||||
|
fn eq(&self, other: &Self) -> bool {
|
||||||
|
self.0.name() == other.0.name()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
unsafe impl Send for EncodingWrapper {}
|
unsafe impl Send for EncodingWrapper {}
|
||||||
unsafe impl Sync for EncodingWrapper {}
|
unsafe impl Sync for EncodingWrapper {}
|
||||||
|
|
||||||
|
impl Clone for EncodingWrapper {
|
||||||
|
fn clone(&self) -> Self {
|
||||||
|
EncodingWrapper(self.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl EncodingWrapper {
|
impl EncodingWrapper {
|
||||||
pub fn new(encoding: &'static dyn Encoding) -> EncodingWrapper {
|
pub fn new(encoding: &'static dyn Encoding) -> EncodingWrapper {
|
||||||
EncodingWrapper(encoding)
|
EncodingWrapper(encoding)
|
||||||
|
|
|
@ -56,6 +56,7 @@ use smol::io::AsyncReadExt;
|
||||||
use std::ffi::OsStr;
|
use std::ffi::OsStr;
|
||||||
|
|
||||||
use crate::encodings::EncodingWrapper;
|
use crate::encodings::EncodingWrapper;
|
||||||
|
use crate::encodings::from_utf8;
|
||||||
|
|
||||||
pub trait Watcher: Send + Sync {
|
pub trait Watcher: Send + Sync {
|
||||||
fn add(&self, path: &Path) -> Result<()>;
|
fn add(&self, path: &Path) -> Result<()>;
|
||||||
|
@ -123,7 +124,13 @@ pub trait Fs: Send + Sync {
|
||||||
|
|
||||||
async fn load_bytes(&self, path: &Path) -> Result<Vec<u8>>;
|
async fn load_bytes(&self, path: &Path) -> Result<Vec<u8>>;
|
||||||
async fn atomic_write(&self, path: PathBuf, text: String) -> Result<()>;
|
async fn atomic_write(&self, path: PathBuf, text: String) -> Result<()>;
|
||||||
async fn save(&self, path: &Path, text: &Rope, line_ending: LineEnding) -> Result<()>;
|
async fn save(
|
||||||
|
&self,
|
||||||
|
path: &Path,
|
||||||
|
text: &Rope,
|
||||||
|
line_ending: LineEnding,
|
||||||
|
encoding: EncodingWrapper,
|
||||||
|
) -> Result<()>;
|
||||||
async fn write(&self, path: &Path, content: &[u8]) -> Result<()>;
|
async fn write(&self, path: &Path, content: &[u8]) -> Result<()>;
|
||||||
async fn canonicalize(&self, path: &Path) -> Result<PathBuf>;
|
async fn canonicalize(&self, path: &Path) -> Result<PathBuf>;
|
||||||
async fn is_file(&self, path: &Path) -> bool;
|
async fn is_file(&self, path: &Path) -> bool;
|
||||||
|
@ -611,7 +618,13 @@ impl Fs for RealFs {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn save(&self, path: &Path, text: &Rope, line_ending: LineEnding) -> Result<()> {
|
async fn save(
|
||||||
|
&self,
|
||||||
|
path: &Path,
|
||||||
|
text: &Rope,
|
||||||
|
line_ending: LineEnding,
|
||||||
|
encoding: EncodingWrapper,
|
||||||
|
) -> Result<()> {
|
||||||
let buffer_size = text.summary().len.min(10 * 1024);
|
let buffer_size = text.summary().len.min(10 * 1024);
|
||||||
if let Some(path) = path.parent() {
|
if let Some(path) = path.parent() {
|
||||||
self.create_dir(path).await?;
|
self.create_dir(path).await?;
|
||||||
|
@ -619,7 +632,9 @@ impl Fs for RealFs {
|
||||||
let file = smol::fs::File::create(path).await?;
|
let file = smol::fs::File::create(path).await?;
|
||||||
let mut writer = smol::io::BufWriter::with_capacity(buffer_size, file);
|
let mut writer = smol::io::BufWriter::with_capacity(buffer_size, file);
|
||||||
for chunk in chunks(text, line_ending) {
|
for chunk in chunks(text, line_ending) {
|
||||||
writer.write_all(chunk.as_bytes()).await?;
|
writer
|
||||||
|
.write_all(&from_utf8(chunk.to_string(), encoding.clone()).await?)
|
||||||
|
.await?;
|
||||||
}
|
}
|
||||||
writer.flush().await?;
|
writer.flush().await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -2290,14 +2305,22 @@ impl Fs for FakeFs {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn save(&self, path: &Path, text: &Rope, line_ending: LineEnding) -> Result<()> {
|
async fn save(
|
||||||
|
&self,
|
||||||
|
path: &Path,
|
||||||
|
text: &Rope,
|
||||||
|
line_ending: LineEnding,
|
||||||
|
encoding: EncodingWrapper,
|
||||||
|
) -> Result<()> {
|
||||||
|
use crate::encodings::from_utf8;
|
||||||
|
|
||||||
self.simulate_random_delay().await;
|
self.simulate_random_delay().await;
|
||||||
let path = normalize_path(path);
|
let path = normalize_path(path);
|
||||||
let content = chunks(text, line_ending).collect::<String>();
|
let content = chunks(text, line_ending).collect::<String>();
|
||||||
if let Some(path) = path.parent() {
|
if let Some(path) = path.parent() {
|
||||||
self.create_dir(path).await?;
|
self.create_dir(path).await?;
|
||||||
}
|
}
|
||||||
self.write_file_internal(path, content.into_bytes(), false)?;
|
self.write_file_internal(path, from_utf8(content, encoding).await?, false)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ command_palette_hooks.workspace = true
|
||||||
component.workspace = true
|
component.workspace = true
|
||||||
db.workspace = true
|
db.workspace = true
|
||||||
editor.workspace = true
|
editor.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy.workspace = true
|
fuzzy.workspace = true
|
||||||
git.workspace = true
|
git.workspace = true
|
||||||
|
|
|
@ -362,8 +362,9 @@ impl Render for FileDiffView {
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use editor::test::editor_test_context::assert_state_with_diff;
|
use editor::test::editor_test_context::assert_state_with_diff;
|
||||||
|
use encoding::all::UTF_8;
|
||||||
use gpui::TestAppContext;
|
use gpui::TestAppContext;
|
||||||
use project::{FakeFs, Fs, Project};
|
use project::{FakeFs, Fs, Project, encodings::EncodingWrapper};
|
||||||
use settings::{Settings, SettingsStore};
|
use settings::{Settings, SettingsStore};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use unindent::unindent;
|
use unindent::unindent;
|
||||||
|
@ -444,6 +445,7 @@ mod tests {
|
||||||
)
|
)
|
||||||
.into(),
|
.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -479,6 +481,7 @@ mod tests {
|
||||||
)
|
)
|
||||||
.into(),
|
.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -31,7 +31,9 @@ anyhow.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
clock.workspace = true
|
clock.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
|
diffy = "0.4.2"
|
||||||
ec4rs.workspace = true
|
ec4rs.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy.workspace = true
|
fuzzy.workspace = true
|
||||||
|
@ -69,8 +71,6 @@ unicase = "2.6"
|
||||||
util.workspace = true
|
util.workspace = true
|
||||||
watch.workspace = true
|
watch.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
diffy = "0.4.2"
|
|
||||||
encoding = "0.2.33"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
collections = { workspace = true, features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
|
|
|
@ -22,7 +22,7 @@ pub use clock::ReplicaId;
|
||||||
use clock::{AGENT_REPLICA_ID, Lamport};
|
use clock::{AGENT_REPLICA_ID, Lamport};
|
||||||
use collections::HashMap;
|
use collections::HashMap;
|
||||||
use encoding::Encoding;
|
use encoding::Encoding;
|
||||||
use fs::{Fs, MTime, RealFs};
|
use fs::MTime;
|
||||||
use futures::channel::oneshot;
|
use futures::channel::oneshot;
|
||||||
use gpui::{
|
use gpui::{
|
||||||
App, AppContext as _, Context, Entity, EventEmitter, HighlightStyle, SharedString, StyledText,
|
App, AppContext as _, Context, Entity, EventEmitter, HighlightStyle, SharedString, StyledText,
|
||||||
|
@ -1281,7 +1281,7 @@ impl Buffer {
|
||||||
/// Reloads the contents of the buffer from disk.
|
/// Reloads the contents of the buffer from disk.
|
||||||
pub fn reload(&mut self, cx: &Context<Self>) -> oneshot::Receiver<Option<Transaction>> {
|
pub fn reload(&mut self, cx: &Context<Self>) -> oneshot::Receiver<Option<Transaction>> {
|
||||||
let (tx, rx) = futures::channel::oneshot::channel();
|
let (tx, rx) = futures::channel::oneshot::channel();
|
||||||
let encoding = self.encoding.clone();
|
let encoding = self.encoding;
|
||||||
let prev_version = self.text.version();
|
let prev_version = self.text.version();
|
||||||
self.reload_task = Some(cx.spawn(async move |this, cx| {
|
self.reload_task = Some(cx.spawn(async move |this, cx| {
|
||||||
let Some((new_mtime, new_text)) = this.update(cx, |this, cx| {
|
let Some((new_mtime, new_text)) = this.update(cx, |this, cx| {
|
||||||
|
@ -4976,11 +4976,7 @@ impl LocalFile for TestFile {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn load_with_encoding(
|
fn load_with_encoding(&self, _: &App, _: &'static dyn Encoding) -> Task<Result<String>> {
|
||||||
&self,
|
|
||||||
cx: &App,
|
|
||||||
encoding: &'static dyn Encoding,
|
|
||||||
) -> Task<Result<String>> {
|
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,7 @@ clock.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
context_server.workspace = true
|
context_server.workspace = true
|
||||||
dap.workspace = true
|
dap.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
extension.workspace = true
|
extension.workspace = true
|
||||||
fancy-regex.workspace = true
|
fancy-regex.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
|
@ -90,6 +91,7 @@ worktree.workspace = true
|
||||||
zlog.workspace = true
|
zlog.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { workspace = true, features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collections = { workspace = true, features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
|
|
|
@ -372,6 +372,8 @@ impl LocalBufferStore {
|
||||||
let version = buffer.version();
|
let version = buffer.version();
|
||||||
let buffer_id = buffer.remote_id();
|
let buffer_id = buffer.remote_id();
|
||||||
let file = buffer.file().cloned();
|
let file = buffer.file().cloned();
|
||||||
|
let encoding = buffer.encoding;
|
||||||
|
|
||||||
if file
|
if file
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.is_some_and(|file| file.disk_state() == DiskState::New)
|
.is_some_and(|file| file.disk_state() == DiskState::New)
|
||||||
|
@ -380,7 +382,7 @@ impl LocalBufferStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
let save = worktree.update(cx, |worktree, cx| {
|
let save = worktree.update(cx, |worktree, cx| {
|
||||||
worktree.write_file(path.as_ref(), text, line_ending, cx)
|
worktree.write_file(path.as_ref(), text, line_ending, cx, encoding)
|
||||||
});
|
});
|
||||||
|
|
||||||
cx.spawn(async move |this, cx| {
|
cx.spawn(async move |this, cx| {
|
||||||
|
|
|
@ -7,7 +7,8 @@ use std::{
|
||||||
|
|
||||||
use anyhow::{Context as _, Result, anyhow};
|
use anyhow::{Context as _, Result, anyhow};
|
||||||
use collections::{HashMap, HashSet};
|
use collections::{HashMap, HashSet};
|
||||||
use fs::Fs;
|
use encoding::all::UTF_8;
|
||||||
|
use fs::{Fs, encodings::EncodingWrapper};
|
||||||
use futures::{
|
use futures::{
|
||||||
FutureExt,
|
FutureExt,
|
||||||
future::{self, Shared},
|
future::{self, Shared},
|
||||||
|
@ -941,10 +942,12 @@ async fn install_prettier_packages(
|
||||||
|
|
||||||
async fn save_prettier_server_file(fs: &dyn Fs) -> anyhow::Result<()> {
|
async fn save_prettier_server_file(fs: &dyn Fs) -> anyhow::Result<()> {
|
||||||
let prettier_wrapper_path = default_prettier_dir().join(prettier::PRETTIER_SERVER_FILE);
|
let prettier_wrapper_path = default_prettier_dir().join(prettier::PRETTIER_SERVER_FILE);
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
fs.save(
|
fs.save(
|
||||||
&prettier_wrapper_path,
|
&prettier_wrapper_path,
|
||||||
&text::Rope::from(prettier::PRETTIER_SERVER_JS),
|
&text::Rope::from(prettier::PRETTIER_SERVER_JS),
|
||||||
text::LineEnding::Unix,
|
text::LineEnding::Unix,
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.with_context(|| {
|
.with_context(|| {
|
||||||
|
|
|
@ -9,7 +9,8 @@ use buffer_diff::{
|
||||||
BufferDiffEvent, CALCULATE_DIFF_TASK, DiffHunkSecondaryStatus, DiffHunkStatus,
|
BufferDiffEvent, CALCULATE_DIFF_TASK, DiffHunkSecondaryStatus, DiffHunkStatus,
|
||||||
DiffHunkStatusKind, assert_hunks,
|
DiffHunkStatusKind, assert_hunks,
|
||||||
};
|
};
|
||||||
use fs::FakeFs;
|
use encoding::all::UTF_8;
|
||||||
|
use fs::{FakeFs, encodings::EncodingWrapper};
|
||||||
use futures::{StreamExt, future};
|
use futures::{StreamExt, future};
|
||||||
use git::{
|
use git::{
|
||||||
GitHostingProviderRegistry,
|
GitHostingProviderRegistry,
|
||||||
|
@ -1448,10 +1449,14 @@ async fn test_reporting_fs_changes_to_language_servers(cx: &mut gpui::TestAppCon
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
|
|
||||||
fs.save(
|
fs.save(
|
||||||
path!("/the-root/Cargo.lock").as_ref(),
|
path!("/the-root/Cargo.lock").as_ref(),
|
||||||
&"".into(),
|
&"".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper.clone(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -1459,6 +1464,7 @@ async fn test_reporting_fs_changes_to_language_servers(cx: &mut gpui::TestAppCon
|
||||||
path!("/the-stdlib/LICENSE").as_ref(),
|
path!("/the-stdlib/LICENSE").as_ref(),
|
||||||
&"".into(),
|
&"".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper.clone(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -1466,6 +1472,7 @@ async fn test_reporting_fs_changes_to_language_servers(cx: &mut gpui::TestAppCon
|
||||||
path!("/the/stdlib/src/string.rs").as_ref(),
|
path!("/the/stdlib/src/string.rs").as_ref(),
|
||||||
&"".into(),
|
&"".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -3941,12 +3948,15 @@ async fn test_file_changes_multiple_times_on_disk(cx: &mut gpui::TestAppContext)
|
||||||
// the next file change occurs.
|
// the next file change occurs.
|
||||||
cx.executor().deprioritize(*language::BUFFER_DIFF_TASK);
|
cx.executor().deprioritize(*language::BUFFER_DIFF_TASK);
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
|
|
||||||
// Change the buffer's file on disk, and then wait for the file change
|
// Change the buffer's file on disk, and then wait for the file change
|
||||||
// to be detected by the worktree, so that the buffer starts reloading.
|
// to be detected by the worktree, so that the buffer starts reloading.
|
||||||
fs.save(
|
fs.save(
|
||||||
path!("/dir/file1").as_ref(),
|
path!("/dir/file1").as_ref(),
|
||||||
&"the first contents".into(),
|
&"the first contents".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper.clone(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -3958,6 +3968,7 @@ async fn test_file_changes_multiple_times_on_disk(cx: &mut gpui::TestAppContext)
|
||||||
path!("/dir/file1").as_ref(),
|
path!("/dir/file1").as_ref(),
|
||||||
&"the second contents".into(),
|
&"the second contents".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -3996,12 +4007,15 @@ async fn test_edit_buffer_while_it_reloads(cx: &mut gpui::TestAppContext) {
|
||||||
// the next file change occurs.
|
// the next file change occurs.
|
||||||
cx.executor().deprioritize(*language::BUFFER_DIFF_TASK);
|
cx.executor().deprioritize(*language::BUFFER_DIFF_TASK);
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
|
|
||||||
// Change the buffer's file on disk, and then wait for the file change
|
// Change the buffer's file on disk, and then wait for the file change
|
||||||
// to be detected by the worktree, so that the buffer starts reloading.
|
// to be detected by the worktree, so that the buffer starts reloading.
|
||||||
fs.save(
|
fs.save(
|
||||||
path!("/dir/file1").as_ref(),
|
path!("/dir/file1").as_ref(),
|
||||||
&"the first contents".into(),
|
&"the first contents".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4603,10 +4617,14 @@ async fn test_buffer_file_changes_on_disk(cx: &mut gpui::TestAppContext) {
|
||||||
|
|
||||||
let (new_contents, new_offsets) =
|
let (new_contents, new_offsets) =
|
||||||
marked_text_offsets("oneˇ\nthree ˇFOURˇ five\nsixtyˇ seven\n");
|
marked_text_offsets("oneˇ\nthree ˇFOURˇ five\nsixtyˇ seven\n");
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
|
|
||||||
fs.save(
|
fs.save(
|
||||||
path!("/dir/the-file").as_ref(),
|
path!("/dir/the-file").as_ref(),
|
||||||
&new_contents.as_str().into(),
|
&new_contents.as_str().into(),
|
||||||
LineEnding::Unix,
|
LineEnding::Unix,
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4634,11 +4652,14 @@ async fn test_buffer_file_changes_on_disk(cx: &mut gpui::TestAppContext) {
|
||||||
assert!(!buffer.has_conflict());
|
assert!(!buffer.has_conflict());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
|
|
||||||
// Change the file on disk again, adding blank lines to the beginning.
|
// Change the file on disk again, adding blank lines to the beginning.
|
||||||
fs.save(
|
fs.save(
|
||||||
path!("/dir/the-file").as_ref(),
|
path!("/dir/the-file").as_ref(),
|
||||||
&"\n\n\nAAAA\naaa\nBB\nbbbbb\n".into(),
|
&"\n\n\nAAAA\naaa\nBB\nbbbbb\n".into(),
|
||||||
LineEnding::Unix,
|
LineEnding::Unix,
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4685,12 +4706,15 @@ async fn test_buffer_line_endings(cx: &mut gpui::TestAppContext) {
|
||||||
assert_eq!(buffer.line_ending(), LineEnding::Windows);
|
assert_eq!(buffer.line_ending(), LineEnding::Windows);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
|
|
||||||
// Change a file's line endings on disk from unix to windows. The buffer's
|
// Change a file's line endings on disk from unix to windows. The buffer's
|
||||||
// state updates correctly.
|
// state updates correctly.
|
||||||
fs.save(
|
fs.save(
|
||||||
path!("/dir/file1").as_ref(),
|
path!("/dir/file1").as_ref(),
|
||||||
&"aaa\nb\nc\n".into(),
|
&"aaa\nb\nc\n".into(),
|
||||||
LineEnding::Windows,
|
LineEnding::Windows,
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -30,6 +30,7 @@ clap.workspace = true
|
||||||
client.workspace = true
|
client.workspace = true
|
||||||
dap_adapters.workspace = true
|
dap_adapters.workspace = true
|
||||||
debug_adapter_extension.workspace = true
|
debug_adapter_extension.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
extension.workspace = true
|
extension.workspace = true
|
||||||
extension_host.workspace = true
|
extension_host.workspace = true
|
||||||
|
|
|
@ -6,10 +6,11 @@ use assistant_tool::{Tool as _, ToolResultContent};
|
||||||
use assistant_tools::{ReadFileTool, ReadFileToolInput};
|
use assistant_tools::{ReadFileTool, ReadFileToolInput};
|
||||||
use client::{Client, UserStore};
|
use client::{Client, UserStore};
|
||||||
use clock::FakeSystemClock;
|
use clock::FakeSystemClock;
|
||||||
|
use encoding::all::UTF_8;
|
||||||
use language_model::{LanguageModelRequest, fake_provider::FakeLanguageModel};
|
use language_model::{LanguageModelRequest, fake_provider::FakeLanguageModel};
|
||||||
|
|
||||||
use extension::ExtensionHostProxy;
|
use extension::ExtensionHostProxy;
|
||||||
use fs::{FakeFs, Fs};
|
use fs::{FakeFs, Fs, encodings::EncodingWrapper};
|
||||||
use gpui::{AppContext as _, Entity, SemanticVersion, TestAppContext};
|
use gpui::{AppContext as _, Entity, SemanticVersion, TestAppContext};
|
||||||
use http_client::{BlockedHttpClient, FakeHttpClient};
|
use http_client::{BlockedHttpClient, FakeHttpClient};
|
||||||
use language::{
|
use language::{
|
||||||
|
@ -123,6 +124,7 @@ async fn test_basic_remote_editing(cx: &mut TestAppContext, server_cx: &mut Test
|
||||||
path!("/code/project1/src/main.rs").as_ref(),
|
path!("/code/project1/src/main.rs").as_ref(),
|
||||||
&"fn main() {}".into(),
|
&"fn main() {}".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -763,6 +765,7 @@ async fn test_remote_reload(cx: &mut TestAppContext, server_cx: &mut TestAppCont
|
||||||
&PathBuf::from(path!("/code/project1/src/lib.rs")),
|
&PathBuf::from(path!("/code/project1/src/lib.rs")),
|
||||||
&("bangles".to_string().into()),
|
&("bangles".to_string().into()),
|
||||||
LineEnding::Unix,
|
LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -778,6 +781,7 @@ async fn test_remote_reload(cx: &mut TestAppContext, server_cx: &mut TestAppCont
|
||||||
&PathBuf::from(path!("/code/project1/src/lib.rs")),
|
&PathBuf::from(path!("/code/project1/src/lib.rs")),
|
||||||
&("bloop".to_string().into()),
|
&("bloop".to_string().into()),
|
||||||
LineEnding::Unix,
|
LineEnding::Unix,
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -52,6 +52,7 @@ workspace.workspace = true
|
||||||
zed_actions.workspace = true
|
zed_actions.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assets.workspace = true
|
assets.workspace = true
|
||||||
command_palette.workspace = true
|
command_palette.workspace = true
|
||||||
|
|
|
@ -35,6 +35,7 @@ clock.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
component.workspace = true
|
component.workspace = true
|
||||||
db.workspace = true
|
db.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
|
|
|
@ -19,6 +19,8 @@ mod workspace_settings;
|
||||||
|
|
||||||
pub use crate::notifications::NotificationFrame;
|
pub use crate::notifications::NotificationFrame;
|
||||||
pub use dock::Panel;
|
pub use dock::Panel;
|
||||||
|
use encoding::all::UTF_8;
|
||||||
|
use fs::encodings::EncodingWrapper;
|
||||||
pub use path_list::PathList;
|
pub use path_list::PathList;
|
||||||
pub use toast_layer::{ToastAction, ToastLayer, ToastView};
|
pub use toast_layer::{ToastAction, ToastLayer, ToastView};
|
||||||
|
|
||||||
|
@ -118,7 +120,6 @@ use crate::persistence::{
|
||||||
model::{DockData, DockStructure, SerializedItem, SerializedPane, SerializedPaneGroup},
|
model::{DockData, DockStructure, SerializedItem, SerializedPane, SerializedPaneGroup},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
pub const SERIALIZATION_THROTTLE_TIME: Duration = Duration::from_millis(200);
|
pub const SERIALIZATION_THROTTLE_TIME: Duration = Duration::from_millis(200);
|
||||||
|
|
||||||
static ZED_WINDOW_SIZE: LazyLock<Option<Size<Pixels>>> = LazyLock::new(|| {
|
static ZED_WINDOW_SIZE: LazyLock<Option<Size<Pixels>>> = LazyLock::new(|| {
|
||||||
|
@ -7233,8 +7234,14 @@ pub fn create_and_open_local_file(
|
||||||
let fs = workspace.read_with(cx, |workspace, _| workspace.app_state().fs.clone())?;
|
let fs = workspace.read_with(cx, |workspace, _| workspace.app_state().fs.clone())?;
|
||||||
if !fs.is_file(path).await {
|
if !fs.is_file(path).await {
|
||||||
fs.create_file(path, Default::default()).await?;
|
fs.create_file(path, Default::default()).await?;
|
||||||
fs.save(path, &default_content(), Default::default())
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
.await?;
|
fs.save(
|
||||||
|
path,
|
||||||
|
&default_content(),
|
||||||
|
Default::default(),
|
||||||
|
encoding_wrapper,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut items = workspace
|
let mut items = workspace
|
||||||
|
|
|
@ -26,6 +26,7 @@ test-support = [
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
clock.workspace = true
|
clock.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
fs.workspace = true
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy.workspace = true
|
fuzzy.workspace = true
|
||||||
|
@ -48,7 +49,6 @@ sum_tree.workspace = true
|
||||||
text.workspace = true
|
text.workspace = true
|
||||||
util.workspace = true
|
util.workspace = true
|
||||||
workspace-hack.workspace = true
|
workspace-hack.workspace = true
|
||||||
encoding = "0.2.33"
|
|
||||||
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -835,9 +835,10 @@ impl Worktree {
|
||||||
text: Rope,
|
text: Rope,
|
||||||
line_ending: LineEnding,
|
line_ending: LineEnding,
|
||||||
cx: &Context<Worktree>,
|
cx: &Context<Worktree>,
|
||||||
|
encoding: &'static dyn Encoding,
|
||||||
) -> Task<Result<Arc<File>>> {
|
) -> Task<Result<Arc<File>>> {
|
||||||
match self {
|
match self {
|
||||||
Worktree::Local(this) => this.write_file(path, text, line_ending, cx),
|
Worktree::Local(this) => this.write_file(path, text, line_ending, cx, encoding),
|
||||||
Worktree::Remote(_) => {
|
Worktree::Remote(_) => {
|
||||||
Task::ready(Err(anyhow!("remote worktree can't yet write files")))
|
Task::ready(Err(anyhow!("remote worktree can't yet write files")))
|
||||||
}
|
}
|
||||||
|
@ -1648,6 +1649,7 @@ impl LocalWorktree {
|
||||||
text: Rope,
|
text: Rope,
|
||||||
line_ending: LineEnding,
|
line_ending: LineEnding,
|
||||||
cx: &Context<Worktree>,
|
cx: &Context<Worktree>,
|
||||||
|
encoding: &'static dyn Encoding,
|
||||||
) -> Task<Result<Arc<File>>> {
|
) -> Task<Result<Arc<File>>> {
|
||||||
let path = path.into();
|
let path = path.into();
|
||||||
let fs = self.fs.clone();
|
let fs = self.fs.clone();
|
||||||
|
@ -1656,10 +1658,15 @@ impl LocalWorktree {
|
||||||
return Task::ready(Err(anyhow!("invalid path {path:?}")));
|
return Task::ready(Err(anyhow!("invalid path {path:?}")));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(encoding);
|
||||||
|
|
||||||
let write = cx.background_spawn({
|
let write = cx.background_spawn({
|
||||||
let fs = fs.clone();
|
let fs = fs.clone();
|
||||||
let abs_path = abs_path.clone();
|
let abs_path = abs_path.clone();
|
||||||
async move { fs.save(&abs_path, &text, line_ending).await }
|
async move {
|
||||||
|
fs.save(&abs_path, &text, line_ending, encoding_wrapper)
|
||||||
|
.await
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
cx.spawn(async move |this, cx| {
|
cx.spawn(async move |this, cx| {
|
||||||
|
|
|
@ -3,7 +3,8 @@ use crate::{
|
||||||
worktree_settings::WorktreeSettings,
|
worktree_settings::WorktreeSettings,
|
||||||
};
|
};
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use fs::{FakeFs, Fs, RealFs, RemoveOptions};
|
use encoding::all::UTF_8;
|
||||||
|
use fs::{FakeFs, Fs, RealFs, RemoveOptions, encodings::EncodingWrapper};
|
||||||
use git::GITIGNORE;
|
use git::GITIGNORE;
|
||||||
use gpui::{AppContext as _, BackgroundExecutor, BorrowAppContext, Context, Task, TestAppContext};
|
use gpui::{AppContext as _, BackgroundExecutor, BorrowAppContext, Context, Task, TestAppContext};
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
|
@ -642,9 +643,15 @@ async fn test_dirs_no_longer_ignored(cx: &mut TestAppContext) {
|
||||||
|
|
||||||
// Update the gitignore so that node_modules is no longer ignored,
|
// Update the gitignore so that node_modules is no longer ignored,
|
||||||
// but a subdirectory is ignored
|
// but a subdirectory is ignored
|
||||||
fs.save("/root/.gitignore".as_ref(), &"e".into(), Default::default())
|
let encoding_wrapper = fs::encodings::EncodingWrapper::new(UTF_8);
|
||||||
.await
|
fs.save(
|
||||||
.unwrap();
|
"/root/.gitignore".as_ref(),
|
||||||
|
&"e".into(),
|
||||||
|
Default::default(),
|
||||||
|
encoding_wrapper,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
cx.executor().run_until_parked();
|
cx.executor().run_until_parked();
|
||||||
|
|
||||||
// All of the directories that are no longer ignored are now loaded.
|
// All of the directories that are no longer ignored are now loaded.
|
||||||
|
@ -715,6 +722,7 @@ async fn test_write_file(cx: &mut TestAppContext) {
|
||||||
"hello".into(),
|
"hello".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
cx,
|
cx,
|
||||||
|
UTF_8,
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
|
@ -726,6 +734,7 @@ async fn test_write_file(cx: &mut TestAppContext) {
|
||||||
"world".into(),
|
"world".into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
cx,
|
cx,
|
||||||
|
UTF_8,
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
|
@ -1746,8 +1755,13 @@ fn randomly_mutate_worktree(
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
log::info!("overwriting file {:?} ({})", entry.path, entry.id.0);
|
log::info!("overwriting file {:?} ({})", entry.path, entry.id.0);
|
||||||
let task =
|
let task = worktree.write_file(
|
||||||
worktree.write_file(entry.path.clone(), "".into(), Default::default(), cx);
|
entry.path.clone(),
|
||||||
|
"".into(),
|
||||||
|
Default::default(),
|
||||||
|
cx,
|
||||||
|
UTF_8,
|
||||||
|
);
|
||||||
cx.background_spawn(async move {
|
cx.background_spawn(async move {
|
||||||
task.await?;
|
task.await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -1834,10 +1848,12 @@ async fn randomly_mutate_fs(
|
||||||
ignore_path.strip_prefix(root_path).unwrap(),
|
ignore_path.strip_prefix(root_path).unwrap(),
|
||||||
ignore_contents
|
ignore_contents
|
||||||
);
|
);
|
||||||
|
let encoding_wrapper = EncodingWrapper::new(UTF_8);
|
||||||
fs.save(
|
fs.save(
|
||||||
&ignore_path,
|
&ignore_path,
|
||||||
&ignore_contents.as_str().into(),
|
&ignore_contents.as_str().into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
encoding_wrapper,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -55,6 +55,7 @@ debugger_tools.workspace = true
|
||||||
debugger_ui.workspace = true
|
debugger_ui.workspace = true
|
||||||
diagnostics.workspace = true
|
diagnostics.workspace = true
|
||||||
editor.workspace = true
|
editor.workspace = true
|
||||||
|
encoding.workspace = true
|
||||||
encodings.workspace = true
|
encodings.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
extension.workspace = true
|
extension.workspace = true
|
||||||
|
@ -168,7 +169,6 @@ zed_actions.workspace = true
|
||||||
zeta.workspace = true
|
zeta.workspace = true
|
||||||
zlog.workspace = true
|
zlog.workspace = true
|
||||||
zlog_settings.workspace = true
|
zlog_settings.workspace = true
|
||||||
encoding = "0.2.33"
|
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies]
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
windows.workspace = true
|
windows.workspace = true
|
||||||
|
|
|
@ -1937,6 +1937,8 @@ mod tests {
|
||||||
use assets::Assets;
|
use assets::Assets;
|
||||||
use collections::HashSet;
|
use collections::HashSet;
|
||||||
use editor::{DisplayPoint, Editor, SelectionEffects, display_map::DisplayRow};
|
use editor::{DisplayPoint, Editor, SelectionEffects, display_map::DisplayRow};
|
||||||
|
use encoding::all::UTF_8;
|
||||||
|
use fs::encodings::EncodingWrapper;
|
||||||
use gpui::{
|
use gpui::{
|
||||||
Action, AnyWindowHandle, App, AssetSource, BorrowAppContext, SemanticVersion,
|
Action, AnyWindowHandle, App, AssetSource, BorrowAppContext, SemanticVersion,
|
||||||
TestAppContext, UpdateGlobal, VisualTestContext, WindowHandle, actions,
|
TestAppContext, UpdateGlobal, VisualTestContext, WindowHandle, actions,
|
||||||
|
@ -4128,6 +4130,7 @@ mod tests {
|
||||||
"/settings.json".as_ref(),
|
"/settings.json".as_ref(),
|
||||||
&r#"{"base_keymap": "Atom"}"#.into(),
|
&r#"{"base_keymap": "Atom"}"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4138,6 +4141,7 @@ mod tests {
|
||||||
"/keymap.json".as_ref(),
|
"/keymap.json".as_ref(),
|
||||||
&r#"[{"bindings": {"backspace": "test_only::ActionA"}}]"#.into(),
|
&r#"[{"bindings": {"backspace": "test_only::ActionA"}}]"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4186,6 +4190,7 @@ mod tests {
|
||||||
"/keymap.json".as_ref(),
|
"/keymap.json".as_ref(),
|
||||||
&r#"[{"bindings": {"backspace": "test_only::ActionB"}}]"#.into(),
|
&r#"[{"bindings": {"backspace": "test_only::ActionB"}}]"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4206,6 +4211,7 @@ mod tests {
|
||||||
"/settings.json".as_ref(),
|
"/settings.json".as_ref(),
|
||||||
&r#"{"base_keymap": "JetBrains"}"#.into(),
|
&r#"{"base_keymap": "JetBrains"}"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4246,6 +4252,7 @@ mod tests {
|
||||||
"/settings.json".as_ref(),
|
"/settings.json".as_ref(),
|
||||||
&r#"{"base_keymap": "Atom"}"#.into(),
|
&r#"{"base_keymap": "Atom"}"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4255,6 +4262,7 @@ mod tests {
|
||||||
"/keymap.json".as_ref(),
|
"/keymap.json".as_ref(),
|
||||||
&r#"[{"bindings": {"backspace": "test_only::ActionA"}}]"#.into(),
|
&r#"[{"bindings": {"backspace": "test_only::ActionA"}}]"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4298,6 +4306,7 @@ mod tests {
|
||||||
"/keymap.json".as_ref(),
|
"/keymap.json".as_ref(),
|
||||||
&r#"[{"bindings": {"backspace": null}}]"#.into(),
|
&r#"[{"bindings": {"backspace": null}}]"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -4318,6 +4327,7 @@ mod tests {
|
||||||
"/settings.json".as_ref(),
|
"/settings.json".as_ref(),
|
||||||
&r#"{"base_keymap": "JetBrains"}"#.into(),
|
&r#"{"base_keymap": "JetBrains"}"#.into(),
|
||||||
Default::default(),
|
Default::default(),
|
||||||
|
EncodingWrapper::new(UTF_8),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue