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 | 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 | const {cx_root} = await import("./cx_root.clas.mjs"); // cl_system_uuid.clas.abap class cl_system_uuid { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_SYSTEM_UUID'; static IMPLEMENTED_INTERFACES = ["IF_SYSTEM_UUID_RFC4122_STATIC","IF_SYSTEM_UUID_STATIC"]; static ATTRIBUTES = {}; static METHODS = {"RANDOM": {"visibility": "I", "parameters": {"RV_STR": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}}}}; constructor() { this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { }; this.create_uuid_c32_static = this.if_system_uuid_static$create_uuid_c32; this.create_uuid_c36_static = this.if_system_uuid_static$create_uuid_c36; this.create_uuid_x16_static = this.if_system_uuid_static$create_uuid_x16; } async constructor_(INPUT) { if (super.constructor_) { await super.constructor_(INPUT); } return this; } async random() { return cl_system_uuid.random(); } static async random() { let rv_str = new abap.types.String({qualifiedName: "STRING"}); if (cl_system_uuid.CRYPTO === undefined) cl_system_uuid.CRYPTO = await import("crypto"); if (cl_system_uuid.CRYPTO.randomUUID) { rv_str.set(cl_system_uuid.CRYPTO.randomUUID()); } else { rv_str = window.crypto.randomUUID(); } return rv_str; } async if_system_uuid_static$create_uuid_x16() { return cl_system_uuid.if_system_uuid_static$create_uuid_x16(); } static async if_system_uuid_static$create_uuid_x16() { let uuid = new abap.types.Hex({length: 16}); let lv_str = new abap.types.String({qualifiedName: "STRING"}); lv_str.set((await this.random())); abap.statements.replace({target: lv_str, all: true, with: abap.CharacterFactory.get(1, ''), of: abap.CharacterFactory.get(1, '-')}); abap.statements.translate(lv_str, "UPPER"); uuid.set(lv_str.getOffset({length: 32})); return uuid; } async if_system_uuid_static$create_uuid_c32() { return cl_system_uuid.if_system_uuid_static$create_uuid_c32(); } static async if_system_uuid_static$create_uuid_c32() { let uuid = new abap.types.Character(32, {"qualifiedName":"SYSUUID_C32","ddicName":"SYSUUID_C32","description":"UUID"}); let lv_str = new abap.types.String({qualifiedName: "STRING"}); lv_str.set((await this.random())); abap.statements.replace({target: lv_str, all: true, with: abap.CharacterFactory.get(1, ''), of: abap.CharacterFactory.get(1, '-')}); uuid.set(lv_str.getOffset({length: 32})); abap.statements.translate(uuid, "UPPER"); return uuid; } async if_system_uuid_static$create_uuid_c36() { return cl_system_uuid.if_system_uuid_static$create_uuid_c36(); } static async if_system_uuid_static$create_uuid_c36() { let uuid = new abap.types.Character(36, {"qualifiedName":"SYSUUID_C36","ddicName":"SYSUUID_C36","description":"SYSUUID_C36"}); let lv_str = new abap.types.String({qualifiedName: "STRING"}); lv_str.set((await this.random())); abap.statements.translate(lv_str, "UPPER"); uuid.set(lv_str); return uuid; } async if_system_uuid_rfc4122_static$create_uuid_c36_by_version(INPUT) { return cl_system_uuid.if_system_uuid_rfc4122_static$create_uuid_c36_by_version(INPUT); } static async if_system_uuid_rfc4122_static$create_uuid_c36_by_version(INPUT) { let uuid = new abap.types.Character(36, {"qualifiedName":"SYSUUID_C36","ddicName":"SYSUUID_C36","description":"SYSUUID_C36"}); let version = INPUT?.version; if (version?.getQualifiedName === undefined || version.getQualifiedName() !== "I") { version = undefined; } if (version === undefined) { version = new abap.types.Integer({qualifiedName: "I"}).set(INPUT.version); } abap.statements.assert(abap.compare.eq(version, abap.IntegerFactory.get(4))); uuid.set((await this.random())); return uuid; } async if_system_uuid_static$create_uuid_c22() { return cl_system_uuid.if_system_uuid_static$create_uuid_c22(); } static async if_system_uuid_static$create_uuid_c22() { let uuid = new abap.types.Character(22, {"qualifiedName":"SYSUUID_C22","ddicName":"SYSUUID_C22","description":"UUID"}); let lv_str = new abap.types.String({qualifiedName: "STRING"}); lv_str.set((await this.random())); abap.statements.replace({target: lv_str, all: true, with: abap.CharacterFactory.get(1, ''), of: abap.CharacterFactory.get(1, '-')}); uuid.set(lv_str.getOffset({length: 22})); return uuid; } } abap.Classes['CL_SYSTEM_UUID'] = cl_system_uuid; export {cl_system_uuid}; |