zoukankan      html  css  js  c++  java
  • Architecture : Describable Command and Identifiable Data

    Architecture : Describable Command and Identifiable Data

    Description

    Terms

    • Command
      A command is a function in a system.
      Every command has input data and output data, and the system is able to know the schema of every command input data.

    • Describable Commands
      That means:

      • System know what commands the system has.
      • Commands are describable, the system know the format of input data of a command, and data format returned by the command.
    • Identifiable Data
      Every field in an input data or an output data is identifiable.
      For example, in a system, there are departments and employee.
      Data employee has a field department id which references an id of a department data.
      Even the department id and employee id are an integers, i.e their data type are same, but the system understand:

      • department id is different with employee id.
      • department id in the employee data is same thing of the department id in the department.

    How is the system running

    • Main page
      We can image the main page like a search page, there is only an text input field provided.

      • Users can find all commands by input "*".
      • Users can input some key words to narrow down candidate commands,
      • At end, the user finds a specific command.
    • Command pages
      When a command is selected, the system will enter a new page denoted as a command page.

      • First system will get the schema information of input data of the command, and display some fields to get the user to input command arguments.
      • The user input these argument and select execute
      • The system will invoke the command, and display the return data
    • Command perception for return data
      When the system get an return data, the system can find corresponding commands.
      For example:
      The system get a list of employee by invoking GetEmployee command, then system knows DeleteEmployee command should present because the DeleteEmployee command's input is an employee id which is provided in the employee list.

    • Command perception for input data
      If the GetEmployee command accept an department name as input to query, the system understands the GetDepartment command can help to input the field of department name as the GetDepartment returns department name.

    Implementation considerations

    • Use infer
      For example: var employeeId is an employee id. the name of parameter, field and property will help the system to infer the meaning.

    • Use inheritance for different fields with same data type, especially id
      For example, we define a class id, and classes DepartmentId and EmployeeId will inherits the class Id.
      Id
      |-- DepartmentId
      |-- EmployeeId

    • Use annotation for mark field's identity

  • 相关阅读:
    安装oracle11g 并且开启APEX 安装
    爬虫基础
    深度优先广度优先
    部署静态页面到nginx
    Nginx 实现端口转发
    五步教你实现使用Nginx+uWSGI+Django方法部署Django程序
    Please select Android SDK解决办法
    android与JS交互,互相调用方法,跳转到网页
    Android:你要的WebView与 JS 交互方式 都在这里了
    Android与js交互拍照上传资料
  • 原文地址:https://www.cnblogs.com/steven-yang/p/7633418.html
Copyright © 2011-2022 走看看