silentbalanceyh/vertx-zero

View on GitHub

Showing 9,050 of 9,050 total issues

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

                    case 34: {
                        io.vertx.mod.ipc.eon.IpcEnvelop.Builder subBuilder = null;
                        if (this.envelop_ != null) {
                            subBuilder = this.envelop_.toBuilder();
                        }
vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcRequest.java on lines 128..140
vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/StreamServerResponse.java on lines 62..74

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 100.

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 getValue has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    static Object getValue(final Cell cell, final Class<?> type, final FormulaEvaluator evaluator) {
        /*
         * BLANK / ERROR Processed first to processed
         */
        final CellType cellType = cell.getCellType();

    Method from has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        @Override
        public void from(IEContract from) {
            setKey(from.getKey());
            setName(from.getName());
            setCode(from.getCode());

      Method from has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          @Override
          public void from(IEContract from) {
              setKey(from.getKey());
              setName(from.getName());
              setCode(from.getCode());

        Method saveVisitant has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            private Future<List<SVisitant>> saveVisitant(final SView viewInput, final JsonArray visitData) {
                // 同一个SView中的 ADD / SAVE
                final ConcurrentMap<String, JsonObject> seekMap = Ut.elementMap(visitData, KName.Rbac.SEEK_KEY);
                final UxJooq jq = Ux.Jooq.on(SVisitantDao.class);
                return jq.<SVisitant>fetchAsync(KName.VIEW_ID, viewInput.getKey()).compose(visitors -> {

          Method umUser has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private static Future<JsonObject> umUser(final JsonObject input, final JsonArray users) {
                  final Set<String> keySet = new HashSet<>();
                  Ut.itJArray(users, String.class, (field, index) -> {
                      final Object value = input.getValue(field);
                      if (value instanceof JsonArray) {
          Severity: Minor
          Found in vertx-pin/zero-ke/src/main/java/io/vertx/mod/ke/refine/KeUser.java - About 1 hr to fix

            Method procAsync has 37 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                @Override
                public Future<JsonObject> procAsync(final JsonObject config) {
                    this.banner("002.3. 执行 DDL 报表");
                    /*
                     * 执行 DDL 语句(每次需要单独配置)

              Method from has 37 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  @Override
                  public void from(IPInItem from) {
                      setKey(from.getKey());
                      setSerial(from.getSerial());
                      setStatus(from.getStatus());

                Method from has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    @Override
                    public void from(IPInItem from) {
                        setKey(from.getKey());
                        setSerial(from.getSerial());
                        setStatus(from.getStatus());

                  Method toJson has 37 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 updateLeaf has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        @SuppressWarnings("all")
                        static Future<IDirectory> updateLeaf(final JsonArray directoryA, final JsonObject params) {
                            // Query all directory here;
                            final List<IDirectory> directories = Ux.fromJson(directoryA, IDirectory.class);
                            final List<String> storePath = Ut.toList(params.getJsonArray(KName.STORE_PATH));

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

                          private interface Storage {
                              /**
                               * Date Time patterns
                               */
                              ConcurrentMap<Integer, String> PATTERNS_MAP = new ConcurrentHashMap<Integer, String>() {
                      vertx-gaia/vertx-co/src/main/java/io/vertx/up/util/ZERO.java on lines 67..85

                      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 98.

                      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

                      interface Storage {
                          /**
                           * Date Time patterns
                           */
                          ConcurrentMap<Integer, String> PATTERNS_MAP = new ConcurrentHashMap<Integer, String>() {
                      vertx-gaia/vertx-ams/src/main/java/io/horizon/util/TPeriod.java on lines 590..608

                      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 98.

                      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> fetchForm(final ProcessInstance instance, final Task task,
                                                              final String sigma) {
                              final JsonObject response = new JsonObject();
                              final Io<JsonObject> ioForm = Io.ioForm();
                      vertx-pin/zero-wf/src/main/java/cn/vertxup/workflow/service/FlowService.java on lines 95..114

                      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 97.

                      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> fetchForm(final HistoricProcessInstance instance,
                                                              final String sigma) {
                              final JsonObject response = new JsonObject();
                      
                      
                      vertx-pin/zero-wf/src/main/java/cn/vertxup/workflow/service/FlowService.java on lines 78..93

                      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 97.

                      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 start has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          @Override
                          public void start() {
                              // 1. Get event bus
                              final EventBus bus = this.vertx.eventBus();
                              // 2. Consume address

                        Method transform has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public static Condition transform(final JsonObject filters,
                                                              Operator operator,
                                                              final Function<String, Field> fnAnalyze,
                                                              final Function<String, String> fnTable) {
                                final Condition condition;

                          Method aiExecute has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              @SuppressWarnings("unchecked")
                              private static Object aiExecute(final Class<?> sourceType, final Class<?> targetType, final Object input,
                                                              final Function<Object, Object> addonFn) {
                          
                                  if (Instant.class == targetType) {
                          Severity: Minor
                          Found in vertx-gaia/vertx-co/src/main/java/io/vertx/up/util/Value.java - About 1 hr to fix

                            Method hashCode has 36 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 36 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                  @Override
                                  public String toString() {
                                      StringBuilder sb = new StringBuilder("ECustomer (");
                              
                                      sb.append(key);
                                Severity
                                Category
                                Status
                                Source
                                Language