從零開始實現ASP.NET Core MVC的外掛式開發(八) - Razor檢視相關問題及解決方案
阿新 • • 發佈:2020-06-29
> 標題:從零開始實現ASP.NET Core MVC的外掛式開發(八) - Razor檢視相關問題及解決方案
> 作者:Lamond Lu
> 地址:https://www.cnblogs.com/lwqlun/p/13197683.html
> 原始碼:https://github.com/lamondlu/Mystique
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171027088-444495624.jpg)
# 前景回顧
- [從零開始實現ASP.NET Core MVC的外掛式開發(一) - 使用Application Part動態載入控制器和檢視](https://www.cnblogs.com/lwqlun/p/11137788.html#4310745)
- [從零開始實現ASP.NET Core MVC的外掛式開發(二) - 如何建立專案模板](https://www.cnblogs.com/lwqlun/p/11155666.html)
- [從零開始實現ASP.NET Core MVC的外掛式開發(三) - 如何在執行時啟用元件](https://www.cnblogs.com/lwqlun/p/11260750.html )
- [從零開始實現ASP.NET Core MVC的外掛式開發(四) - 外掛安裝](https://www.cnblogs.com/lwqlun/p/11343141.html )
- [從零開始實現ASP.NET Core MVC的外掛式開發(五) - 使用AssemblyLoadContext實現外掛的升級和刪除](https://www.cnblogs.com/lwqlun/p/11395828.html)
- [從零開始實現ASP.NET Core MVC的外掛式開發(六) - 如何載入外掛引用](https://www.cnblogs.com/lwqlun/p/11717254.html)
- [從零開始實現ASP.NET Core MVC的外掛式開發(七) - 近期問題彙總及部分解決方案](https://www.cnblogs.com/lwqlun/p/12930713.html)
# 簡介
在上一篇中,我給大家分享了程式除錯問題的解決方案以及如何實現外掛中的訊息傳遞,完稿之後,又收到了不少問題反饋,其中最嚴重的問題應該就是執行時編譯Razor檢視失敗的問題。
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171048432-1945992790.png)
本篇我就給大家分享一下我針對此問題的解決方案,最後還會補上上一篇中鴿掉的動態載入選單(T.T)。
# Razor檢視中引用出錯問題
為了模擬一下當前的問題,我們首先之前的外掛1中新增一個新類`TestClass`, 並在`HelloWorld`方法中建立一個`TestClass`物件作為檢視模型傳遞給Razor檢視,並在Razor檢視中展示出`TestClass`的`Message`屬性。
- TestClass.cs
```c#
public class TestClass
{
public string Message { get; set; }
}
```
- HelloWorld.cshtml
```html
@using DemoPlugin1.Models;
@model TestClass
@{
}
();
IUnitOfWork unitOfWork = scope.ServiceProvider.GetService();
List allEnabledPlugins = unitOfWork.PluginRepository.GetAllEnabledPlugins();
IReferenceLoader loader = scope.ServiceProvider.GetService();
foreach (ViewModels.PluginListItemViewModel plugin in allEnabledPlugins)
{
...
using (FileStream fs = new FileStream(filePath, FileMode.Open))
{
System.Reflection.Assembly assembly = context.LoadFromStream(fs);
context.SetEntryPoint(assembly);
loader.LoadStreamsIntoContext(context, referenceFolderPath, assembly);
...
fs.Position = 0;
AssemblyLoadContext.Default.LoadFromStream(fs);
}
context.Enable();
}
}
...
}
```
重新執行程式,訪問外掛1的路由,你就會得到以下錯誤。
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171155298-1507181004.png)
這說明預設AssemblyLoadContext中的程式集正常載入了,只是和檢視中需要的型別**不匹配**,所以此處也可以說明`Razor`檢視的執行時編譯使用的是預設`AssemblyLoadContext`
> Notes: 這個場景在前幾篇中遇到過,在不同AssemblyLoadContext載入相同的程式集,系統會將嚴格的將他們區分開,外掛1中的AssemblyPart引用是外掛1所在`AssemblyLoadContext`中的`DemoPlugin1.Models.TestClass`型別,這與預設`AssemblyLoadContext`中載入的`DemoPlugin1.Models.TestClass`不符。
在之前系列文章中,我介紹過兩次,在ASP.NET Core的設計文件中,針對`AssemblyLoadContext`部分的是這樣設計的
- 每個ASP.NET Core程式啟動後,都會創建出一個唯一的預設`AssemblyLoadContext`
- 開發人員可以自定義`AssemblyLoadContext`, 當在自定義`AssemblyLoadContext`載入某個程式集的時候,如果在當前自定義的`AssemlyLoadContext`中找不到該程式集,系統會嘗試在預設`AssemblyLoadContext`中載入。
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171224552-1071221647.png)
但是這種程式集載入流程只是單向的,如果預設`AssemblyLoadContext`未載入某個程式集,但某個自定義`AssemblyLoadContext`中載入了該程式集,你是不能從預設`AssemblyLoadContext`中載入到這個程式集的。
這也就是我們現在遇到的問題,如果你有興趣的話,可以去Review一下ASP.NET Core的針對RuntimeCompilation原始碼部分,你會發現當ASP.NET Core的Razor檢視引擎會使用Roslyn來編譯檢視,這裡直接使用了預設的`AssemblyLoadContext`載入檢視所需的程式集引用。
綠線是我們期望的載入方式,紅線是實際的載入方式
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171241714-1858933124.png)
## 為什麼不直接用預設`AssemblyLoadContext`來載入外掛?
可能會有同學問,為什麼不用預設的`AssemblyLoadContext`來載入外掛,這裡有2個主要原因。
首先如果都使用預設的`AssemblyLoadContext`來載入外掛,當不同外掛使用了兩個不同版本、相同名稱的程式集時, 程式載入會出錯,因為一個`AssemblyLoadContext`不能載入不同版本,相同名稱的程式集,所以在之前我們才設計成了這種使用自定義程式集載入不同外掛的方式。
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171254940-1597264428.png)
其次如果都是用預設的`AssemblyLoadContext`來載入外掛,外掛的解除安裝和升級會變成一個大問題,但是如果我們使用自定義`AssemblyLoadContext`的載入外掛,當升級和解除安裝外掛時,我們可以毫不猶豫的Unload當前的自定義`AssemblyLoadContext`。
## 臨時的解決方案
既然不能使用預設`AssemblyLoadContext`來載入程式集了,那麼是不是隻能重寫Razor檢視執行時編譯程式碼來滿足當前需求呢?
答案當然是否定了,這裡我們可以通過`AssemblyLoadContext`提供的`Resolving`事件來解決這個問題。
`AssemblyLoadContext`的`Resolving`事件是在當前`AssemblyLoadContext`不能載入指定程式集時觸發的。所以當Razor引擎執行執行時檢視編譯的時候,如果在預設`AssemblyLoadContext`中找不到某個程式集,我們可以強制讓它去自定義的`AssemblyLoadContext`中查詢,如果能找到,就直接返回匹配的程式。這樣我們的外掛1檢視就可以正常展示了。
```c#
public static void MystiqueSetup(this IServiceCollection services, IConfiguration configuration)
{
...
AssemblyLoadContext.Default.Resolving += (context, assembly) =>
{
Func filter = p =>
p.Assemblies.Any(p => p.GetName().Name == assembly.Name
&& p.GetName().Version == assembly.Version);
if (PluginsLoadContexts.All().Any(filter))
{
var ass = PluginsLoadContexts.All().First(filter)
.Assemblies.First(p => p.GetName().Name == assembly.Name
&& p.GetName().Version == assembly.Version);
return ass;
}
return null;
};
...
}
```
> Note: 這裡其實還有一個問題,如果外掛1和外掛2都引用了相同版本和名稱的程式集,可能會出現外掛1的檢視匹配到外掛2中程式集的問題,就會出現和前面一樣的程式集衝突。這塊最終的解決肯定還是要重寫Razor的執行時編譯程式碼,後續如果能完成這部分,再來更新。
>
> 臨時的解決方案是,當一個相同版本和名稱的程式集被2個外掛共同使用時,我們可以使用預設`AssemblyLoadContext`來載入,並跳過自定義`AssemblyLoadContext`針對該程式集的載入。
現在我們重新啟動專案,訪問外掛1路由,頁面正常顯示了。
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171314821-127152313.png)
# 如何動態載入選單
之前有小夥伴問,能不能動態加入選單,每次都是手敲連結進入外掛介面相當的不友好。答案是肯定的。
這裡我先做一個簡單的實現,如果後續其他的難點都解決了,我會將這裡的實現改為一個單獨的模組,實現方式也改的更優雅一點。
首先在`Mystique.Core`專案中新增一個特性類`Page`, 這個特性只允許在方法上使用,`Name`屬性儲存了當前頁面的名稱。
```c#
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class Page : Attribute
{
public Page(string name)
{
Name = name;
}
public string Name { get; set; }
}
```
第二步,建立一個展示導航欄選單用的檢視模型類`PageRouteViewModel`,我們會在導航部分使用到它。
```c#
public class PageRouteViewModel
{
public PageRouteViewModel(string pageName, string area, string controller, string action)
{
PageName = pageName;
Area = area;
Controller = controller;
Action = action;
}
public string PageName { get; set; }
public string Area { get; set; }
public string Controller { get; set; }
public string Action { get; set; }
public string Url
{
get
{
return $"{Area}/{Controller}/{Action}";
}
}
}
```
第三步,我們需要使用反射,從所有**啟用**的外掛程式集中載入所有帶有`Page`特性的路由方法,並將他們組合成一個導航欄選單的檢視模型集合。
public static class CollectibleAssemblyLoadContextExtension
{
public static List GetPages(this CollectibleAssemblyLoadContext context)
{
var entryPointAssembly = context.GetEntryPointAssembly();
var result = new List();
if (entryPointAssembly == null || !context.IsEnabled)
{
return result;
}
var areaName = context.PluginName;
var types = entryPointAssembly.GetExportedTypes().Where(p => p.BaseType == typeof(Controller));
if (types.Any())
{
foreach (var type in types)
{
var controllerName = type.Name.Replace("Controller", "");
var actions = type.GetMethods().Where(p => p.GetCustomAttributes(false).Any(x => x.GetType() == typeof(Page))).ToList();
foreach (var action in actions)
{
var actionName = action.Name;
var pageAttribute = (Page)action.GetCustomAttributes(false).First(p => p.GetType() == typeof(Page));
result.Add(new PageRouteViewModel(pageAttribute.Name, areaName, controllerName, actionName));
}
}
return result;
}
else
{
return result;
}
}
}
> Notes: 這裡其實可以整合MVC的路由系統來生成Url, 這裡為了簡單演示,就採取了手動拼湊Url的方式,有興趣的同學可以自己改寫一下。
最後我們來修改主站點的母版頁`_Layout.cshtml`, 在導航欄尾部追加動態選單。
```html
@using Mystique.Core.Mvc.Extensions;
@{
var contexts = Mystique.Core.PluginsLoadContexts.All();
var menus = contexts.SelectMany(p => p.GetPages()).ToList();
}
...
```
這樣基礎設施部分的程式碼就完成了,下面我們來嘗試修改外掛1的程式碼,在`HelloWorld`路由方法上我們新增特性`[Page("Plugin One")]`, 這樣按照我們的預想,當外掛1啟動的時候,導航欄中應該出現`Plugin One`的選單項。
```c#
[Area("DemoPlugin1")]
public class Plugin1Controller : Controller
{
private INotificationRegister _notificationRegister;
public Plugin1Controller(INotificationRegister notificationRegister)
{
_notificationRegister = notificationRegister;
}
[Page("Plugin One")]
[HttpGet]
public IActionResult HelloWorld()
{
string content = new Demo().SayHello();
ViewBag.Content = content + "; Plugin2 triggered";
TestClass testClass = new TestClass();
testClass.Message = "Hello World";
_notificationRegister.Publish("LoadHelloWorldEvent", JsonConvert.SerializeObject(new LoadHelloWorldEvent() { Str = "Hello World" }));
return View(testClass);
}
}
```
## 最終效果
下面我們啟動程式,來看一下最終的效果,動態選單功能完成。
![](https://img2020.cnblogs.com/blog/65831/202006/65831-20200629171334648-498021339.gif)
# 總結
本篇給大家演示了處理Razor檢視引用問題的一個臨時解決方案和動態選單的實現,Razor檢視引用問題歸根結底還是`AssemblyLoadContext`的問題,這可能就是ASP.NET Core外掛開發最常見的問題了。當然檢視部分也有很多其他的問題,其實我一度感覺如果僅停留在控制器部分,僅實現ASP.NET Core Webapi的外掛化可能相對更容易一些,一旦牽扯到Razor檢視,特別是執行時編譯Razor檢視,就有各種各樣的問題,後續編寫部分元件可能會遇到更多的問題,希望能走的下去,有興趣或者遇到問題的小夥伴可以給我發郵件([email protected])或者在Github(https://github.com/lamondlu/Mystique)中提Issues,感謝