silentbalanceyh/vertx-zero

View on GitHub

Showing 9,050 of 9,050 total issues

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

          @Path("/file/upload/{identifier}")
          @POST
          @Address(Addr.File.UPLOAD)
          public JsonObject upload(@PathParam(KName.IDENTIFIER) final String identifier,
                                   @QueryParam(KName.CATEGORY) final String category,

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

            @Override
            public void from(IPOutTicket from) {
                setKey(from.getKey());
                setSerial(from.getSerial());
                setType(from.getType());

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

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

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

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

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

                      @Override
                      public void from(IPOutTicket from) {
                          setKey(from.getKey());
                          setSerial(from.getSerial());
                          setType(from.getType());

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

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

                        Method fetchByKey has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            @Address(Addr.Bill.FETCH_BILL)
                            public Future<JsonObject> fetchByKey(final String key) {
                                // Fetch Bill details
                                /*
                                 * {
                        Severity: Minor
                        Found in vertx-pin/zero-fm/src/main/java/cn/vertxup/fm/api/FetchActor.java - About 1 hr to fix

                          Method diff has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              static ConcurrentMap<ChangeFlag, JsonArray> diff(final JsonArray input, final List<IDirectory> directories) {
                                  /*
                                   *  IDirectory
                                   */
                                  final ConcurrentMap<String, IDirectory> directoryMap = Ut.elementMap(directories, IDirectory::getStorePath);

                            Method upPayment has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                @Me
                                @Address(Addr.Settle.UP_PAYMENT)
                                public Future<JsonObject> upPayment(final boolean isRunUp,      // S Bill
                                                                    final JsonObject data) {
                                    final Refer settleRef = new Refer();
                            Severity: Minor
                            Found in vertx-pin/zero-fm/src/main/java/cn/vertxup/fm/api/SettleActor.java - About 1 hr to fix

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

                                  @Override
                                  public void fromJson(final JsonObject json) {
                                      // 第二次
                                      this.keys.clear();
                                      this.fields.clear();

                                Method equals has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    @java.lang.Override
                                    public boolean equals(final java.lang.Object obj) {
                                        if (obj == this) {
                                            return true;
                                        }

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

                                          @Override
                                          public Builder mergeFrom(
                                              final com.google.protobuf.CodedInputStream input,
                                              final com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                              throws java.io.IOException {
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcEnvelop.java on lines 621..638
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcStatus.java on lines 500..517
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/StreamServerResponse.java on lines 464..481

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

                                  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 4 locations. Consider refactoring.
                                  Open

                                          @Override
                                          public Builder mergeFrom(
                                              final com.google.protobuf.CodedInputStream input,
                                              final com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                              throws java.io.IOException {
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcEnvelop.java on lines 621..638
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcRequest.java on lines 829..846
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/StreamServerResponse.java on lines 464..481

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

                                  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.uca.elasticsearch;
                                  
                                  import io.vertx.core.Future;
                                  import io.vertx.core.json.JsonArray;
                                  import io.vertx.core.json.JsonObject;
                                  vertx-pin/zero-vie/src/main/jib/io/mature/extension/uca/elasticsearch/EsAddIndexer.java on lines 1..30

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

                                  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 4 locations. Consider refactoring.
                                  Open

                                          @Override
                                          public Builder mergeFrom(
                                              final com.google.protobuf.CodedInputStream input,
                                              final com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                              throws java.io.IOException {
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcRequest.java on lines 829..846
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/IpcStatus.java on lines 500..517
                                  vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/mod/ipc/eon/StreamServerResponse.java on lines 464..481

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

                                  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

                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language