OpenSRP/opensrp-client-anc

View on GitHub
opensrp-anc/src/main/java/org/smartregister/anc/library/activity/MainContactActivity.java

Summary

Maintainability
F
6 days
Test Coverage

File MainContactActivity.java has 664 lines of code (exceeds 250 allowed). Consider refactoring.
Open

package org.smartregister.anc.library.activity;

import android.annotation.SuppressLint;
import android.content.Intent;
import android.text.TextUtils;

    MainContactActivity has 43 methods (exceeds 20 allowed). Consider refactoring.
    Open

    public class MainContactActivity extends BaseContactActivity implements ContactContract.View {
        private TextView patientNameView;
        private final Map<String, Integer> requiredFieldsMap = new HashMap<>();
        private final Map<String, String> eventToFileMap = new HashMap<>();
        private final Yaml yaml = new Yaml();

      Method updateDefaultValues has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
      Open

          private void updateDefaultValues(JSONArray stepArray, int i, JSONObject fieldObject) throws JSONException {
              if (defaultValueFields.contains(fieldObject.getString(JsonFormConstants.KEY))) {
      
                  if (!fieldObject.has(JsonFormConstants.VALUE) ||
                          TextUtils.isEmpty(fieldObject.getString(JsonFormConstants.VALUE))) {

      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

      Method process has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
      Open

          private void process(String[] mainContactForms) {
              //Fetch and load previously saved values
              try {
                  if (contactNo > 1 && !PatientRepository.isFirstVisit(baseEntityId)) {
                      for (String formEventType : new ArrayList<>(Arrays.asList(mainContactForms))) {

      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

      Method processRequiredStepsField has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
      Open

          private void processRequiredStepsField(JSONObject object) throws Exception {
              if (object != null && object.has(ConstantsUtils.JsonFormKeyUtils.ENCOUNTER_TYPE)) {
                  //initialize required fields map
                  String encounterType = object.getString(ConstantsUtils.JsonFormKeyUtils.ENCOUNTER_TYPE);
      
      

      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

      Method initializeMainContactContainers has 74 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private void initializeMainContactContainers() {
      
              try {
      
                  requiredFieldsMap.clear();

        Method preProcessDefaultValues has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            private void preProcessDefaultValues(JSONObject object) {
                try {
                    if (object != null) {
                        Iterator<String> keys = object.keys();
        
        

        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

        Method updateDefaultValues has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            private void updateDefaultValues(JSONArray stepArray, int i, JSONObject fieldObject) throws JSONException {
                if (defaultValueFields.contains(fieldObject.getString(JsonFormConstants.KEY))) {
        
                    if (!fieldObject.has(JsonFormConstants.VALUE) ||
                            TextUtils.isEmpty(fieldObject.getString(JsonFormConstants.VALUE))) {

          Method process has 35 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private void process(String[] mainContactForms) {
                  //Fetch and load previously saved values
                  try {
                      if (contactNo > 1 && !PatientRepository.isFirstVisit(baseEntityId)) {
                          for (String formEventType : new ArrayList<>(Arrays.asList(mainContactForms))) {

            Method updateFormGlobalValuesFromExpansionPanel has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                private void updateFormGlobalValuesFromExpansionPanel(JSONObject fieldObject) throws JSONException {
                    if (fieldObject.has(JsonFormConstants.VALUE) && fieldObject.has(JsonFormConstants.TYPE)
                            && TextUtils.equals(JsonFormConstants.EXPANSION_PANEL, fieldObject.getString(JsonFormConstants.TYPE))) {
            
                        JSONArray accordionValue = fieldObject.getJSONArray(JsonFormConstants.VALUE);

            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

            Method processRequiredStepsField has 29 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                private void processRequiredStepsField(JSONObject object) throws Exception {
                    if (object != null && object.has(ConstantsUtils.JsonFormKeyUtils.ENCOUNTER_TYPE)) {
                        //initialize required fields map
                        String encounterType = object.getString(ConstantsUtils.JsonFormKeyUtils.ENCOUNTER_TYPE);
            
            

              Method preProcessDefaultValues has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private void preProcessDefaultValues(JSONObject object) {
                      try {
                          if (object != null) {
                              Iterator<String> keys = object.keys();
              
              

                Method updateFormGlobalValues has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    private void updateFormGlobalValues(JSONObject fieldObject) throws Exception {
                        if (globalKeys.contains(fieldObject.getString(JsonFormConstants.KEY)) &&
                                fieldObject.has(JsonFormConstants.VALUE)) {
                
                            formGlobalValues.put(fieldObject.getString(JsonFormConstants.KEY),

                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

                Method updateSubFormRequiredCount has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                    private void updateSubFormRequiredCount(JSONArray requiredAccordionFields, HashMap<String, JSONArray> accordionValuesMap,
                                                            JSONObject encounterObject) throws JSONException {
                
                        if (requiredAccordionFields.length() == 0) {
                            return;

                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

                Avoid deeply nested control flow statements.
                Open

                                        if (ConstantsUtils.BooleanUtils.TRUE.equals(optionValue)) {
                                            addDefaults = false;
                                            break;
                                        }

                  Avoid deeply nested control flow statements.
                  Open

                                          if (values.contains(fieldObject.getJSONArray(JsonFormConstants.OPTIONS_FIELD_NAME).getJSONObject(m)
                                                  .getString(JsonFormConstants.KEY))) {
                                              stepArray.getJSONObject(i).getJSONArray(JsonFormConstants.OPTIONS_FIELD_NAME).getJSONObject(m)
                                                      .put(JsonFormConstants.VALUE, true);
                                              fieldObject.put(JsonFormConstants.EDITABLE,

                    Method addGlobalsToAMap has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private void addGlobalsToAMap(List<String> contactGlobals, Map<String, String> map) {
                            for (String contactGlobal : contactGlobals) {
                                if (formGlobalValues.containsKey(contactGlobal)) {
                                    String some = map.get(contactGlobal);
                    
                    

                    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

                    Method getFieldVisibility has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private boolean getFieldVisibility(JSONObject field) {
                            boolean isVisible = true;
                            try {
                                if (field != null && field.has(JsonFormConstants.TYPE) && !JsonFormConstants.HIDDEN.equals(field.getString(JsonFormConstants.TYPE))) {
                                    if (field.has(JsonFormConstants.IS_VISIBLE) && !field.getBoolean(JsonFormConstants.IS_VISIBLE)) {

                    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

                    Method getValueMap has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private void getValueMap(JSONObject object) throws JSONException {
                            initializeGlobalPreviousValues(object);
                            for (int i = 0; i < globalValueFields.size(); i++) {
                                String mapValue = getMapValue(globalValueFields.get(i));
                                if (mapValue != null) {

                    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

                    Method createAccordionValuesMap has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private HashMap<String, JSONArray> createAccordionValuesMap(JSONObject accordionJsonObject, JSONObject encounterObject)
                                throws JSONException {
                            HashMap<String, JSONArray> accordionValuesMap = new HashMap<>();
                            if (accordionJsonObject.has(JsonFormConstants.VALUE)) {
                                String encounterType = encounterObject.getString(ConstantsUtils.JsonFormKeyUtils.ENCOUNTER_TYPE);

                    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

                    Method updateGlobalFieldsForContactAbove1 has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private void updateGlobalFieldsForContactAbove1() {
                            if (contactNo > 1) {
                                for (String item : defaultValueFields) {
                                    if (globalKeys.contains(item)) {
                                        formGlobalValues.put(item, getMapValue(item));

                    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

                    Method initializeGlobalPreviousValues has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private void initializeGlobalPreviousValues(JSONObject object) throws JSONException {
                            if (object.has(ConstantsUtils.GLOBAL_PREVIOUS)) {
                                JSONArray globalPreviousArray = object.getJSONArray(ConstantsUtils.GLOBAL_PREVIOUS);
                                for (int i = 0; i < globalPreviousArray.length(); i++) {
                                    if (object.has(JsonFormConstants.JSON_FORM_KEY.GLOBAL)) {

                    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

                    Method initializeMainContactContainers has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private void initializeMainContactContainers() {
                    
                            try {
                    
                                requiredFieldsMap.clear();

                    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

                    Method checkRequiredForSubForms has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        private void checkRequiredForSubForms(JSONObject fieldObject, JSONObject encounterObject) throws JSONException {
                            if (fieldObject.has(JsonFormConstants.CONTENT_FORM)) {
                                if ((fieldObject.has(JsonFormConstants.IS_VISIBLE) && !fieldObject.getBoolean(JsonFormConstants.IS_VISIBLE))) {
                                    return;
                                }

                    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

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

                            if (fieldObject.has(JsonFormConstants.VALUE) && !TextUtils.isEmpty(fieldObject.getString(JsonFormConstants.VALUE)) &&
                                    fieldObject.getString(ConstantsUtils.KeyUtils.KEY).endsWith(ConstantsUtils.SuffixUtils.OTHER) && formGlobalValues
                                    .get(fieldObject.getString(ConstantsUtils.KeyUtils.KEY).replace(ConstantsUtils.SuffixUtils.OTHER, ConstantsUtils.SuffixUtils.VALUE)) !=
                                    null) {
                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/ANCFormUtils.java on lines 362..364

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

                    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

                            String fieldKeySecondary = fieldKey.contains(ConstantsUtils.SuffixUtils.OTHER) ?
                                    fieldKey.substring(0, fieldKey.indexOf(ConstantsUtils.SuffixUtils.OTHER)) + ConstantsUtils.SuffixUtils.VALUE : "";
                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/ANCFormUtils.java on lines 486..487

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

                    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

                            if (fieldKey.endsWith(ConstantsUtils.SuffixUtils.OTHER) && !fieldKeySecondary.isEmpty() &&
                                    facts.get(fieldKeySecondary) != null && facts.get(fieldKeyOtherValue) != null) {
                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/ANCFormUtils.java on lines 490..491

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

                    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

                                    for (int j = 0; j < secondaryValues.length(); j++) {
                                        JSONObject jsonObject = secondaryValues.getJSONObject(j);
                                        processKeysWithExtensionValues(formGlobalValues, jsonObject);
                                    }
                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/ANCFormUtils.java on lines 393..396
                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/ANCJsonFormUtils.java on lines 504..509

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

                    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

                    There are no issues that match your filters.

                    Category
                    Status