mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-12 18:39:45 +00:00
Code Cleanup
This commit is contained in:
@@ -1,20 +1,27 @@
|
||||
// Copyright © 2017 Paddy Xu
|
||||
//
|
||||
//
|
||||
// This file is part of QuickLook program.
|
||||
//
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
using ICSharpCode.AvalonEdit;
|
||||
using ICSharpCode.AvalonEdit.Document;
|
||||
using ICSharpCode.AvalonEdit.Highlighting;
|
||||
using ICSharpCode.AvalonEdit.Rendering;
|
||||
using ICSharpCode.AvalonEdit.Search;
|
||||
using QuickLook.Common.Helpers;
|
||||
using QuickLook.Common.Plugin;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
@@ -24,179 +31,171 @@ using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Threading;
|
||||
using ICSharpCode.AvalonEdit;
|
||||
using ICSharpCode.AvalonEdit.Document;
|
||||
using ICSharpCode.AvalonEdit.Highlighting;
|
||||
using ICSharpCode.AvalonEdit.Rendering;
|
||||
using ICSharpCode.AvalonEdit.Search;
|
||||
using QuickLook.Common.Helpers;
|
||||
using QuickLook.Common.Plugin;
|
||||
using UtfUnknown;
|
||||
|
||||
namespace QuickLook.Plugin.TextViewer
|
||||
namespace QuickLook.Plugin.TextViewer;
|
||||
|
||||
public class TextViewerPanel : TextEditor, IDisposable
|
||||
{
|
||||
public class TextViewerPanel : TextEditor, IDisposable
|
||||
private readonly ContextObject _context;
|
||||
private bool _disposed;
|
||||
private HighlightingManager highlightingManager = HighlightingManager.Instance;
|
||||
|
||||
public TextViewerPanel(string path, ContextObject context)
|
||||
{
|
||||
private readonly ContextObject _context;
|
||||
private bool _disposed;
|
||||
private HighlightingManager highlightingManager = HighlightingManager.Instance;
|
||||
_context = context;
|
||||
|
||||
public TextViewerPanel(string path, ContextObject context)
|
||||
FontSize = 14;
|
||||
ShowLineNumbers = true;
|
||||
WordWrap = true;
|
||||
IsReadOnly = true;
|
||||
IsManipulationEnabled = true;
|
||||
Options.EnableEmailHyperlinks = false;
|
||||
Options.EnableHyperlinks = false;
|
||||
|
||||
ContextMenu = new ContextMenu();
|
||||
ContextMenu.Items.Add(new MenuItem
|
||||
{
|
||||
_context = context;
|
||||
Header = TranslationHelper.Get("Editor_Copy", domain: Assembly.GetExecutingAssembly().GetName().Name),
|
||||
Command = ApplicationCommands.Copy
|
||||
});
|
||||
ContextMenu.Items.Add(new MenuItem
|
||||
{
|
||||
Header = TranslationHelper.Get("Editor_SelectAll",
|
||||
domain: Assembly.GetExecutingAssembly().GetName().Name),
|
||||
Command = ApplicationCommands.SelectAll
|
||||
});
|
||||
|
||||
FontSize = 14;
|
||||
ShowLineNumbers = true;
|
||||
WordWrap = true;
|
||||
IsReadOnly = true;
|
||||
IsManipulationEnabled = true;
|
||||
Options.EnableEmailHyperlinks = false;
|
||||
Options.EnableHyperlinks = false;
|
||||
ManipulationInertiaStarting += Viewer_ManipulationInertiaStarting;
|
||||
ManipulationStarting += Viewer_ManipulationStarting;
|
||||
ManipulationDelta += Viewer_ManipulationDelta;
|
||||
|
||||
ContextMenu = new ContextMenu();
|
||||
ContextMenu.Items.Add(new MenuItem
|
||||
PreviewMouseWheel += Viewer_MouseWheel;
|
||||
|
||||
FontFamily = new FontFamily(TranslationHelper.Get("Editor_FontFamily",
|
||||
domain: Assembly.GetExecutingAssembly().GetName().Name));
|
||||
|
||||
TextArea.TextView.ElementGenerators.Add(new TruncateLongLines());
|
||||
|
||||
SearchPanel.Install(this);
|
||||
|
||||
LoadFileAsync(path);
|
||||
}
|
||||
|
||||
public HighlightingManager HighlightingManager
|
||||
{
|
||||
get => highlightingManager;
|
||||
set => highlightingManager = value;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
_disposed = true;
|
||||
}
|
||||
|
||||
private void Viewer_ManipulationInertiaStarting(object sender, ManipulationInertiaStartingEventArgs e)
|
||||
{
|
||||
e.TranslationBehavior = new InertiaTranslationBehavior
|
||||
{
|
||||
InitialVelocity = e.InitialVelocities.LinearVelocity,
|
||||
DesiredDeceleration = 10.0 * 96.0 / (1000.0 * 1000.0)
|
||||
};
|
||||
}
|
||||
|
||||
private void Viewer_MouseWheel(object sender, MouseWheelEventArgs e)
|
||||
{
|
||||
e.Handled = true;
|
||||
|
||||
ScrollToVerticalOffset(VerticalOffset - e.Delta);
|
||||
}
|
||||
|
||||
private void Viewer_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
|
||||
{
|
||||
e.Handled = true;
|
||||
|
||||
var delta = e.DeltaManipulation;
|
||||
ScrollToVerticalOffset(VerticalOffset - delta.Translation.Y);
|
||||
}
|
||||
|
||||
private void Viewer_ManipulationStarting(object sender, ManipulationStartingEventArgs e)
|
||||
{
|
||||
e.Mode = ManipulationModes.Translate;
|
||||
}
|
||||
|
||||
private class TruncateLongLines : VisualLineElementGenerator
|
||||
{
|
||||
private const int MAX_LENGTH = 10000;
|
||||
private const string ELLIPSIS = "⁞⁞[TRUNCATED]⁞⁞";
|
||||
|
||||
public override int GetFirstInterestedOffset(int startOffset)
|
||||
{
|
||||
var line = CurrentContext.VisualLine.LastDocumentLine;
|
||||
if (line.Length > MAX_LENGTH)
|
||||
{
|
||||
Header = TranslationHelper.Get("Editor_Copy", domain: Assembly.GetExecutingAssembly().GetName().Name),
|
||||
Command = ApplicationCommands.Copy
|
||||
});
|
||||
ContextMenu.Items.Add(new MenuItem
|
||||
{
|
||||
Header = TranslationHelper.Get("Editor_SelectAll",
|
||||
domain: Assembly.GetExecutingAssembly().GetName().Name),
|
||||
Command = ApplicationCommands.SelectAll
|
||||
});
|
||||
|
||||
ManipulationInertiaStarting += Viewer_ManipulationInertiaStarting;
|
||||
ManipulationStarting += Viewer_ManipulationStarting;
|
||||
ManipulationDelta += Viewer_ManipulationDelta;
|
||||
|
||||
PreviewMouseWheel += Viewer_MouseWheel;
|
||||
|
||||
FontFamily = new FontFamily(TranslationHelper.Get("Editor_FontFamily",
|
||||
domain: Assembly.GetExecutingAssembly().GetName().Name));
|
||||
|
||||
TextArea.TextView.ElementGenerators.Add(new TruncateLongLines());
|
||||
|
||||
SearchPanel.Install(this);
|
||||
|
||||
LoadFileAsync(path);
|
||||
}
|
||||
|
||||
public HighlightingManager HighlightingManager
|
||||
{
|
||||
get => highlightingManager;
|
||||
set => highlightingManager = value;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
_disposed = true;
|
||||
}
|
||||
|
||||
private void Viewer_ManipulationInertiaStarting(object sender, ManipulationInertiaStartingEventArgs e)
|
||||
{
|
||||
e.TranslationBehavior = new InertiaTranslationBehavior
|
||||
{
|
||||
InitialVelocity = e.InitialVelocities.LinearVelocity,
|
||||
DesiredDeceleration = 10.0 * 96.0 / (1000.0 * 1000.0)
|
||||
};
|
||||
}
|
||||
|
||||
private void Viewer_MouseWheel(object sender, MouseWheelEventArgs e)
|
||||
{
|
||||
e.Handled = true;
|
||||
|
||||
ScrollToVerticalOffset(VerticalOffset - e.Delta);
|
||||
}
|
||||
|
||||
private void Viewer_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
|
||||
{
|
||||
e.Handled = true;
|
||||
|
||||
var delta = e.DeltaManipulation;
|
||||
ScrollToVerticalOffset(VerticalOffset - delta.Translation.Y);
|
||||
}
|
||||
|
||||
private void Viewer_ManipulationStarting(object sender, ManipulationStartingEventArgs e)
|
||||
{
|
||||
e.Mode = ManipulationModes.Translate;
|
||||
}
|
||||
|
||||
private class TruncateLongLines : VisualLineElementGenerator
|
||||
{
|
||||
const int MAX_LENGTH = 10000;
|
||||
const string ELLIPSIS = "⁞⁞[TRUNCATED]⁞⁞";
|
||||
|
||||
public override int GetFirstInterestedOffset(int startOffset)
|
||||
{
|
||||
var line = CurrentContext.VisualLine.LastDocumentLine;
|
||||
if (line.Length > MAX_LENGTH)
|
||||
{
|
||||
int ellipsisOffset = line.Offset + MAX_LENGTH - ELLIPSIS.Length;
|
||||
if (startOffset <= ellipsisOffset)
|
||||
return ellipsisOffset;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
public override VisualLineElement ConstructElement(int offset)
|
||||
{
|
||||
return new FormattedTextElement(ELLIPSIS, CurrentContext.VisualLine.LastDocumentLine.EndOffset - offset);
|
||||
int ellipsisOffset = line.Offset + MAX_LENGTH - ELLIPSIS.Length;
|
||||
if (startOffset <= ellipsisOffset)
|
||||
return ellipsisOffset;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
private void LoadFileAsync(string path)
|
||||
public override VisualLineElement ConstructElement(int offset)
|
||||
{
|
||||
Task.Run(() =>
|
||||
{
|
||||
const int maxLength = 5 * 1024 * 1024;
|
||||
const int maxHighlightingLength = (int)(0.5 * 1024 * 1024);
|
||||
var buffer = new MemoryStream();
|
||||
bool fileTooLong;
|
||||
|
||||
using (var s = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
|
||||
{
|
||||
fileTooLong = s.Length > maxLength;
|
||||
while (s.Position < s.Length && buffer.Length < maxLength)
|
||||
{
|
||||
if (_disposed)
|
||||
break;
|
||||
|
||||
var lb = new byte[8192];
|
||||
var count = s.Read(lb, 0, lb.Length);
|
||||
buffer.Write(lb, 0, count);
|
||||
}
|
||||
}
|
||||
|
||||
if (_disposed)
|
||||
return;
|
||||
|
||||
if (fileTooLong)
|
||||
_context.Title += " (0 ~ 5MB)";
|
||||
|
||||
var bufferCopy = buffer.ToArray();
|
||||
buffer.Dispose();
|
||||
|
||||
var encoding = CharsetDetector.DetectFromBytes(bufferCopy).Detected?.Encoding ??
|
||||
Encoding.Default;
|
||||
|
||||
var doc = new TextDocument(encoding.GetString(bufferCopy));
|
||||
doc.SetOwnerThread(Dispatcher.Thread);
|
||||
|
||||
if (_disposed)
|
||||
return;
|
||||
|
||||
Dispatcher.BeginInvoke(new Action(() =>
|
||||
{
|
||||
Encoding = encoding;
|
||||
SyntaxHighlighting = bufferCopy.Length > maxHighlightingLength
|
||||
? null
|
||||
: HighlightingManager?.GetDefinitionByExtension(Path.GetExtension(path));
|
||||
Document = doc;
|
||||
|
||||
_context.IsBusy = false;
|
||||
}), DispatcherPriority.Render);
|
||||
});
|
||||
return new FormattedTextElement(ELLIPSIS, CurrentContext.VisualLine.LastDocumentLine.EndOffset - offset);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void LoadFileAsync(string path)
|
||||
{
|
||||
Task.Run(() =>
|
||||
{
|
||||
const int maxLength = 5 * 1024 * 1024;
|
||||
const int maxHighlightingLength = (int)(0.5 * 1024 * 1024);
|
||||
var buffer = new MemoryStream();
|
||||
bool fileTooLong;
|
||||
|
||||
using (var s = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
|
||||
{
|
||||
fileTooLong = s.Length > maxLength;
|
||||
while (s.Position < s.Length && buffer.Length < maxLength)
|
||||
{
|
||||
if (_disposed)
|
||||
break;
|
||||
|
||||
var lb = new byte[8192];
|
||||
var count = s.Read(lb, 0, lb.Length);
|
||||
buffer.Write(lb, 0, count);
|
||||
}
|
||||
}
|
||||
|
||||
if (_disposed)
|
||||
return;
|
||||
|
||||
if (fileTooLong)
|
||||
_context.Title += " (0 ~ 5MB)";
|
||||
|
||||
var bufferCopy = buffer.ToArray();
|
||||
buffer.Dispose();
|
||||
|
||||
var encoding = CharsetDetector.DetectFromBytes(bufferCopy).Detected?.Encoding ??
|
||||
Encoding.Default;
|
||||
|
||||
var doc = new TextDocument(encoding.GetString(bufferCopy));
|
||||
doc.SetOwnerThread(Dispatcher.Thread);
|
||||
|
||||
if (_disposed)
|
||||
return;
|
||||
|
||||
Dispatcher.BeginInvoke(new Action(() =>
|
||||
{
|
||||
Encoding = encoding;
|
||||
SyntaxHighlighting = bufferCopy.Length > maxHighlightingLength
|
||||
? null
|
||||
: HighlightingManager?.GetDefinitionByExtension(Path.GetExtension(path));
|
||||
Document = doc;
|
||||
|
||||
_context.IsBusy = false;
|
||||
}), DispatcherPriority.Render);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user