Browse Source

commit: PoC success

码农 6 năm trước cách đây
mục cha
commit
9f906d8fdd

+ 38 - 0
DuckInterface/App.cs

@@ -0,0 +1,38 @@
+using Bridge.Html5;
+
+namespace DuckInterface
+{
+    public class App
+    {
+        public static void Main()
+        {
+            var svc1 = InterfaceCreator.Create<ISvc1>("sst");
+
+            svc1.Op1("");
+            svc1.Op2();
+            svc1.Op3();
+
+            Window.Set("Svc1", svc1);
+        }
+    }
+
+    // d.ts DocGen test
+
+    /// <summary>
+    /// XmlDoc Summary of ISvc1
+    /// </summary>
+    public interface ISvc1
+    {
+        /// <summary>
+        /// XmlDoc Summary of Op1
+        /// </summary>
+        /// <param name="a">XmlDoc Param of a</param>
+        /// <param name="x">XmlDoc Param of x</param>
+        /// <returns>XmlDoc Return</returns>
+        string Op1(string a, int x = 0);
+
+        string Op2();
+
+        string Op3();
+    }
+}

+ 66 - 0
DuckInterface/DuckInterface.csproj

@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <NoStdLib>true</NoStdLib>
+    <NuGetPackageImportStamp>
+    </NuGetPackageImportStamp>
+  </PropertyGroup>
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>DuckInterface</RootNamespace>
+    <AssemblyName>DuckInterface</AssemblyName>
+    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Compile Include="App.cs" />
+    <Compile Include="InterfaceCreator.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="bridge.json" />
+    <None Include="packages.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <Reference Include="Bridge, Version=17.7.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Core.17.7.0\lib\net40\Bridge.dll</HintPath>
+    </Reference>
+    <Reference Include="Bridge.Html5, Version=17.7.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Html5.17.7.0\lib\net40\Bridge.Html5.dll</HintPath>
+    </Reference>
+    <Reference Include="Newtonsoft.Json, Version=1.14.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Newtonsoft.Json.1.14.0\lib\net40\Newtonsoft.Json.dll</HintPath>
+    </Reference>
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <Import Project="C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets" Condition="Exists('C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets')" />
+  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
+    <PropertyGroup>
+      <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
+    </PropertyGroup>
+    <Error Condition="!Exists('C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets')" Text="$([System.String]::Format('$(ErrorText)', 'C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets'))" />
+  </Target>
+</Project>

+ 39 - 0
DuckInterface/InterfaceCreator.cs

@@ -0,0 +1,39 @@
+using Bridge;
+using System;
+using System.Reflection;
+
+namespace DuckInterface
+{
+    public static class InterfaceCreator
+    {
+        public static TInterface Create<TInterface>(string serviceName)
+        {
+            var interfaceType = typeof(TInterface);
+            if (interfaceType.IsNested) throw new NotSupportedException("Not support nested type define");
+
+            var interfaceMethodInfos = interfaceType.GetMethods(BindingFlags.Public | BindingFlags.Instance);
+
+            object si = new { };
+
+            foreach (var methodInfo in interfaceMethodInfos)
+            {
+                var bridgeInterfaceMethodName = $"{interfaceType.FullName}.{methodInfo.Name}".Replace('.', '$');
+
+                //TODO: handle params
+                var implement = new Action(() =>
+                {
+                    Console.WriteLine($"GEN:{methodInfo.Name} @ {serviceName}");
+                });
+
+                //interface alias
+                si[bridgeInterfaceMethodName] = implement;
+                si[methodInfo.Name] = implement;
+            }
+
+            return DuckCast<TInterface>(si);
+        }
+
+        [Template("{instance}")]
+        private static extern T DuckCast<T>(object instance);
+    }
+}

+ 36 - 0
DuckInterface/Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("DuckInterface")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Microsoft")]
+[assembly: AssemblyProduct("DuckInterface")]
+[assembly: AssemblyCopyright("Copyright © Microsoft 2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible 
+// to COM components.  If you need to access a type in this assembly from 
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("c7b846a7-3a2d-42ff-a91e-c15477f0ddbb")]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers 
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 76 - 0
DuckInterface/bridge.json

@@ -0,0 +1,76 @@
+// See all bridge.json configuration options at:
+// https://github.com/bridgedotnet/Bridge/wiki/global-configuration
+
+{
+  // The folder to output JavaScript (.js) files.
+  "output": "$(OutDir)/bridge/",
+
+  // Set to "Minified" to generate .min.js files.
+  // Set to "Both" to generate both minified and non-minified .js files.
+  // "Formatted" generates non-minified .js files.
+  "outputFormatting": "Formatted",
+
+  // Enable the Bridge Console.
+  // Default is false.
+  "console": {
+    "enabled": true
+  },
+
+  // Enable browser debugging of C# files.
+  // Default is false.
+  "sourceMap": {
+    "enabled": true
+  },
+
+  // Set to true to disable Reflection metadata generation.
+  // Default is false.
+  "reflection": {
+    "disabled": false
+  },
+
+  // Generate TypeScript Definition (.d.ts) files.
+  // Default is false.
+  "generateTypeScript": true,
+
+  // Delete everything from the output folder.
+  // Default is false
+  //        ** WARNING **
+  // If true, all files within the "output"
+  // folder location will be deleted on Build.
+  //    ** USE WITH CAUTION **
+  "cleanOutputFolderBeforeBuild": false,
+
+  // Set to true to enable bridge.report.log generation.
+  // Default is false.
+  "report": {
+    "enabled": false
+  },
+
+  // Rules to manage generated JavaScript syntax.
+  // Default is "Managed"
+  "rules": {
+    "anonymousType": "Plain",
+    "arrayIndex": "Managed",
+    "autoProperty": "Plain",
+    "boxing": "Managed",
+    "externalCast": "Plain",
+    "inlineComment": "Plain",
+    "integer": "Managed",
+    "lambda": "Plain"
+  },
+
+  // Automatically generate an index.html file
+  // and add the file to the output directory.
+  // Default is false.
+  "html": {
+    "disabled": false
+  },
+
+  // Add compilation logging to your Project.
+  // Outputs a tab-delimited bridge.log file.
+  // Set to "Trace" for full logging.
+  // Default is "None".
+  "logging": {
+    "level": "None"
+  }
+}

+ 8 - 0
DuckInterface/packages.config

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="Bridge" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Core" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Html5" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Min" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Newtonsoft.Json" version="1.14.0" targetFramework="net45" />
+</packages>

+ 6 - 0
NuGet.config

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?> 
+<configuration> 
+  <config> 
+    <add key="repositorypath" value="C:\NuGetLocalRepo" /> 
+  </config> 
+</configuration>

+ 8 - 1
README.md

@@ -1,3 +1,10 @@
 # bridge-impromptu-interface
 
-A meta hack, like impromptu-interface for Bridge.NET
+A meta hack, like impromptu-interface for Bridge.NET
+
+# Features
+
+- [x] DuckType (by Bridge.NET Template)
+- [x] Interface implement on runtime
+- [ ] Handleing params and returns
+- [ ] AOP

+ 32 - 0
bridge-impromptu-interface.sln

@@ -0,0 +1,32 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.28307.539
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DuckInterface", "DuckInterface\DuckInterface.csproj", "{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@", "@", "{DC15E691-AB29-4E36-8229-E3BECF14F4C7}"
+	ProjectSection(SolutionItems) = preProject
+		.gitignore = .gitignore
+		NuGet.config = NuGet.config
+		README.md = README.md
+	EndProjectSection
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {DAAE9E01-EACD-413C-B22B-694AD4C6CD34}
+	EndGlobalSection
+EndGlobal