node-xyz/xyz-core

View on GitHub

Showing 71 of 107 total issues

Function constructor has 48 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  constructor (xyz, port) {
    super()
    http.globalAgent.maxSockets = Infinity
    this.port = port || CONFIG.getSelfConf().transport[0].port
    this.xyz = xyz
Severity: Minor
Found in src/Transport/HTTP/http.server.ts - About 1 hr to fix

    Function setSelfConf has 46 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        setSelfConf: function (aConf, cmdLineArgs) {
            Logger_1.logger.info('CONFIG :: Setting default selfConf');
            selfConf = Constants_1.CONSTANTS.defaultConfig.selfConf;
            Logger_1.logger.info('CONFIG :: Reading selfConf from user');
            selfConf = MergeRecursive(selfConf, aConf);
    Severity: Minor
    Found in built/Config/config.global.js - About 1 hr to fix

      Function _ping has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function _ping () {
          let nodes = CONFIG.getSystemConf().nodes
          for (let node of nodes) {
            SR.transport.send({
              route: 'PING',
      Severity: Minor
      Found in src/Bootstrap/ping.basic.ts - About 1 hr to fix

        Function NodeXYZ has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

        var NodeXYZ = (function () {
            /**
             * create a new xyz object
             * @param {Object} configuration configuration should have two main keys:
             *   - selfConf
        Severity: Minor
        Found in built/xyz.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function roundRobinSendStrategy has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        let roundRobinSendStrategy = function (params, next, done, xyz) {
          let servicePath = params[0].servicePath
          // let userPayload = params[0].payload
          let responseCallback = params[1]
          let route = params[0].route
        Severity: Minor
        Found in examples/load-balancer/round.robin.send.js - About 1 hr to fix

          Function _genericTransportInvoke has 43 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export function _genericTransportInvoke (params: IServDiscMwParam, next, end, xyz: XYZ) {
            const targets = params.targets
            const transport = xyz.serviceRepository.transport
            const responseCallback = params.responseCallback
            const logger = xyz.logger
          Severity: Minor
          Found in src/Service/Middleware/service.generic.transport.ts - About 1 hr to fix

            Function match has 39 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                match: function (path, serializedTree) {
                    var matches = [];
                    var pathToken = path.split('/');
                    var pathIndex = 0;
                    var pathTree = serializedTree;
            Severity: Minor
            Found in built/Service/path.js - About 1 hr to fix

              Function send has 37 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  Transport.prototype.send = function (opt, responseCallback) {
                      opt.route = opt.route || 'CALL';
                      if (!this.routes[opt.route]) {
                          Logger_1.logger.error("attempting to send message in route " + opt.route + ". DOES NOT EXIST");
                          responseCallback('outgoing message route not found', null);
              Severity: Minor
              Found in built/Transport/Transport.js - About 1 hr to fix

                Function send has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  send (opt: ITransportSendMessageParams, responseCallback?) {
                    opt.route = opt.route || 'CALL'
                
                    if (!this.routes[opt.route]) {
                      logger.error(`attempting to send message in route ${opt.route}. DOES NOT EXIST`)
                Severity: Minor
                Found in src/Transport/Transport.ts - About 1 hr to fix

                  Function setSelfConf has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    setSelfConf: (aConf, cmdLineArgs) => {
                      logger.info('CONFIG :: Setting default selfConf')
                      selfConf = CONSTANTS.defaultConfig.selfConf
                      logger.info('CONFIG :: Reading selfConf from user')
                      selfConf = MergeRecursive(selfConf, aConf)
                  Severity: Minor
                  Found in src/Config/config.global.ts - About 1 hr to fix

                    Function xyzGeneric has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function xyzGeneric(prefix) {
                        if (prefix === void 0) { prefix = '--xyz-'; }
                        var args = process.argv;
                        var _args = {};
                        for (var idx = 2; idx < args.length; idx++) {
                    Severity: Minor
                    Found in built/Util/commandline.parser.js - About 1 hr to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function HTTPServer has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                    Open

                    var HTTPServer = (function (_super) {
                        __extends(HTTPServer, _super);
                        /**
                         * Creates a new HTTP server
                         * @param xyz {Object} a reference to the curretn xyz object. will be filled automatically.
                    Severity: Minor
                    Found in built/Transport/HTTP/http.server.js - About 1 hr to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function match has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      match (path, serializedTree) {
                        let matches = []
                        let pathToken = path.split('/')
                        let pathIndex = 0
                        let pathTree = serializedTree
                    Severity: Minor
                    Found in src/Service/path.ts - About 1 hr to fix

                      Function _loop_1 has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              var _loop_1 = function (node) {
                                  SR.transport.send({
                                      route: 'PING',
                                      node: node
                                  }, function (err, body, res) {
                      Severity: Minor
                      Found in built/Bootstrap/ping.basic.js - About 1 hr to fix

                        Function _basicPingBootstrap has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export default function _basicPingBootstrap (xyz: INodeXYZ, event, port) {
                          let Util = xyz.Util
                          let wrapper = Util.wrapper
                          let logger = xyz.logger
                          let CONFIG = xyz.CONFIG
                        Severity: Minor
                        Found in src/Bootstrap/ping.basic.ts - About 1 hr to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function roundRobinSendStrategy has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                        Open

                        let roundRobinSendStrategy = function (params, next, done, xyz) {
                          let servicePath = params[0].servicePath
                          // let userPayload = params[0].payload
                          let responseCallback = params[1]
                          let route = params[0].route
                        Severity: Minor
                        Found in examples/load-balancer/round.robin.send.js - About 1 hr to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function xyzGeneric has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export function xyzGeneric (prefix = '--xyz-') {
                          let args = process.argv
                          let _args = {}
                          for (let idx = 2; idx < args.length; idx++) {
                            let arg = args[idx]
                        Severity: Minor
                        Found in src/Util/commandline.parser.ts - About 1 hr to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function _basicPingBootstrap has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                        Open

                        function _basicPingBootstrap(xyz, event, port) {
                            var Util = xyz.Util;
                            var wrapper = Util.wrapper;
                            var logger = xyz.logger;
                            var CONFIG = xyz.CONFIG;
                        Severity: Minor
                        Found in built/Bootstrap/ping.basic.js - About 1 hr to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function UDPServer has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            function UDPServer(xyz, port) {
                                var _this = _super.call(this) || this;
                                _this.port = port;
                                _this.xyz = xyz;
                                /**
                        Severity: Minor
                        Found in built/Transport/UDP/udp.server.js - About 1 hr to fix

                          Function _httpExport has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          var _httpExport = function (xMessageParam, next, end, xyz) {
                              var requestConfig = xMessageParam.requestConfig;
                              var responseCallback = xMessageParam.responseCallback;
                              var postData = requestConfig.json;
                              delete requestConfig.json;
                          Severity: Minor
                          Found in built/Transport/Middlewares/http.export.middleware.js - About 1 hr to fix
                            Severity
                            Category
                            Status
                            Source
                            Language