1. 21 Oct, 2017 2 commits
    • Bi-Ruei, Chiu's avatar
      Fix unrecognized value type for reject/ignore · aeff717b
      Bi-Ruei, Chiu authored
      In Module_1,
      
      	Criticality ::= ENUMERATED { reject, ignore, notify }
      
      In Module_2,
      
      	IMPORTS
      		Criticality
      	FROM Module_1
      
      		someMessage SOME-CLASS ::= {
      			CRITICALITY	ignore
      		}
      
      This pull request add the capability to resolve 'reject', 'ignore' and 'notify'
      in Module_2.
      aeff717b
    • Bi-Ruei, Chiu's avatar
      Fix 'Information Object Set XXX contains no objects' when parsing S1AP's ASN.1 · 50934ba3
      Bi-Ruei, Chiu authored
      The aforementioned error message displayed during processing the following ASN.1 excerpt.
      
      S1AP-ELEMENTARY-PROCEDURES S1AP-ELEMENTARY-PROCEDURE ::= {
          S1AP-ELEMENTARY-PROCEDURES-CLASS-1 |
          S1AP-ELEMENTARY-PROCEDURES-CLASS-2,
          ...
      }
      
      S1AP-ELEMENTARY-PROCEDURES-CLASS-1 S1AP-ELEMENTARY-PROCEDURE ::= {
          handoverPreparation                |
      ...
          writeReplaceWarning,
          ...,
          uERadioCapabilityMatch             |
      ....
          uEContextResume
      }
      
      S1AP-ELEMENTARY-PROCEDURES-CLASS-2 S1AP-ELEMENTARY-PROCEDURE ::= {
          handoverNotification               |
      ...
          privateMessage,
          ...,
          downlinkUEAssociatedLPPaTransport  |
      ...
          mMECPRelocationIndication
      }
      
      Because S1AP-ELEMENTARY-PROCEDURES-CLASS-1 and S1AP-ELEMENTARY-PROCEDURES-CLASS-2
      are resolved 'after' S1AP-ELEMENTARY-PROCEDURES, so the ioc tables of them are not
      available during resolving S1AP-ELEMENTARY-PROCEDURES. So we can not drop the
      latter's containedSubtype field at first pass of asn1f_resolve_constraints of fix
      process.
      
      We also add second pass of asn1f_resolve_constraints to have a chance to combine
      ioc tables of S1AP-ELEMENTARY-PROCEDURES-CLASS-1 and
      S1AP-ELEMENTARY-PROCEDURES-CLASS-2.
      50934ba3
  2. 20 Oct, 2017 6 commits
  3. 19 Oct, 2017 29 commits
  4. 18 Oct, 2017 3 commits