Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Enabled NativeAOT. #307

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<EmbeddedResource Include="..\AIDevGallery\Samples\scenarios.json" Visible="False" />
<EmbeddedResource Include="..\AIDevGallery\Samples\promptTemplates.json" Visible="False" />
<EmbeddedResource Include="..\AIDevGallery\NativeMethods.txt" Visible="False" />
<EmbeddedResource Include="..\AIDevGallery\NativeMethods.json" Visible="False" />
<EmbeddedResource Include="..\Directory.Packages.props" Visible="False" />
</ItemGroup>

Expand Down
26 changes: 23 additions & 3 deletions AIDevGallery.SourceGenerator/SamplesSourceGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ private void ExecuteSharedCodeEnumGeneration(SourceProductionContext context, Im
}

filePaths.Add("NativeMethods.txt");
filePaths.Add("NativeMethods.json");

foreach (var filePath in filePaths)
{
Expand All @@ -82,6 +83,11 @@ private void ExecuteSharedCodeEnumGeneration(SourceProductionContext context, Im
}
else
{
if (fileName.StartsWith("NativeMethods"))
{
fileName = GetNameWithExtension(filePath);
}

sourceBuilder.AppendLine($" {fileName},");
}
}
Expand Down Expand Up @@ -113,7 +119,13 @@ private void ExecuteSharedCodeEnumGeneration(SourceProductionContext context, Im
}
else
{
sourceBuilder.AppendLine($" SharedCodeEnum.{fileName} => \"{Path.GetFileName(filePath)}\",");
var name = Path.GetFileName(filePath);
if (name.StartsWith("NativeMethods"))
{
fileName = GetNameWithExtension(filePath);
}

sourceBuilder.AppendLine($" SharedCodeEnum.{fileName} => \"{name}\",");
}
}

Expand Down Expand Up @@ -153,10 +165,11 @@ private void ExecuteSharedCodeEnumGeneration(SourceProductionContext context, Im
}

string fileContent;
if (fileName == "NativeMethods")
if (filePath.StartsWith("NativeMethods"))
{
fileName = GetNameWithExtension(filePath);
var assembly = Assembly.GetExecutingAssembly();
using (Stream stream = assembly.GetManifestResourceStream("AIDevGallery.SourceGenerator.NativeMethods.txt"))
using (Stream stream = assembly.GetManifestResourceStream($"AIDevGallery.SourceGenerator.{filePath}"))
{
using (StreamReader reader = new(stream))
{
Expand Down Expand Up @@ -186,6 +199,13 @@ private void ExecuteSharedCodeEnumGeneration(SourceProductionContext context, Im
sourceBuilder.AppendLine("}");

context.AddSource("SharedCodeEnum.g.cs", SourceText.From(sourceBuilder.ToString(), Encoding.UTF8));

static string GetNameWithExtension(string filePath)
{
return Path.GetFileName(filePath)
.Replace(".txt", "_Txt")
.Replace(".json", "_Json");
}
}

private static readonly Regex UsingAIDevGalleryTelemetryNamespace = new(@"using AIDevGallery.Telemetry\S*;\r?\n", RegexOptions.Multiline | RegexOptions.Compiled);
Expand Down
1 change: 1 addition & 0 deletions AIDevGallery.Utils/AIDevGallery.Utils.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<PropertyGroup Condition="$(TargetFramework) == 'net9.0'">
<IsAotCompatible>true</IsAotCompatible>
<PublishAot>true</PublishAot>
</PropertyGroup>

<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'">
Expand Down
3 changes: 1 addition & 2 deletions AIDevGallery/AIDevGallery.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<NoWarn>CS8305;WMC1501</NoWarn>
<!-- https://github.com/microsoft/CsWin32/issues/1273 -->
<NoWarn>$(NoWarn);IL2050</NoWarn>
<!-- Microsoft.Xaml.Interactivity.EventTriggerBehavior is not trimmable -->
<NoWarn>$(NoWarn);IL2026</NoWarn>
<IsAotCompatible>true</IsAotCompatible>
<PublishAot>true</PublishAot>
<TrimmerRootDescriptor>SamplesRoots.xml</TrimmerRootDescriptor>
<!-- The *first* DefineConstants is removed during Official Release Builds (.pipelines/Unstub.ps1)-->
<DefineConstants>TELEMETRYEVENTSOURCE_PUBLIC</DefineConstants>
Expand Down
6 changes: 4 additions & 2 deletions AIDevGallery/Helpers/SamplesHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public static List<SharedCodeEnum> GetAllSharedCode(this Sample sample, Dictiona

if (sharedCode.Contains(SharedCodeEnum.DeviceUtils))
{
AddUnique(SharedCodeEnum.NativeMethods);
AddUnique(SharedCodeEnum.NativeMethods_Txt);
AddUnique(SharedCodeEnum.NativeMethods_Json);
}

return sharedCode;
Expand Down Expand Up @@ -78,7 +79,8 @@ public static List<string> GetAllNugetPackageReferences(this Sample sample, Dict

var sharedCode = sample.GetAllSharedCode(models);

if (sharedCode.Contains(SharedCodeEnum.NativeMethods))
if (sharedCode.Contains(SharedCodeEnum.NativeMethods_Txt) ||
sharedCode.Contains(SharedCodeEnum.NativeMethods_Json))
{
AddUnique("Microsoft.Windows.CsWin32");
}
Expand Down
1 change: 1 addition & 0 deletions AIDevGallery/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
<AutoSuggestBox
x:Name="SearchBox"
MinWidth="364"
ItemsSource="{x:Bind searchResults}"
HorizontalAlignment="Stretch"
VerticalAlignment="Center"
ItemTemplateSelector="{StaticResource SearchResultTemplateSelector}"
Expand Down
9 changes: 8 additions & 1 deletion AIDevGallery/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using Microsoft.UI.Xaml.Controls;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.Linq;
using Windows.System;
Expand All @@ -20,6 +21,8 @@ namespace AIDevGallery;

internal sealed partial class MainWindow : WindowEx
{
private ObservableCollection<SearchResult> searchResults = [];

public MainWindow(object? obj = null)
{
this.InitializeComponent();
Expand Down Expand Up @@ -213,7 +216,11 @@ private void SearchBox_TextChanged(AutoSuggestBox sender, AutoSuggestBoxTextChan
if (args.Reason == AutoSuggestionBoxTextChangeReason.UserInput && !string.IsNullOrWhiteSpace(SearchBox.Text))
{
var filteredSearchResults = App.SearchIndex.Where(sr => sr.Label.Contains(sender.Text, StringComparison.OrdinalIgnoreCase)).ToList();
SearchBox.ItemsSource = filteredSearchResults.OrderByDescending(i => i.Label.StartsWith(sender.Text, StringComparison.CurrentCultureIgnoreCase)).ThenBy(i => i.Label);
searchResults.Clear();
foreach (var result in filteredSearchResults.OrderByDescending(i => i.Label.StartsWith(sender.Text, StringComparison.CurrentCultureIgnoreCase)).ThenBy(i => i.Label))
{
searchResults.Add(result);
}
}
}

Expand Down
5 changes: 5 additions & 0 deletions AIDevGallery/NativeMethods.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "https://aka.ms/CsWin32.schema.json",
"allowMarshaling": false,
"public": false
}
1 change: 1 addition & 0 deletions AIDevGallery/Pages/APIs/APIPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
HorizontalAlignment="Stretch"
AutomationProperties.Name="Samples"
IsItemInvokedEnabled="True"
ItemsSource="{x:Bind samples}"
ItemInvoked="SampleList_ItemInvoked"
SelectionMode="None">
<ItemsView.Layout>
Expand Down
16 changes: 12 additions & 4 deletions AIDevGallery/Pages/APIs/APIPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Navigation;
using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
Expand All @@ -25,6 +26,7 @@ internal sealed partial class APIPage : Page
private ModelDetails? modelDetails;
private string? readmeContents;
private string? codeSnippet;
private ObservableCollection<Sample> samples = [];

public APIPage()
{
Expand Down Expand Up @@ -118,14 +120,20 @@ private void GetSamples()
// if we don't have a modelType, we are in a user added language model, use same samples as Phi
var modelType = modelFamilyType ?? ModelType.Phi3Mini;

var samples = SampleDetails.Samples.Where(s => s.Model1Types.Contains(modelType) || s.Model2Types?.Contains(modelType) == true).ToList();
samples.Clear();
foreach (var sample in SampleDetails.Samples.Where(s => s.Model1Types.Contains(modelType) || s.Model2Types?.Contains(modelType) == true))
{
samples.Add(sample);
}

if (ModelTypeHelpers.ParentMapping.Values.Any(parent => parent.Contains(modelType)))
{
var parent = ModelTypeHelpers.ParentMapping.FirstOrDefault(parent => parent.Value.Contains(modelType)).Key;
samples.AddRange(SampleDetails.Samples.Where(s => s.Model1Types.Contains(parent) || s.Model2Types?.Contains(parent) == true));
foreach (var sample in SampleDetails.Samples.Where(s => s.Model1Types.Contains(parent) || s.Model2Types?.Contains(parent) == true))
{
samples.Add(sample);
}
}

SampleList.ItemsSource = samples;
}

private void LoadCodeSnippet(string? snippet)
Expand Down
1 change: 1 addition & 0 deletions AIDevGallery/Pages/Models/ModelPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
AutomationProperties.Name="Samples"
IsEnabled="False"
IsItemInvokedEnabled="True"
ItemsSource="{x:Bind samples}"
ItemInvoked="SampleList_ItemInvoked"
SelectionMode="None">
<ItemsView.Layout>
Expand Down
16 changes: 12 additions & 4 deletions AIDevGallery/Pages/Models/ModelPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using Microsoft.UI.Xaml.Navigation;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
Expand All @@ -25,6 +26,7 @@ internal sealed partial class ModelPage : Page
private ModelType? modelFamilyType;
private List<ModelDetails> models = new();
private string? readme;
private ObservableCollection<Sample> samples = [];

public ModelPage()
{
Expand Down Expand Up @@ -250,14 +252,20 @@ private void ModelSelectionControl_SelectedModelChanged(object sender, ModelDeta
// if we don't have a modelType, we are in a user added language model, use same samples as Phi
var modelType = modelFamilyType ?? ModelType.Phi3Mini;

var samples = SampleDetails.Samples.Where(s => s.Model1Types.Contains(modelType) || s.Model2Types?.Contains(modelType) == true).ToList();
samples.Clear();
foreach (var sample in SampleDetails.Samples.Where(s => s.Model1Types.Contains(modelType) || s.Model2Types?.Contains(modelType) == true))
{
samples.Add(sample);
}

if (ModelTypeHelpers.ParentMapping.Values.Any(parent => parent.Contains(modelType)))
{
var parent = ModelTypeHelpers.ParentMapping.FirstOrDefault(parent => parent.Value.Contains(modelType)).Key;
samples.AddRange(SampleDetails.Samples.Where(s => s.Model1Types.Contains(parent) || s.Model2Types?.Contains(parent) == true));
foreach (var sample in SampleDetails.Samples.Where(s => s.Model1Types.Contains(parent) || s.Model2Types?.Contains(parent) == true))
{
samples.Add(sample);
}
}

SampleList.ItemsSource = samples;
}

private void CopyButton_Click(object sender, RoutedEventArgs e)
Expand Down
3 changes: 2 additions & 1 deletion AIDevGallery/Pages/Scenarios/ScenarioSelectionPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ namespace AIDevGallery.Pages;

internal sealed partial class ScenarioSelectionPage : Page
{
internal record FilterRecord(string? Tag, string Text);
[WinRT.GeneratedBindableCustomProperty]
internal partial record FilterRecord(string? Tag, string Text);

private readonly List<FilterRecord> filters =
[
Expand Down
3 changes: 2 additions & 1 deletion AIDevGallery/ProjectGenerator/Generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ private async Task AddFilesFromSampleAsync(
{
string directory = outputPath;

if (sharedCodeEnum != SharedCodeEnum.NativeMethods)
if (sharedCodeEnum != SharedCodeEnum.NativeMethods_Txt &&
sharedCodeEnum != SharedCodeEnum.NativeMethods_Json)
{
if (!Directory.Exists(Path.Join(outputPath, "Utils")))
{
Expand Down
11 changes: 9 additions & 2 deletions AIDevGallery/Samples/SharedCode/Controls/SemanticComboBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Threading.Tasks;

namespace AIDevGallery.Samples.SharedCode;

[WinRT.GeneratedBindableCustomProperty]
internal sealed partial class SemanticComboBox : Control
{
private IVectorStore? _vectorStore;
Expand All @@ -31,6 +33,8 @@ public IEmbeddingGenerator<string, Embedding<float>>? EmbeddingGenerator
typeof(SemanticComboBox),
new PropertyMetadata(null, OnEmbeddingGeneratorChanged));

public ObservableCollection<string> SearchResults { get; } = [];

public List<string> Items
{
get { return (List<string>)GetValue(ItemsProperty); }
Expand Down Expand Up @@ -98,8 +102,11 @@ private async void SuggestBox_TextChanged(AutoSuggestBox sender, AutoSuggestBoxT
// only listen to changes caused by user entering text.
if (args.Reason == AutoSuggestionBoxTextChangeReason.UserInput)
{
var searchResults = await Search(sender.Text);
sender.ItemsSource = searchResults.Select(item => item.Text);
SearchResults.Clear();
foreach (var item in await Search(sender.Text))
{
SearchResults.Add(item.Text);
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
x:Name="SemanticSuggestBox"
HorizontalAlignment="Stretch"
VerticalAlignment="Top"
ItemsSource="{Binding SearchResults, RelativeSource={RelativeSource TemplatedParent}}"
PlaceholderText="Start typing to semantically search categories..." />
</Grid>
</ControlTemplate>
Expand Down
4 changes: 3 additions & 1 deletion AIDevGallery/Samples/SharedCode/Controls/SmartPasteForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

namespace AIDevGallery.Samples.SharedCode;

[WinRT.GeneratedBindableCustomProperty]
internal sealed partial class SmartPasteForm : Control
{
private const int _defaultMaxLength = 1024;
Expand Down Expand Up @@ -207,7 +208,8 @@ private void PasteValuesToForm(Dictionary<string, string> values)
new PropertyMetadata(default(List<string>), new PropertyChangedCallback(OnFieldLabelsChanged)));
}

internal class FormField : ObservableObject
[WinRT.GeneratedBindableCustomProperty]
internal partial class FormField : ObservableObject
{
private string? label;
private string? value;
Expand Down
Loading
Loading