Skip to main content

Serializer Class

abapGitAbout 5 minserializers

Constructor

The constructor is implemented in the superclass and takes two parameters as input:

ParameterDescription
IS_ITEMContains object type, object name, SAP package, and state (active/inactive)
IV_LANGUAGEContains the language key for the main language of the repository
IO_FILESCollection of files associtated with the object
IO_I18N_PARAMSParameters related to translation of objects

These parameters are stored in attributes MS_ITEM, MV_LANGUAGE, MO_FILES, and MO_I18N_PARAMS respectively.

Requirements that are necessary to support an object type should be checked in the constructor using the following logic. This is typical if object types are not supported in lower releases.

  METHOD constructor.

    DATA ...

    super->constructor(
      is_item        = is_item
      iv_language    = iv_language
      io_files       = io_files
      io_i18n_params = io_i18n_params ).

    TRY.
        " Check requirements...
      CATCH cx_root.
        " Raise an exception if not supported
        zcx_abapgit_exception=>raise( 'Object type SRFC not supported' ).
    ENDTRY.

  ENDMETHOD.

This will ensure that none of the other class methods are called, even if objects of the given type exist in a repo.

Example: SRFCopen in new window.

Interface

Serializers must implement all methods of interface ZIF_ABAPGIT_OBJECTopen in new window:

MethodDescription
SERIALIZEContains all process steps to read the relevant object type-specific information and serialize it (as one or more files)
DESERIALIZEContains all process steps to create or update an object based on one or more files
DELETEContains all process steps to delete an object based on one or more files
EXISTSReturns whether a given object already exists in any state (i.e. return abap_true for inactive objects)
IS_LOCKEDReturns whether a given object is currently locked
IS_ACTIVEReturns whether a given object exists in an active state
CHANGED_BYReturns the name of the user who last changed a given object (if undetermined, return c_user_unknown)
JUMPNavigates to the corresponding object maintenance screen
GET_METADATAReturns object-specific metadata (see below)
GET_COMPARATORTriggered before deserialization to perform checks (for example, to warn the user that database tables are changed)
GET_DESERIALIZE_STEPSDefines the deserialzation step or steps used to build the processing sequence (see below)
GET_DESERIALIZE_ORDERReturns the list of objects that shall be deserialized before an object (optional, see below)
MAP_FILENAME_TO_OBJECTDerive the object from a given filename (optional)
MAP_OBJECT_TO_FILENAMEDerive the filename from a given object (optional)

Example: DOMAopen in new window.

Metadata

It is mandatory to provide the following metadata:

AttributeDescription
CLASSTechnical name used to identify the serializer within serialized XML files (format LCL_OBJECT_{type})
VERSIONVersion number of the serializer (format v1.0.0)

It's recommended to fill CLASS and VERSION metadata using SUPER->GET_METADATA( ) and then change settings as required.

Deserialization Step

It is mandatory to provide at least one deserialization step (see below).

Deserialization Order

This method is used to return a list of objects that shall be deserialized before the given object.

Super Class

Serializers can take advantage of the following methods in ZCL_ABAPGIT_OBJECTS_SUPERopen in new window:

MethodDescription
GET_METADATAReturn default metadata for class and version
CORR_INSERTInsert the object into a transport (for transportable objects)
TADIR_INSERTInsert the object into TADIR
TADIR_DELETEDelete the object from TADIR
EXISTS_A_LOCK_ENTRY_FORCheck if an enqueue lock exists
SET_DEFAULT_PACKAGESet SAP package for RS_CORR_INSERT when it can't be supplied via APIs
SET_DEFAULT_TRANSPORTSet transport request for RS_CORR_INSERT when it can't be supplied via APIs
IS_ACTIVEMethod to check if an ABAP Workbench object or its parts are active
DELETE_DDICMethod to remove DDIC objects

In addition, there are some methods to handle documents associated with an object (transaction SE61, table DOKIL).

MethodDescription
SERIALIZE_LONGTEXTSSerialize document including I18N handling
DESERIALIZE_LONGTEXTSDeserialize document including I18N handling
DELETE_LONGTEXTSDelete document
SERIALIZE_LXE_TEXTSSerialize translation texts (new approach, see below)
DESERIALIZE_LXE_TEXTSDeserialize translation texts (new approach, see below)

Generic Class

If it's not possible to provide a native implementation for an object serializer, using generic class ZCL_ABAPGIT_OBJECTS_GENERICopen in new window is possible for logical transport objects (see table OBJH, object type L).

Example: IWMOopen in new window.

Serialize Object

The serialize method shall produce one or several files containing the data that represents a given object. There are a few methods available to define files and attach data using ZIF_ABAPGIT_OUTPUT_XMLopen in new window (input parameter IO_XML).

MethodDescription
ADDAppend a value, structure, or internal table to the output (using ID transformation to XML suppressing initial fields)
ADD_XMLAppend an instance of an XML document to the output (IF_XML_ELEMENT)
SET_RAWSet the output to an instance of an XML document (IF_XML_ELEMENT)
I18N_PARAMSGet the settings for internationalization (see below)

Deserialize Object

The deserialize method shall read the file or files representing a given object and create the object in the system. If the object already exists, it shall be updated according to the definition in the file or files. There are a few methods available to process files using ZIF_ABAPGIT_INPUT_XMLopen in new window (input parameter IO_XML).

MethodDescription
READReturn a value, structure, or internal table from the input (using ID transformation from XML accepting data loss)
GET_RAWReturn the input as an instance of an XML document (IF_XML_ELEMENT)
GET_METADATAReturn the metadata used at the time of serializing the object
I18N_PARAMSGet the settings for internationalization (see below)

In addition, the deserialize method must add or update the TADIR entry for the given object and insert the object into a transport request (for transportable packages). If the used SAP APIs are not performing these tasks, TADIR_INSERT( iv_package ) and CORR_INSERT( iv_package ) shall be called by the deserialize method.

Activate Object

After deserializing, an object (or dependent objects) might have to be activated. Add such objects to the activation queue using [ZCL_ABAPGIT_OBJECTS_ACTIVATION]:

MethodDescription
ADDAppend a given object type and name to the queue (for example, INDX {table} for database indexes when deserializing tables)
ADD_ITEMAppend a given object to the queue (for example, use ms_item for activating the object itself)

The activation queue is built separately for each phase (see 'Deserialize Process' below).

Internationalization (I18N)

In general, the serializer class shall process texts of an object in all available languages i.e. the original language as well as any translations. It shall respect the "Serialize Main Language Only" setting of a repository and limit the texts to the language provided to the constructor (MV_LANGUAGE).

The recommended approach is to check io_xml->i18n_params( )-main_language_only = abap_false and then serialize the additional translations in the XML (typically using the I18N prefix). During deserialize, the translation languages can then be retrieved and processed accordingly.

Example: TABLopen in new window.

Note: A new approach for serializing translations based on LXE is under development. See #4470open in new window for further details and discussion.

Testing

When adding new serializers, add at least one test repository to the organization abapGit-testsopen in new window with the name of the object type in capitals (for example, TABLopen in new window. This test will be used by abapGit Continuous Integrationopen in new window.

Example (using SUSH):

  1. Go to https://github.com/abapGit-tests/SUSHopen in new window and create a fork
  2. In your system (where you have the new SUSH class), start abapGit and create a new online repo for the URL of your fork (pick any local package like $SUSH).
  3. Add one SUSH object to this package (like ZAG_UNIT_TEST)
  4. Go back to abapGit and you should see the new object in the object list of the repo
  5. Stage everything and commit
  6. Go to your forked repo and create a pull request (at the top there's a section showing the delta to the original and a compare button which you can click to create the PR)

Processing Order and Dependencies

Serialize Process

abapGit determines which objects need to be serialized based on the SAP package assigned to a repository (including sub-packages unless "Ignore sub-packages" is selected in the repository settings). The list of objects is then sorted by package, object type, and object name.

If a sufficient number of work processes is available, abapGit will activate objects in parallel (unless "Disable Parallel Processing" is selected in the repository settings).

For details, see ZCL_ABAPGIT_SERIALIZEopen in new window.

Deserialize Process

Objects are deserialized in three phases. After each phase, all objects included in the phase will be activated.

StepDescriptionActivation
EARLYUsed for objects (like classes and interfaces) that are dependencies for DDIC objectsNone
DDICUsed for DDIC objects which require processing and activation before other object typesDDIC Mass Activation
ABAPUsed for non-DDIC objects (code or mostly anything else) which might depend on DDIC objectsWorkbench Mass Activation
LATEUsed for objects that depend on other objects processed in the previous two phasesDDIC & Workbench Mass Activation

Within each phase, the sequence of objects is determined by abapGit based on known object type dependencies. For details, see method PRIORITIZE_DESER in ZCL_ABAPGIT_FILE_DESERIALIZEopen in new window.

Uninstall Process

During the uninstallation of a repository, abapGit will determine the objects in the same fashion as the serialize process. The sequence of objects is determined by abapGit based on known object type dependencies. For details, see method RESOLVE in ZCL_ABAPGIT_DEPENDENCIESopen in new window.

Note: There are suggestions to refactor the logic to determine the processing orderopen in new window.