• edge.js架起node.js和.net互操作桥梁


         今天要介绍的是edge.js这个github上刚兴起的开源项目,它可以让node.js和.net之间在in-process下互操作。.net版本在4.5及以上,因为.net4.5带来的Task,asyn,await关键字和node.js的Event模型正好匹配。如果你感兴趣的话,可以参见githubhttps://github.com/tjanczuk/edgeEdge.js overview.

    下面这幅图展示了edge.js在node.js和.net之间互操作的桥梁。Fun<object,Task<object>>表示输入为object类型,输出为Task<object>,后者对应node.js中的回调函数,前者则为.net方法输入参数。更多详情请参见github readme。

       edge.js interop model

       下面我们写个菲波基数作为demo尝鲜:完整项目寄宿在github:edge-demo

     1 var edge = require('edge');
     2 
     3 var fib = edge.func({
     4     source: function() {/*
     5 
     6         using System;
     7         using System.Linq;
     8         using System.Threading.Tasks;
     9 
    10         public class Startup
    11         {       
    12              public async Task<object> Invoke(object input)
    13             {
    14                 int v = (int)input;
    15                 var fib = Fix<int, int>(f => x => x <= 1 ? 1 : f(x - 1) + f(x - 2));
    16                 return fib(v);
    17             }
    18 
    19             static Func<T, TResult> Fix<T, TResult>(Func<Func<T, TResult>, Func<T, TResult>> f)
    20             {
    21                 return x => f(Fix(f))(x);
    22             }
    23 
    24             static Func<T1, T2, TResult> Fix<T1, T2, TResult>(Func<Func<T1, T2, TResult>, Func<T1, T2, TResult>> f)
    25             {
    26                 return (x, y) => f(Fix(f))(x, y);
    27             }
    28         }
    29 
    30     */},
    31     references: ['System.Core.dll']
    32 });
    33 
    34 fib(5, function (error, result) {
    35     if (error) console.log(error);
    36     console.log(result);
    37 });
    38 
    39 var fibFromFile = edge.func(__dirname  + "/fib.cs");
    40 fibFromFile(5, function (error, result) {
    41     if (error) console.log(error);
    42     console.log(result);
    43 });
    44 
    45 var fibFromDll = edge.func({
    46     assemblyFile: 'edge.demo.dll',
    47     typeName: 'edge.demo.Startup',
    48     methodName: 'Invoke'
    49 });
    50 fibFromDll(5, function (error, result) {
    51     if (error) console.log(error);
    52     console.log(result);
    53 });

    效果:

    image

    这里分为3类调用,直接源码嵌入node.js和文件外置,以后编译后的dll,多的不用说,其实很简单,如果你和一样同样喜欢js和.net的话。

    在当下node.js刚兴起,成型的框架还不够多,或者有时我们必须以c或者c++来完成node.js的本地扩展的时候,edge.js给我们提供了另一个可选的途径就是 强大的.net大家族。

  • 相关阅读:
    C语言实现两栈空间共享
    MyEclipse里项目部署到tomcat上之后,tomcat webpps文件夹里为什么找不到这个项目
    CSS选择器
    用友2016成都校园招聘笔试题
    windows、ubuntu下eclipse搭建java、Python环境问题总结
    ubuntu上用eclipse搭建java、python开发环境
    windows 下用eclipse搭建java、python开发环境
    简单事件机制的研究
    软件测试(软件安装:php+mysql+apache+mantis过程遇到的问题以及解决方法)
    4、总结一下,以软件开发生命周期来说明测试的使用情况。
  • 原文地址:https://www.cnblogs.com/whitewolf/p/2991200.html
Copyright © 2020-2023  润新知