zoukankan      html  css  js  c++  java
  • SAP UI5框架Component.js里extend函数的实现原理

    For every Fiori application we have Component.js, and there is a function extend() call. See one example below.
    What is the purpose of this function call and what functionality would it achieve?

    In order to understand the logic of extend, it is necessary to understand prototype concept in JavaScript. Let’s have a look at some more simple example.
    See this simple html source code:

    <html>
    <script>
    function Animal(name) {
    this.sName = name;
    console.log("constructor in Animal");
    }
    Animal.prototype.speak = function() {
        console.log("My name is " + this.sName);
    };
    function Cat(name) {
        Animal.call(this, name);
        console.log("constructor in cat");
    }
    Cat.prototype = new Animal();
    var animal = new Animal("Jerry");
    animal.speak();
    var cat = new Cat('Tom');
    cat.speak();
    console.log("cat is animal?" + ( cat instanceof Animal ));
    console.log("cat is Cat?" + ( cat instanceof Cat ));
    console.log(cat.constructor);
    </script>
    </html>
    

    I use prototype inheritance to achieve the class inheritance logic which is commonly used in other language like Java.
    cat instanceof Animal and cat instanceof Cat both return true as expected.

    There are two flaws of this inheritance solution:
    (1) every variable created by function constructor has one attribute proto, which points to the prototype object of its constructor. This could be verified by the fact that statement “cat.proto === Cat.prototype ” returns true.

    In this example, you can find there are actually duplicate attribute sName, one in cat itself and the other one in its prototype.

    (2) in above code line 17, I try to build the inheritance relationship from Animal to Cat. Here a new instance of Animal is created. Suppose in productive code if we have a complex implementation of Animal, this initialization could consume unnecessary resource and memory to finish.
    So another approach is used:

    <html>
    <script>
    Function.prototype.extend = function(parent) {
    function dummy() {};
    dummy.prototype = parent.prototype;
    this.prototype = new dummy();
    this.prototype.constructor = this;
    }
    function Animal(name) {
    this.sName = name;
    console.log("constructor in Animal");
    }
    Animal.prototype.speak = function() {
        console.log("My name is " + this.sName);
    };
    function Cat(name) {
    Animal.call(this, name);
    };
    Cat.extend(Animal);
    var cat = new Cat("Jerry");
    cat.speak();
    console.log("cat is Cat?" + (cat instanceof Cat));
    console.log("cat is Animal?" + (cat instanceof Animal));
    console.log(cat.constructor);
    </script>
    </html>
    

    Both flaws in first approach are avoided:

    (1) No duplicate attribute “sName” in prototype chain now.
    (2) The initialization of a new instance of Animal when trying to build prototype chain is avoided. Instead here I use a very light weighted, dummy function as a bridge to connect Animal and Cat. The trick is done among lines 5 ~ 8 below. Once done, every variable created by constructor Cat has its proto points to Animal.

    Now we have already enough knowledge to understand the extend() call done in Componnet.js in Fiori application.
    (1) extend call will call Metadata.createClass.

    (2) In Metadata.createClass, the essential idea of line 333 is just exactly the same as the code in my second prototype inheritance approach:
    function dummy() {};
    dummy.prototype = parent.prototype;
    this.prototype = new dummy();

    a. within jQuery.sap.newObject, a dummy object will be created:

    b. here the argument oPrototype is the prototype of sap.ca.scfld.md.ComponentBase:

    Once prototype chain is built, the function call jQuery.sap.setObject is called to expose cus.crm.opportunity.Component as a global JavaScript object:

    Finally these below are what we have got:

    (1) we can directly access cus.crm.opportunity.Component in JavaScript code or console thanks to jQuery.sap.setObject call.

    (2) The prototype chain from sap.ca.scfld.md.ComponentBase to cus.crm.opportunity.Component is built, which could be confirmed by the picture below:

    Now when I enter the context of my application, I can get the instance of this component via this(controller reference).getOwnerComponent().
    From the belowing two test statement in console, I can ensure that the prototype chain is built:

    (1) ownComponent.proto.proto.constructor === sap.ca.scfld.md.ComponentBase returns true
    (2) ownComponent.hasOwnProperty(“getMetadata”) returns false and ownComponent.proto.proto.hasOwnProperty(“getMetadata”) returns true.


    from returned metadata, we can find all the metadata information defined in the application and passed from extend call:

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    114. Flatten Binary Tree to Linked List
    odoo docker环境下将日志存储在数据库中ir_logging
    odoo 日志切割存储,日志存储到数据库中
    odoo 通过nginx反向代理后获取真实IP地址
    html样式超出长度部分使用省略号显示
    vim 查找字串所在的位置
    系统重启 后 Docker服务及容器自动启动设置
    字串格式化换format使用
    markdown 测试代码高亮
    协程与线程的简单区分
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13540574.html
Copyright © 2011-2022 走看看