Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 18x 18x 18x 18x 18x 18x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 1x 1x 1x 9x 9x 9x 9x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 1x 1x 9x 9x 1x 1x 9x 9x 9x 9x 9x 1x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 1x 1x 1x 9x 9x 1x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 1x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 2x 2x 9x 9x 9x 9x 1x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 2x 2x 2x 2x 2x 2x 2x 9x 9x 9x 9x 1x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 1x 1x | CLASS lcl_status_consistency_checks DEFINITION FINAL. PUBLIC SECTION. METHODS constructor IMPORTING iv_root_package TYPE devclass io_dot TYPE REF TO zcl_abapgit_dot_abapgit. METHODS run_checks IMPORTING it_results TYPE zif_abapgit_definitions=>ty_results_tt RETURNING VALUE(ri_log) TYPE REF TO zif_abapgit_log RAISING zcx_abapgit_exception . PRIVATE SECTION. DATA mv_root_package TYPE devclass. DATA mo_dot TYPE REF TO zcl_abapgit_dot_abapgit. DATA mi_log TYPE REF TO zif_abapgit_log. METHODS check_package_move IMPORTING !it_results TYPE zif_abapgit_definitions=>ty_results_tt RAISING zcx_abapgit_exception . METHODS check_files_folder IMPORTING !it_results TYPE zif_abapgit_definitions=>ty_results_tt RAISING zcx_abapgit_exception . METHODS check_package_sub_package IMPORTING !it_results TYPE zif_abapgit_definitions=>ty_results_tt !iv_top TYPE devclass RAISING zcx_abapgit_exception . METHODS check_package_folder IMPORTING !it_results TYPE zif_abapgit_definitions=>ty_results_tt !io_dot TYPE REF TO zcl_abapgit_dot_abapgit !iv_top TYPE devclass RAISING zcx_abapgit_exception . METHODS check_multiple_files IMPORTING !it_results TYPE zif_abapgit_definitions=>ty_results_tt RAISING zcx_abapgit_exception . METHODS check_namespace IMPORTING !it_results TYPE zif_abapgit_definitions=>ty_results_tt RAISING zcx_abapgit_exception . ENDCLASS. CLASS lcl_status_consistency_checks IMPLEMENTATION. METHOD constructor. mv_root_package = iv_root_package. mo_dot = io_dot. ENDMETHOD. METHOD run_checks. CREATE OBJECT mi_log TYPE zcl_abapgit_log. " Find all objects which were assigned to a different package check_package_move( it_results ). " Check files for one object is in the same folder check_files_folder( it_results ). " Check that sub packages are included in the package hierarchy check_package_sub_package( it_results = it_results iv_top = mv_root_package ). " Check that objects are created in package corresponding to folder check_package_folder( it_results = it_results io_dot = mo_dot iv_top = mv_root_package ). " Check for multiple files with same filename check_multiple_files( it_results ). " Check if namespaces exist already check_namespace( it_results ). ri_log = mi_log. ENDMETHOD. METHOD check_files_folder. DATA: ls_item TYPE zif_abapgit_definitions=>ty_item, lt_res_sort LIKE it_results, lt_item_idx LIKE it_results. FIELD-SYMBOLS: <ls_result> LIKE LINE OF it_results, <ls_result_idx> LIKE LINE OF it_results. " TODO optimize ? " sort by obj, path " loop, and compare to first object record " Collect object index lt_res_sort = it_results. SORT lt_res_sort BY obj_type ASCENDING obj_name ASCENDING. LOOP AT it_results ASSIGNING <ls_result> WHERE NOT obj_type IS INITIAL AND packmove = abap_false. IF NOT ( <ls_result>-obj_type = ls_item-obj_type AND <ls_result>-obj_name = ls_item-obj_name ). APPEND INITIAL LINE TO lt_item_idx ASSIGNING <ls_result_idx>. <ls_result_idx>-obj_type = <ls_result>-obj_type. <ls_result_idx>-obj_name = <ls_result>-obj_name. <ls_result_idx>-path = <ls_result>-path. MOVE-CORRESPONDING <ls_result> TO ls_item. ENDIF. ENDLOOP. LOOP AT it_results ASSIGNING <ls_result> WHERE NOT obj_type IS INITIAL AND obj_type <> 'DEVC' AND packmove = abap_false. READ TABLE lt_item_idx ASSIGNING <ls_result_idx> WITH KEY obj_type = <ls_result>-obj_type obj_name = <ls_result>-obj_name BINARY SEARCH. " Sorted above IF sy-subrc <> 0 OR <ls_result>-path <> <ls_result_idx>-path. " All paths are same mi_log->add_warning( |Files for object { <ls_result>-obj_type } { <ls_result>-obj_name }| && | are not placed in the same folder| ). ENDIF. ENDLOOP. ENDMETHOD. METHOD check_multiple_files. DATA: lt_res_sort LIKE it_results, ls_file TYPE zif_abapgit_git_definitions=>ty_file_signature. FIELD-SYMBOLS <ls_result> LIKE LINE OF it_results. lt_res_sort = it_results. SORT lt_res_sort BY filename ASCENDING. LOOP AT lt_res_sort ASSIGNING <ls_result> WHERE obj_type <> 'DEVC' AND packmove = abap_false. IF <ls_result>-filename IS NOT INITIAL AND <ls_result>-filename = ls_file-filename. mi_log->add_warning( |Multiple files with same filename, { <ls_result>-filename }| ). ENDIF. IF <ls_result>-filename IS INITIAL. mi_log->add_warning( |Filename is empty for object { <ls_result>-obj_type } { <ls_result>-obj_name }| ). ENDIF. MOVE-CORRESPONDING <ls_result> TO ls_file. ENDLOOP. ENDMETHOD. METHOD check_namespace. DATA: li_namespace TYPE REF TO zif_abapgit_sap_namespace, lv_namespace TYPE namespace, lt_namespace TYPE TABLE OF namespace. FIELD-SYMBOLS <ls_result> LIKE LINE OF it_results. " Collect all namespaces based on name of xml- and json-files LOOP AT it_results ASSIGNING <ls_result>. FIND REGEX '^#([a-zA-Z0-9]+)#.*\..*\.xml$' IN <ls_result>-filename SUBMATCHES lv_namespace. IF sy-subrc = 0. lv_namespace = '/' && to_upper( lv_namespace ) && '/'. COLLECT lv_namespace INTO lt_namespace. ENDIF. FIND REGEX '^\(([a-zA-Z0-9]+)\).*\..*\.json$' IN <ls_result>-filename SUBMATCHES lv_namespace. IF sy-subrc = 0. lv_namespace = '/' && to_upper( lv_namespace ) && '/'. COLLECT lv_namespace INTO lt_namespace. ENDIF. ENDLOOP. li_namespace = zcl_abapgit_factory=>get_sap_namespace( ). LOOP AT lt_namespace INTO lv_namespace. IF li_namespace->exists( lv_namespace ) = abap_false. mi_log->add_warning( |Namespace { lv_namespace } does not exist.| && | Pull it first (or create it in transaction SE03)| ). ELSEIF li_namespace->is_editable( lv_namespace ) = abap_false. mi_log->add_warning( |Namespace { lv_namespace } is not modifiable. Check it in transaction SE03| ). ENDIF. ENDLOOP. ENDMETHOD. METHOD check_package_folder. DATA: lv_path TYPE string, lv_object TYPE string, lo_folder_logic TYPE REF TO zcl_abapgit_folder_logic. FIELD-SYMBOLS <ls_result> LIKE LINE OF it_results. lo_folder_logic = zcl_abapgit_folder_logic=>get_instance( ). LOOP AT it_results ASSIGNING <ls_result> WHERE NOT package IS INITIAL AND NOT path IS INITIAL AND packmove = abap_false. lv_path = lo_folder_logic->package_to_path( iv_top = iv_top io_dot = io_dot iv_package = <ls_result>-package ). lv_object = |{ <ls_result>-obj_type } { <ls_result>-obj_name }|. IF lv_path IS INITIAL. IF <ls_result>-package(1) = '$'. mi_log->add_warning( |{ lv_object } exists but package { <ls_result>-package } is missing| && | (might have been lost during an upgrade, SAP Note 2478895)| ). ELSE. mi_log->add_error( |{ lv_object } already exists outside of { iv_top } package hierarchy| ). ENDIF. ELSEIF lv_path <> <ls_result>-path. mi_log->add_warning( |Package and path do not match for object { lv_object }| ). ENDIF. ENDLOOP. ENDMETHOD. METHOD check_package_move. DATA lt_move_idx LIKE it_results. FIELD-SYMBOLS: <ls_result> LIKE LINE OF it_results, <ls_result_move> LIKE LINE OF it_results. " TODO: optimize ? " delete where packmove = false, delete adj duplicates and fire messages ? LOOP AT it_results ASSIGNING <ls_result> WHERE lstate = zif_abapgit_definitions=>c_state-added AND packmove = abap_true. READ TABLE lt_move_idx TRANSPORTING NO FIELDS WITH KEY obj_type = <ls_result>-obj_type obj_name = <ls_result>-obj_name BINARY SEARCH. " Sorted since it_result is sorted IF sy-subrc <> 0. mi_log->add_warning( |Changed package assignment for object| && | { <ls_result>-obj_type } { <ls_result>-obj_name }| ). APPEND INITIAL LINE TO lt_move_idx ASSIGNING <ls_result_move>. <ls_result_move>-obj_type = <ls_result>-obj_type. <ls_result_move>-obj_name = <ls_result>-obj_name. <ls_result_move>-path = <ls_result>-path. ENDIF. ENDLOOP. ENDMETHOD. METHOD check_package_sub_package. DATA lv_msg TYPE string. FIELD-SYMBOLS <ls_result> LIKE LINE OF it_results. LOOP AT it_results ASSIGNING <ls_result> USING KEY sec_key WHERE package IS INITIAL AND obj_type = 'DEVC'. IF zcl_abapgit_factory=>get_sap_package( |{ <ls_result>-obj_name }| )->exists( ) = abap_true. " If package already exist but is not included in the package hierarchy of " the package assigned to the repository, then a manual change of the package " is required i.e. setting a parent package to the repo package (or one of its " subpackages). We don't do this automatically since it's not clear where in the " hierarchy the new package should be located or whether the sub package shall be " removed from the repo. lv_msg = |Package { <ls_result>-obj_name } already exists but is not a sub-package of { iv_top }. | && |Check your package and folder logic, and either assign { <ls_result>-obj_name } | && |to the package hierarchy of { iv_top } or remove package { <ls_result>-obj_name } | && |from the repository.|. mi_log->add_warning( lv_msg ). ENDIF. ENDLOOP. ENDMETHOD. ENDCLASS. |