mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
766 lines
24 KiB
ABAP
766 lines
24 KiB
ABAP
CLASS zcl_abapgit_oo_class DEFINITION
|
|
PUBLIC
|
|
INHERITING FROM zcl_abapgit_oo_base
|
|
CREATE PUBLIC .
|
|
|
|
PUBLIC SECTION.
|
|
|
|
METHODS zif_abapgit_oo_object_fnc~create
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~create_sotr
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~delete
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~generate_locals
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~get_class_properties
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~get_includes
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~insert_text_pool
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~read_sotr
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~read_text_pool
|
|
REDEFINITION .
|
|
METHODS zif_abapgit_oo_object_fnc~deserialize_source
|
|
REDEFINITION .
|
|
PROTECTED SECTION.
|
|
PRIVATE SECTION.
|
|
|
|
CLASS-METHODS update_source_index
|
|
IMPORTING
|
|
!iv_clsname TYPE csequence
|
|
!io_scanner TYPE REF TO cl_oo_source_scanner_class .
|
|
CLASS-METHODS update_report
|
|
IMPORTING
|
|
!iv_program TYPE programm
|
|
!it_source TYPE string_table
|
|
RETURNING
|
|
VALUE(rv_updated) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
CLASS-METHODS generate_classpool
|
|
IMPORTING
|
|
!iv_name TYPE seoclsname
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
CLASS-METHODS update_meta
|
|
IMPORTING
|
|
!iv_name TYPE seoclsname
|
|
!iv_exposure TYPE seoexpose
|
|
!it_source TYPE rswsourcet
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
CLASS-METHODS determine_method_include
|
|
IMPORTING
|
|
!iv_name TYPE seoclsname
|
|
!iv_method TYPE seocpdname
|
|
RETURNING
|
|
VALUE(rv_program) TYPE programm
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
CLASS-METHODS init_scanner
|
|
IMPORTING
|
|
!it_source TYPE zif_abapgit_definitions=>ty_string_tt
|
|
!iv_name TYPE seoclsname
|
|
RETURNING
|
|
VALUE(ro_scanner) TYPE REF TO cl_oo_source_scanner_class
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
CLASS-METHODS update_full_class_include
|
|
IMPORTING
|
|
!iv_classname TYPE seoclsname
|
|
!it_source TYPE string_table
|
|
!it_methods TYPE cl_oo_source_scanner_class=>type_method_implementations .
|
|
CLASS-METHODS create_report
|
|
IMPORTING
|
|
!iv_program TYPE programm
|
|
!it_source TYPE string_table
|
|
!iv_extension TYPE sychar02
|
|
!iv_program_type TYPE sychar01
|
|
!iv_version TYPE r3state .
|
|
CLASS-METHODS update_cs_number_of_methods
|
|
IMPORTING
|
|
!iv_classname TYPE seoclsname
|
|
!iv_number_of_impl_methods TYPE i .
|
|
ENDCLASS.
|
|
|
|
|
|
|
|
CLASS ZCL_ABAPGIT_OO_CLASS IMPLEMENTATION.
|
|
|
|
|
|
METHOD create_report.
|
|
INSERT REPORT iv_program FROM it_source EXTENSION TYPE iv_extension STATE iv_version PROGRAM TYPE iv_program_type.
|
|
ASSERT sy-subrc = 0.
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD determine_method_include.
|
|
|
|
DATA: ls_mtdkey TYPE seocpdkey.
|
|
|
|
|
|
ls_mtdkey-clsname = iv_name.
|
|
ls_mtdkey-cpdname = iv_method.
|
|
|
|
cl_oo_classname_service=>get_method_include(
|
|
EXPORTING
|
|
mtdkey = ls_mtdkey
|
|
RECEIVING
|
|
result = rv_program
|
|
EXCEPTIONS
|
|
method_not_existing = 1 ).
|
|
IF sy-subrc = 0.
|
|
RETURN.
|
|
ENDIF.
|
|
|
|
CALL FUNCTION 'SEO_METHOD_GENERATE_INCLUDE'
|
|
EXPORTING
|
|
suppress_mtdkey_check = seox_true
|
|
mtdkey = ls_mtdkey
|
|
EXCEPTIONS
|
|
not_existing = 1
|
|
model_only = 2
|
|
include_existing = 3
|
|
method_imp_not_generated = 4
|
|
method_imp_not_initialised = 5
|
|
_internal_class_not_existing = 6
|
|
_internal_method_overflow = 7
|
|
cancelled = 8
|
|
method_is_abstract_implemented = 9
|
|
method_is_final_implemented = 10
|
|
internal_error_insert_report = 11
|
|
OTHERS = 12.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from SEO_METHOD_GENERATE_INCLUDE' ).
|
|
ENDIF.
|
|
|
|
rv_program = cl_oo_classname_service=>get_method_include( ls_mtdkey ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD generate_classpool.
|
|
|
|
DATA: ls_clskey TYPE seoclskey.
|
|
|
|
ls_clskey-clsname = iv_name.
|
|
|
|
CALL FUNCTION 'SEO_CLASS_GENERATE_CLASSPOOL'
|
|
EXPORTING
|
|
clskey = ls_clskey
|
|
suppress_corr = seox_true
|
|
EXCEPTIONS
|
|
not_existing = 1
|
|
model_only = 2
|
|
class_pool_not_generated = 3
|
|
class_stment_not_generated = 4
|
|
locals_not_generated = 5
|
|
macros_not_generated = 6
|
|
public_sec_not_generated = 7
|
|
protected_sec_not_generated = 8
|
|
private_sec_not_generated = 9
|
|
typeref_not_generated = 10
|
|
class_pool_not_initialised = 11
|
|
class_stment_not_initialised = 12
|
|
locals_not_initialised = 13
|
|
macros_not_initialised = 14
|
|
public_sec_not_initialised = 15
|
|
protected_sec_not_initialised = 16
|
|
private_sec_not_initialised = 17
|
|
typeref_not_initialised = 18
|
|
_internal_class_overflow = 19
|
|
OTHERS = 20.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from SEO_CLASS_GENERATE_CLASSPOOL' ).
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD init_scanner.
|
|
|
|
TRY.
|
|
ro_scanner = cl_oo_source_scanner_class=>create_class_scanner(
|
|
clif_name = iv_name
|
|
source = it_source ).
|
|
ro_scanner->scan( ).
|
|
CATCH cx_clif_scan_error.
|
|
zcx_abapgit_exception=>raise( 'error initializing CLAS scanner' ).
|
|
ENDTRY.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD update_cs_number_of_methods.
|
|
|
|
" Indirect access to keep downward compatibility
|
|
DATA lr_cache_entry TYPE REF TO data.
|
|
|
|
FIELD-SYMBOLS: <lg_cache_entry> TYPE any,
|
|
<lg_field> TYPE any.
|
|
|
|
|
|
TRY.
|
|
CREATE DATA lr_cache_entry TYPE ('SEO_CS_CACHE').
|
|
CATCH cx_sy_create_data_error.
|
|
* does not exist in some older systems
|
|
RETURN.
|
|
ENDTRY.
|
|
|
|
ASSIGN lr_cache_entry->* TO <lg_cache_entry>.
|
|
ASSERT sy-subrc = 0.
|
|
|
|
ASSIGN COMPONENT 'CLSNAME' OF STRUCTURE <lg_cache_entry>
|
|
TO <lg_field>.
|
|
ASSERT sy-subrc = 0.
|
|
<lg_field> = iv_classname.
|
|
|
|
ASSIGN COMPONENT 'NO_OF_METHOD_IMPLS' OF STRUCTURE <lg_cache_entry>
|
|
TO <lg_field>.
|
|
ASSERT sy-subrc = 0.
|
|
<lg_field> = iv_number_of_impl_methods.
|
|
|
|
MODIFY ('SEO_CS_CACHE') FROM <lg_cache_entry>.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD update_full_class_include.
|
|
|
|
CONSTANTS: lc_class_source_extension TYPE sychar02 VALUE 'CS',
|
|
lc_include_program_type TYPE sychar01 VALUE 'I',
|
|
lc_active_version TYPE r3state VALUE 'A'.
|
|
|
|
|
|
create_report( iv_program = cl_oo_classname_service=>get_cs_name( iv_classname )
|
|
it_source = it_source
|
|
iv_extension = lc_class_source_extension
|
|
iv_program_type = lc_include_program_type
|
|
iv_version = lc_active_version ).
|
|
|
|
" Assuming that all methods that were scanned are implemented
|
|
update_cs_number_of_methods( iv_classname = iv_classname
|
|
iv_number_of_impl_methods = lines( it_methods ) ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD update_meta.
|
|
|
|
DATA: lo_update TYPE REF TO cl_oo_class_section_source,
|
|
ls_clskey TYPE seoclskey,
|
|
lv_scan_error TYPE seox_boolean.
|
|
|
|
|
|
ls_clskey-clsname = iv_name.
|
|
|
|
TRY.
|
|
CREATE OBJECT lo_update TYPE ('CL_OO_CLASS_SECTION_SOURCE')
|
|
EXPORTING
|
|
clskey = ls_clskey
|
|
exposure = iv_exposure
|
|
state = 'A'
|
|
source = it_source
|
|
suppress_constrctr_generation = seox_true
|
|
EXCEPTIONS
|
|
class_not_existing = 1
|
|
read_source_error = 2
|
|
OTHERS = 3.
|
|
CATCH cx_sy_dyn_call_param_not_found.
|
|
* downport to 702, see https://github.com/larshp/abapGit/issues/933
|
|
* this will READ REPORT instead of using it_source, which should be okay
|
|
CREATE OBJECT lo_update TYPE cl_oo_class_section_source
|
|
EXPORTING
|
|
clskey = ls_clskey
|
|
exposure = iv_exposure
|
|
state = 'A'
|
|
EXCEPTIONS
|
|
class_not_existing = 1
|
|
read_source_error = 2
|
|
OTHERS = 3.
|
|
ENDTRY.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error instantiating CL_OO_CLASS_SECTION_SOURCE' ).
|
|
ENDIF.
|
|
|
|
lo_update->set_dark_mode( seox_true ).
|
|
TRY.
|
|
CALL METHOD lo_update->('SET_AMDP_SUPPORT')
|
|
EXPORTING
|
|
enabled = abap_true.
|
|
CATCH cx_sy_dyn_call_illegal_method.
|
|
* AMDP not supported in this system, ignore error
|
|
ENDTRY.
|
|
lo_update->scan_section_source(
|
|
RECEIVING
|
|
scan_error = lv_scan_error
|
|
EXCEPTIONS
|
|
scan_abap_source_error = 1
|
|
OTHERS = 2 ).
|
|
IF sy-subrc <> 0 OR lv_scan_error = abap_true.
|
|
zcx_abapgit_exception=>raise( 'CLAS, error while scanning source' ).
|
|
ENDIF.
|
|
|
|
* this will update the SEO* database tables
|
|
lo_update->revert_scan_result( ).
|
|
|
|
IF iv_exposure = seoc_exposure_public.
|
|
generate_classpool( iv_name ).
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD update_report.
|
|
|
|
DATA: lt_old TYPE string_table.
|
|
|
|
READ REPORT iv_program INTO lt_old.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( |Fatal error. Include { iv_program } should have been created previously!| ).
|
|
ENDIF.
|
|
|
|
IF lt_old <> it_source.
|
|
INSERT REPORT iv_program FROM it_source.
|
|
ASSERT sy-subrc = 0.
|
|
rv_updated = abap_true.
|
|
ELSE.
|
|
rv_updated = abap_false.
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD update_source_index.
|
|
|
|
CONSTANTS:
|
|
lc_version_active TYPE r3state VALUE 'A', "#EC NOTEXT
|
|
lc_version_inactive TYPE r3state VALUE 'I'. "#EC NOTEXT
|
|
|
|
" dynamic invocation, IF_OO_SOURCE_POS_INDEX_HELPER doesn't exist in 702.
|
|
DATA lo_index_helper TYPE REF TO object.
|
|
|
|
TRY.
|
|
CREATE OBJECT lo_index_helper TYPE ('CL_OO_SOURCE_POS_INDEX_HELPER').
|
|
|
|
CALL METHOD lo_index_helper->('IF_OO_SOURCE_POS_INDEX_HELPER~CREATE_INDEX_WITH_SCANNER')
|
|
EXPORTING
|
|
class_name = iv_clsname
|
|
version = lc_version_active
|
|
scanner = io_scanner.
|
|
|
|
CALL METHOD lo_index_helper->('IF_OO_SOURCE_POS_INDEX_HELPER~DELETE_INDEX')
|
|
EXPORTING
|
|
class_name = iv_clsname
|
|
version = lc_version_inactive.
|
|
|
|
CATCH cx_root.
|
|
" it's probably okay to no update the index
|
|
RETURN.
|
|
ENDTRY.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~create.
|
|
|
|
DATA: lt_vseoattrib TYPE seoo_attributes_r.
|
|
FIELD-SYMBOLS: <lv_clsname> TYPE seoclsname.
|
|
|
|
* same as in super class, but with "version = seoc_version_active"
|
|
|
|
ASSIGN COMPONENT 'CLSNAME' OF STRUCTURE cg_properties TO <lv_clsname>.
|
|
ASSERT sy-subrc = 0.
|
|
|
|
lt_vseoattrib = convert_attrib_to_vseoattrib(
|
|
iv_clsname = <lv_clsname>
|
|
it_attributes = it_attributes ).
|
|
|
|
CALL FUNCTION 'SEO_CLASS_CREATE_COMPLETE'
|
|
EXPORTING
|
|
devclass = iv_package
|
|
overwrite = iv_overwrite
|
|
version = seoc_version_active
|
|
CHANGING
|
|
class = cg_properties
|
|
attributes = lt_vseoattrib
|
|
EXCEPTIONS
|
|
existing = 1
|
|
is_interface = 2
|
|
db_error = 3
|
|
component_error = 4
|
|
no_access = 5
|
|
other = 6
|
|
OTHERS = 7.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from SEO_CLASS_CREATE_COMPLETE' ).
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~create_sotr.
|
|
DATA: lt_sotr TYPE zif_abapgit_definitions=>ty_sotr_tt,
|
|
lt_objects TYPE sotr_objects,
|
|
ls_paket TYPE sotr_pack,
|
|
lv_object LIKE LINE OF lt_objects.
|
|
|
|
FIELD-SYMBOLS: <ls_sotr> LIKE LINE OF lt_sotr.
|
|
|
|
LOOP AT it_sotr ASSIGNING <ls_sotr>.
|
|
CALL FUNCTION 'SOTR_OBJECT_GET_OBJECTS'
|
|
EXPORTING
|
|
object_vector = <ls_sotr>-header-objid_vec
|
|
IMPORTING
|
|
objects = lt_objects
|
|
EXCEPTIONS
|
|
object_not_found = 1
|
|
OTHERS = 2.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from SOTR_OBJECT_GET_OBJECTS' ).
|
|
ENDIF.
|
|
|
|
READ TABLE lt_objects INDEX 1 INTO lv_object.
|
|
ASSERT sy-subrc = 0.
|
|
|
|
ls_paket-paket = iv_package.
|
|
|
|
CALL FUNCTION 'SOTR_CREATE_CONCEPT'
|
|
EXPORTING
|
|
paket = ls_paket
|
|
crea_lan = <ls_sotr>-header-crea_lan
|
|
alias_name = <ls_sotr>-header-alias_name
|
|
object = lv_object
|
|
entries = <ls_sotr>-entries
|
|
concept_default = <ls_sotr>-header-concept
|
|
EXCEPTIONS
|
|
package_missing = 1
|
|
crea_lan_missing = 2
|
|
object_missing = 3
|
|
paket_does_not_exist = 4
|
|
alias_already_exist = 5
|
|
object_type_not_found = 6
|
|
langu_missing = 7
|
|
identical_context_not_allowed = 8
|
|
text_too_long = 9
|
|
error_in_update = 10
|
|
no_master_langu = 11
|
|
error_in_concept_id = 12
|
|
alias_not_allowed = 13
|
|
tadir_entry_creation_failed = 14
|
|
internal_error = 15
|
|
error_in_correction = 16
|
|
user_cancelled = 17
|
|
no_entry_found = 18
|
|
OTHERS = 19.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from SOTR_CREATE_CONCEPT' ).
|
|
ENDIF.
|
|
ENDLOOP.
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~delete.
|
|
CALL FUNCTION 'SEO_CLASS_DELETE_COMPLETE'
|
|
EXPORTING
|
|
clskey = is_deletion_key
|
|
EXCEPTIONS
|
|
not_existing = 1
|
|
is_interface = 2
|
|
db_error = 3
|
|
no_access = 4
|
|
other = 5
|
|
OTHERS = 6.
|
|
IF sy-subrc = 1.
|
|
* ignore deletion of objects that does not exist
|
|
* this can happen when the SXCI object is deleted before the implementing CLAS
|
|
RETURN.
|
|
ELSEIF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( |Error from SEO_CLASS_DELETE_COMPLETE: { sy-subrc }| ).
|
|
ENDIF.
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~deserialize_source.
|
|
|
|
DATA: lv_updated TYPE abap_bool,
|
|
lv_program TYPE program,
|
|
lo_scanner TYPE REF TO cl_oo_source_scanner_class,
|
|
lt_methods TYPE cl_oo_source_scanner_class=>type_method_implementations,
|
|
lv_method LIKE LINE OF lt_methods,
|
|
lt_source TYPE seop_source_string.
|
|
|
|
|
|
"Buffer needs to be refreshed,
|
|
"otherwise standard SAP CLIF_SOURCE reorder methods alphabetically
|
|
CALL FUNCTION 'SEO_BUFFER_INIT'.
|
|
CALL FUNCTION 'SEO_BUFFER_REFRESH'
|
|
EXPORTING
|
|
cifkey = is_key
|
|
version = seoc_version_inactive.
|
|
|
|
lo_scanner = init_scanner(
|
|
it_source = it_source
|
|
iv_name = is_key-clsname ).
|
|
|
|
* public
|
|
lt_source = lo_scanner->get_public_section_source( ).
|
|
IF lt_source IS NOT INITIAL.
|
|
lv_program = cl_oo_classname_service=>get_pubsec_name( is_key-clsname ).
|
|
lv_updated = update_report( iv_program = lv_program
|
|
it_source = lt_source ).
|
|
IF lv_updated = abap_true.
|
|
update_meta( iv_name = is_key-clsname
|
|
iv_exposure = seoc_exposure_public
|
|
it_source = lt_source ).
|
|
ENDIF.
|
|
ENDIF.
|
|
|
|
* protected
|
|
lt_source = lo_scanner->get_protected_section_source( ).
|
|
IF lt_source IS NOT INITIAL.
|
|
lv_program = cl_oo_classname_service=>get_prosec_name( is_key-clsname ).
|
|
lv_updated = update_report( iv_program = lv_program
|
|
it_source = lt_source ).
|
|
IF lv_updated = abap_true.
|
|
update_meta( iv_name = is_key-clsname
|
|
iv_exposure = seoc_exposure_protected
|
|
it_source = lt_source ).
|
|
ENDIF.
|
|
ENDIF.
|
|
|
|
* private
|
|
lt_source = lo_scanner->get_private_section_source( ).
|
|
IF lt_source IS NOT INITIAL.
|
|
lv_program = cl_oo_classname_service=>get_prisec_name( is_key-clsname ).
|
|
lv_updated = update_report( iv_program = lv_program
|
|
it_source = lt_source ).
|
|
IF lv_updated = abap_true.
|
|
update_meta( iv_name = is_key-clsname
|
|
iv_exposure = seoc_exposure_private
|
|
it_source = lt_source ).
|
|
ENDIF.
|
|
ENDIF.
|
|
|
|
* methods
|
|
lt_methods = lo_scanner->get_method_implementations( ).
|
|
|
|
LOOP AT lt_methods INTO lv_method.
|
|
TRY.
|
|
lt_source = lo_scanner->get_method_impl_source( lv_method ).
|
|
CATCH cx_oo_clif_component.
|
|
zcx_abapgit_exception=>raise( 'error from GET_METHOD_IMPL_SOURCE' ).
|
|
ENDTRY.
|
|
lv_program = determine_method_include(
|
|
iv_name = is_key-clsname
|
|
iv_method = lv_method ).
|
|
|
|
update_report(
|
|
iv_program = lv_program
|
|
it_source = lt_source ).
|
|
ENDLOOP.
|
|
|
|
* full class include
|
|
update_full_class_include( iv_classname = is_key-clsname
|
|
it_source = it_source
|
|
it_methods = lt_methods ).
|
|
|
|
update_source_index(
|
|
iv_clsname = is_key-clsname
|
|
io_scanner = lo_scanner ).
|
|
|
|
* TODO, perhaps move this call to somewhere else, to be done while cleaning up the CLAS deserialization
|
|
zcl_abapgit_objects_activation=>add(
|
|
iv_type = 'CLAS'
|
|
iv_name = is_key-clsname ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~generate_locals.
|
|
|
|
DATA: lv_program TYPE programm.
|
|
|
|
|
|
IF lines( it_local_definitions ) > 0.
|
|
lv_program = cl_oo_classname_service=>get_ccdef_name( is_key-clsname ).
|
|
update_report( iv_program = lv_program
|
|
it_source = it_local_definitions ).
|
|
ENDIF.
|
|
|
|
IF lines( it_local_implementations ) > 0.
|
|
lv_program = cl_oo_classname_service=>get_ccimp_name( is_key-clsname ).
|
|
update_report( iv_program = lv_program
|
|
it_source = it_local_implementations ).
|
|
ENDIF.
|
|
|
|
IF lines( it_local_macros ) > 0.
|
|
lv_program = cl_oo_classname_service=>get_ccmac_name( is_key-clsname ).
|
|
update_report( iv_program = lv_program
|
|
it_source = it_local_macros ).
|
|
ENDIF.
|
|
|
|
IF lines( it_local_test_classes ) > 0.
|
|
lv_program = cl_oo_classname_service=>get_ccau_name( is_key-clsname ).
|
|
update_report( iv_program = lv_program
|
|
it_source = it_local_test_classes ).
|
|
ENDIF.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~get_class_properties.
|
|
CALL FUNCTION 'SEO_CLIF_GET'
|
|
EXPORTING
|
|
cifkey = is_class_key
|
|
version = seoc_version_active
|
|
IMPORTING
|
|
class = rs_class_properties
|
|
EXCEPTIONS
|
|
not_existing = 1
|
|
deleted = 2
|
|
model_only = 3
|
|
OTHERS = 4.
|
|
IF sy-subrc = 1.
|
|
RETURN. " in case only inactive version exists
|
|
ELSEIF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from seo_clif_get' ).
|
|
ENDIF.
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~get_includes.
|
|
* note: includes returned might not exist
|
|
* method cl_oo_classname_service=>GET_ALL_CLASS_INCLUDES does not exist in 702
|
|
|
|
DATA: lv_class_name TYPE seoclsname,
|
|
lt_methods TYPE seop_methods_w_include.
|
|
|
|
FIELD-SYMBOLS: <ls_method> LIKE LINE OF lt_methods.
|
|
|
|
lv_class_name = iv_object_name.
|
|
|
|
APPEND cl_oo_classname_service=>get_ccdef_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_ccmac_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_ccimp_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_cl_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_ccau_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_pubsec_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_prosec_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_prisec_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_classpool_name( lv_class_name ) TO rt_includes.
|
|
APPEND cl_oo_classname_service=>get_ct_name( lv_class_name ) TO rt_includes.
|
|
|
|
* skip the CS include, as it is sometimes generated on the fly instead of
|
|
* when the methods are changed
|
|
* APPEND cl_oo_classname_service=>get_cs_name( lv_class_name ) TO rt_includes.
|
|
|
|
cl_oo_classname_service=>get_all_method_includes(
|
|
EXPORTING
|
|
clsname = lv_class_name
|
|
RECEIVING
|
|
result = lt_methods
|
|
EXCEPTIONS
|
|
class_not_existing = 1 ).
|
|
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( |Class { lv_class_name } not existing| ).
|
|
ENDIF.
|
|
|
|
LOOP AT lt_methods ASSIGNING <ls_method>.
|
|
APPEND <ls_method>-incname TO rt_includes.
|
|
ENDLOOP.
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~insert_text_pool.
|
|
DATA: lv_cp TYPE program.
|
|
|
|
lv_cp = cl_oo_classname_service=>get_classpool_name( iv_class_name ).
|
|
|
|
INSERT TEXTPOOL lv_cp
|
|
FROM it_text_pool
|
|
LANGUAGE iv_language
|
|
STATE 'I'.
|
|
IF sy-subrc <> 0.
|
|
zcx_abapgit_exception=>raise( 'error from INSERT TEXTPOOL' ).
|
|
ENDIF.
|
|
|
|
zcl_abapgit_objects_activation=>add( iv_type = 'REPT'
|
|
iv_name = lv_cp ).
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~read_sotr.
|
|
DATA: lv_concept TYPE sotr_head-concept,
|
|
lt_seocompodf TYPE STANDARD TABLE OF seocompodf WITH DEFAULT KEY,
|
|
ls_header TYPE sotr_head,
|
|
lt_entries TYPE sotr_text_tt.
|
|
|
|
FIELD-SYMBOLS: <ls_sotr> LIKE LINE OF rt_sotr,
|
|
<ls_seocompodf> LIKE LINE OF lt_seocompodf,
|
|
<ls_entry> LIKE LINE OF lt_entries.
|
|
|
|
|
|
SELECT * FROM seocompodf
|
|
INTO TABLE lt_seocompodf
|
|
WHERE clsname = iv_object_name
|
|
AND version = '1'
|
|
AND exposure = '2'
|
|
AND attdecltyp = '2'
|
|
AND type = 'SOTR_CONC'
|
|
ORDER BY PRIMARY KEY. "#EC CI_SUBRC
|
|
|
|
LOOP AT lt_seocompodf ASSIGNING <ls_seocompodf>.
|
|
|
|
lv_concept = translate( val = <ls_seocompodf>-attvalue from = '''' to = '' ).
|
|
|
|
CALL FUNCTION 'SOTR_GET_CONCEPT'
|
|
EXPORTING
|
|
concept = lv_concept
|
|
IMPORTING
|
|
header = ls_header
|
|
TABLES
|
|
entries = lt_entries
|
|
EXCEPTIONS
|
|
no_entry_found = 1
|
|
OTHERS = 2.
|
|
IF sy-subrc <> 0.
|
|
CONTINUE.
|
|
ENDIF.
|
|
|
|
CLEAR: ls_header-paket,
|
|
ls_header-crea_name,
|
|
ls_header-crea_tstut,
|
|
ls_header-chan_name,
|
|
ls_header-chan_tstut.
|
|
|
|
LOOP AT lt_entries ASSIGNING <ls_entry>.
|
|
CLEAR: <ls_entry>-version,
|
|
<ls_entry>-crea_name,
|
|
<ls_entry>-crea_tstut,
|
|
<ls_entry>-chan_name,
|
|
<ls_entry>-chan_tstut.
|
|
ENDLOOP.
|
|
|
|
APPEND INITIAL LINE TO rt_sotr ASSIGNING <ls_sotr>.
|
|
<ls_sotr>-header = ls_header.
|
|
<ls_sotr>-entries = lt_entries.
|
|
|
|
ENDLOOP.
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD zif_abapgit_oo_object_fnc~read_text_pool.
|
|
DATA:
|
|
lv_cp TYPE program.
|
|
|
|
lv_cp = cl_oo_classname_service=>get_classpool_name( iv_class_name ).
|
|
READ TEXTPOOL lv_cp INTO rt_text_pool LANGUAGE iv_language. "#EC CI_READ_REP
|
|
ENDMETHOD.
|
|
ENDCLASS.
|