Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

Commit f9839cd

Browse files
authored
Merge pull request #743 from xamarin/backport-pr-734-to-master-vnext
[master-vnext] Fix content type from mime type calculations.
2 parents c88d075 + 2075f4a commit f9839cd

File tree

4 files changed

+16
-27
lines changed

4 files changed

+16
-27
lines changed

main/src/addins/MonoDevelop.TextEditor/MonoDevelop.TextEditor/TextViewContent.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -660,8 +660,7 @@ private void HandleTextBufferChanged (object sender, TextContentChangedEventArgs
660660
static readonly string[] textContentType = { "text" };
661661

662662
IContentType GetContentTypeFromMimeType (string filePath, string mimeType)
663-
=> Ide.MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType)
664-
?? (FilePath != null ? Ide.Composition.CompositionManager.Instance.GetExportedValue<IFileToContentTypeService> ().GetContentTypeForFilePath (FilePath) : null)
663+
=> Ide.MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType, filePath)
665664
?? Microsoft.VisualStudio.Platform.PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType;
666665

667666
protected internal override ProjectReloadCapability OnGetProjectReloadCapability () => ProjectReloadCapability.Full;

main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/Document/TextDocument.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public string MimeType {
7878
}
7979

8080
mimeType = value;
81-
var newContentType = MimeTypeCatalog.Instance.GetContentTypeForMimeType (value) ?? PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType;
81+
var newContentType = MimeTypeCatalog.Instance.GetContentTypeForMimeType (value, FileName) ?? PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType;
8282
if (TextBuffer != null && TextBuffer.CurrentSnapshot.ContentType != newContentType) {
8383
TextBuffer.ChangeContentType (newContentType, null);
8484
}
@@ -362,8 +362,7 @@ void TextBufferFileModel_TextBufferInstanceChanged (object sender, EventArgs e)
362362
}
363363

364364
IContentType GetContentTypeFromMimeType (string fileName, string mimeType)
365-
=> MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType)
366-
?? (fileName != null ? MonoDevelop.Ide.Composition.CompositionManager.Instance.GetExportedValue<IFileToContentTypeService> ().GetContentTypeForFilePath (fileName) : null)
365+
=> MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType, fileName)
367366
?? PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType;
368367

369368
public static TextDocument CreateImmutableDocument (string text, bool suppressHighlighting = true)

main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Documents/TextBufferFileModel.cs

+5-21
Original file line numberDiff line numberDiff line change
@@ -125,34 +125,18 @@ protected override Task OnSave ()
125125

126126
ITextDocument CreateTextDocument (string text)
127127
{
128-
var contentType = (MimeType == null) ? PlatformCatalog.Instance.TextBufferFactoryService.InertContentType : GetContentTypeFromMimeType (FilePath, MimeType);
128+
var contentType = (MimeType == null)
129+
? PlatformCatalog.Instance.TextBufferFactoryService.InertContentType
130+
: GetContentTypeFromMimeType (FilePath, MimeType);
129131
var buffer = PlatformCatalog.Instance.TextBufferFactoryService.CreateTextBuffer (text, contentType);
130132
var doc = PlatformCatalog.Instance.TextDocumentFactoryService.CreateTextDocument (buffer, FilePath.ToString () ?? "");
131133
return doc;
132134
}
133135

134136
protected static IContentType GetContentTypeFromMimeType (string filePath, string mimeType)
135137
{
136-
if (filePath != null) {
137-
var fileToContentTypeService = CompositionManager.Instance.GetExportedValue<IFileToContentTypeService> ();
138-
var contentTypeFromPath = fileToContentTypeService.GetContentTypeForFilePath (filePath);
139-
if (contentTypeFromPath != null &&
140-
contentTypeFromPath != PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType) {
141-
return contentTypeFromPath;
142-
}
143-
}
144-
var contentType = MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType);
145-
if (contentType == null) {
146-
// fallback 1: see if there is a content tyhpe with the same name
147-
contentType = PlatformCatalog.Instance.ContentTypeRegistryService.GetContentType (mimeType);
148-
if (contentType == null) {
149-
// No joy, create a content type that, by default, derives from text. This is strictly an error
150-
// (there should be mappings between any mime type and any content type).
151-
contentType = PlatformCatalog.Instance.ContentTypeRegistryService.AddContentType (mimeType, new string [] { "text" });
152-
}
153-
}
154-
155-
return contentType;
138+
return MimeTypeCatalog.Instance.GetContentTypeForMimeType (mimeType, filePath)
139+
?? PlatformCatalog.Instance.ContentTypeRegistryService.GetContentType ("text");
156140
}
157141

158142
void SetTextDocument (ITextDocument doc)

main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/MimeTypeCatalog.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,15 @@ public string GetMimeTypeForContentType (IContentType contentType)
191191
public IEnumerable<string> GetMimeTypeInheritanceChainForContentType (IContentType contentType)
192192
=> GetMimeTypeInheritanceChain (GetMimeTypeNodeForContentType (contentType.TypeName));
193193

194-
public IContentType GetContentTypeForMimeType (string mimeType)
194+
public IContentType GetContentTypeForMimeType (string mimeType, string filePath = null)
195195
{
196+
if (filePath != null) {
197+
var contentType = Ide.Composition.CompositionManager.Instance.GetExportedValue<IFileToContentTypeService> ().GetContentTypeForFilePath (filePath);
198+
if (contentType != null && contentType != PlatformCatalog.Instance.ContentTypeRegistryService.UnknownContentType) {
199+
return contentType;
200+
}
201+
}
202+
196203
if (mimeType != null) {
197204
var node = FindMimeType (mimeType);
198205
foreach (var mt in GetMimeTypeNodeInheritanceChain (node)) {

0 commit comments

Comments
 (0)