silentbalanceyh/vertx-zero

View on GitHub

Showing 9,050 of 9,050 total issues

Method toJson has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        @Override
        public default io.vertx.core.json.JsonObject toJson() {
                io.vertx.core.json.JsonObject json = new io.vertx.core.json.JsonObject();
                json.put("KEY",getKey());
                json.put("SERIAL",getSerial());

    Method fromJson has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            @Override
            public default IPCommodity fromJson(io.vertx.core.json.JsonObject json) {
                    setOrThrow(this::setKey,json::getString,"KEY","java.lang.String");
                    setOrThrow(this::setName,json::getString,"NAME","java.lang.String");
                    setOrThrow(this::setCode,json::getString,"CODE","java.lang.String");

      Method toJson has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              @Override
              public default io.vertx.core.json.JsonObject toJson() {
                      io.vertx.core.json.JsonObject json = new io.vertx.core.json.JsonObject();
                      json.put("KEY",getKey());
                      json.put("NAME",getName());

        Method hashCode has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            @Override
            public int hashCode() {
                final int prime = 31;
                int result = 1;
                result = prime * result + ((this.key == null) ? 0 : this.key.hashCode());

          Method toString has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              @Override
              public String toString() {
                  StringBuilder sb = new StringBuilder("MAttribute (");
          
                  sb.append(key);

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                @Override
                public Future<JsonObject> updateAsync(final JsonObject params, final MetaInstance metadata) {
                    final JsonObject rData = params.getJsonObject(KName.RECORD, new JsonObject());
            
                    final ActionOn action = ActionOn.action(metadata.recordMode());
            vertx-pin/zero-wf/src/main/modulat/io/vertx/mod/workflow/uca/modeling/RegisterA.java on lines 29..39

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 3 locations. Consider refactoring.
            Open

                private Future<ClusterSerializable> regionH(final SPacket packet, final SView view) {
                    final PackType.HType hType = Ut.toEnum(packet::getHType, PackType.HType.class, PackType.HType.NONE);
                    if (PackType.HType.NONE == hType) {
                        return Ux.future(new JsonObject());
                    }
            vertx-pin/zero-rbac/src/main/modulat/io/vertx/mod/rbac/acl/rapier/SyntaxRegion.java on lines 182..192
            vertx-pin/zero-rbac/src/main/modulat/io/vertx/mod/rbac/acl/rapier/SyntaxRegion.java on lines 218..228

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 3 locations. Consider refactoring.
            Open

                private Future<ClusterSerializable> regionV(final SPacket packet, final SView view) {
                    final PackType.VType vType = Ut.toEnum(packet::getVType, PackType.VType.class, PackType.VType.NONE);
                    if (PackType.VType.NONE == vType) {
                        return Ux.future(new JsonArray());
                    }
            vertx-pin/zero-rbac/src/main/modulat/io/vertx/mod/rbac/acl/rapier/SyntaxRegion.java on lines 206..216
            vertx-pin/zero-rbac/src/main/modulat/io/vertx/mod/rbac/acl/rapier/SyntaxRegion.java on lines 218..228

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            package io.mature.extension.migration.backup;
            
            import cn.vertxup.ambient.domain.tables.daos.XActivityChangeDao;
            import cn.vertxup.ambient.domain.tables.daos.XActivityDao;
            import cn.vertxup.ambient.domain.tables.daos.XLogDao;
            vertx-pin/zero-vie/src/main/migrate/io/mature/extension/migration/restore/RestoreHistory.java on lines 1..33

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 3 locations. Consider refactoring.
            Open

                private Future<ClusterSerializable> regionQ(final SPacket packet, final SView view) {
                    final PackType.QType qType = Ut.toEnum(packet::getQType, PackType.QType.class, PackType.QType.NONE);
                    if (PackType.QType.NONE == qType) {
                        return Ux.future(new JsonObject());
                    }
            vertx-pin/zero-rbac/src/main/modulat/io/vertx/mod/rbac/acl/rapier/SyntaxRegion.java on lines 182..192
            vertx-pin/zero-rbac/src/main/modulat/io/vertx/mod/rbac/acl/rapier/SyntaxRegion.java on lines 206..216

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            package io.mature.extension.migration.restore;
            
            import cn.vertxup.ambient.domain.tables.daos.XActivityChangeDao;
            import cn.vertxup.ambient.domain.tables.daos.XActivityDao;
            import cn.vertxup.ambient.domain.tables.daos.XLogDao;
            vertx-pin/zero-vie/src/main/migrate/io/mature/extension/migration/backup/BackupHistory.java on lines 1..33

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                @Override
                public Future<JsonObject> updateAsync(final JsonObject params, final MetaInstance metadata) {
                    final JsonArray rData = params.getJsonArray(KName.RECORD, new JsonArray());
            
                    final ActionOn action = ActionOn.action(metadata.recordMode());
            vertx-pin/zero-wf/src/main/modulat/io/vertx/mod/workflow/uca/modeling/RegisterJ.java on lines 29..39

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 89.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

            /*
             * This file is generated by jOOQ.
             */
            package cn.vertxup.atom.domain;
            
            
            vertx-pin/zero-tpl/src/main/java/cn/vertxup/tpl/domain/Tables.java on lines 1..60

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 87.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

            /*
             * This file is generated by jOOQ.
             */
            package cn.vertxup.tpl.domain;
            
            
            vertx-pin/zero-atom/src/main/java/cn/vertxup/atom/domain/Tables.java on lines 1..60

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 87.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Method working has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                void working(final Mission mission, final Actuator actuator) {
                    if (EmJob.Status.READY == mission.getStatus()) {
                        /*
                         * READY -> RUNNING
                         */

              Method readAsync has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  @SuppressWarnings("all")
                  <T> Future<T> readAsync(final String key) {
                      final Request request = Request.cmd(Command.GET);
                      request.arg(key);
                      return this.redis.requestAsync(request, response -> {

                Method compileComplex has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    void compileComplex(final JsonArray data, final HMetaAtom atom) {
                        this.types.clear();
                
                        // index = 2
                        final JsonArray fields = data.getJsonArray(VValue.TWO);

                  Method requestData has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      Request requestData(final String key, final Object input, final ChangeFlag flag) {
                          final String dataString;
                          if (input instanceof String) {
                              dataString = input.toString();
                          } else if (input instanceof JsonObject) {

                    Method getClient has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        RestHighLevelClient getClient(final JsonObject options) {
                            Fn.outWeb(Ut.isNil(options), _404ConfigurationMissingExceptionn.class, this.getClass());
                            final CredentialsProvider credentialsProvider = new BasicCredentialsProvider();
                            credentialsProvider.setCredentials(AuthScope.ANY,
                                new UsernamePasswordCredentials(

                      Method handle has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          @Override
                          public void handle(final RoutingContext event) {
                              final WebException error = new _403ForbiddenException(this.getClass());
                              if (Objects.isNull(event.user())) {
                                  /*
                        Severity
                        Category
                        Status
                        Source
                        Language