@webex/plugin-meetings 3.9.0-next.1 → 3.9.0-next.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/index.js +15 -6
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/parser.js +4 -1
- package/dist/locus-info/parser.js.map +1 -1
- package/dist/meeting/index.js +98 -76
- package/dist/meeting/index.js.map +1 -1
- package/dist/members/index.js +3 -2
- package/dist/members/index.js.map +1 -1
- package/dist/members/util.js +7 -2
- package/dist/members/util.js.map +1 -1
- package/dist/reachability/index.js +3 -3
- package/dist/reachability/index.js.map +1 -1
- package/dist/types/locus-info/index.d.ts +2 -0
- package/dist/types/members/index.d.ts +2 -1
- package/dist/types/members/util.d.ts +6 -3
- package/dist/webinar/index.js +1 -1
- package/package.json +13 -13
- package/src/locus-info/index.ts +13 -5
- package/src/locus-info/parser.ts +5 -1
- package/src/meeting/index.ts +24 -2
- package/src/members/index.ts +9 -2
- package/src/members/util.ts +18 -2
- package/src/reachability/index.ts +3 -3
- package/test/unit/spec/locus-info/index.js +7 -7
- package/test/unit/spec/locus-info/parser.js +3 -2
- package/test/unit/spec/meeting/index.js +90 -22
- package/test/unit/spec/members/index.js +30 -2
- package/test/unit/spec/members/request.js +55 -0
- package/test/unit/spec/members/utils.js +116 -14
- package/test/unit/spec/reachability/index.ts +158 -3
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_lodash","require","_queue","_interopRequireDefault","_loggerProxy","_metrics","_constants","_templateObject","_templateObject2","_templateObject3","_templateObject4","_templateObject5","_templateObject6","_templateObject7","_templateObject8","_templateObject9","_templateObject10","MAX_OOO_DELTA_COUNT","OOO_DELTA_WAIT_TIME","OOO_DELTA_WAIT_TIME_RANDOM_DELAY","Parser","exports","default","_classCallCheck2","_defineProperty2","deltaCompareFunc","left","right","_Parser$loci","loci","LT","GT","extract","extractComparisonState","isSequenceEmpty","result","compareSequence","baseSequence","queue","SortedQueue","status","onDeltaAction","workingCopy","syncTimer","undefined","_createClass2","key","value","isNewFullLocus","incomingFullDto","isLoci","LoggerProxy","logger","info","comparisonResult","compareFullDtoSequence","USE_INCOMING","isValidLocus","newLoci","isValid","nextEvent","size","processDeltaEvent","action","locus","onDeltaEvent","enqueue","triggerSync","pause","reason","concat","stopSyncTimer","DESYNC","startSyncTimer","_this","timeout","Math","random","setTimeout","clearTimeout","_Parser$loci2","WAIT","LOCUS_URL_CHANGED","dequeue","compare","lociComparison","debug","needToWait","locus2string","error","resume","_locus$sequence","sequence","entries","length","at","checkSequenceOverlap","current","incoming","comparison","min","max","checkUnequalRanges","currentIsNotUnique","unique","incomingIsNotUnique","currentTotalRange","end","incomingTotalRange","EQ","checkForUniqueEntries","currentIsUnique","incomingIsUnique","checkIfOutOfSync","currentUniqueMin","incomingUniqueMin","currentHasNoRange","start","incomingHasNoRange","neitherSeqHasRange","hasUniqOverlap","list","some","seq","currentUniqOverlap","incomingUniqOverlap","debugInfo","pack","packComparisonResult","compareDelta","compareToAction","_Parser$loci3","url","Metrics","sendBehavioralMetric","BEHAVIORAL_METRICS","LOCUS_DELTA_OUT_OF_ORDER","stack","Error","slice","USE_CURRENT","local","getMetaData","delta","getUniqueSequences","rules","_i","_rules","rule","ERROR","_Parser$loci4","lociComparisonResult","split","first","last","rangeStart","rangeEnd","baseLoci","otherLoci","diff","difference","getNumbersOutOfRange","output","filter","num","sort","a","b","_sequence$entries","hasEmptyEntries","hasEmptyRange","hasProp","prop","Object","prototype","hasOwnProperty","call","newData","oldData","getDebugMessage","debugCode","mStr","strings","join","replace","resolutionMap","debugMap","SO001","title","description","_taggedTemplateLiteral2","logic","SO002","UR001","UR002","UR003","UE001","UE002","OOS001","OOS002","OOS003","debugObj","resolution"],"sources":["parser.ts"],"sourcesContent":["import {difference} from 'lodash';\n\nimport SortedQueue from '../common/queue';\nimport LoggerProxy from '../common/logs/logger-proxy';\n\nimport Metrics from '../metrics';\nimport BEHAVIORAL_METRICS from '../metrics/constants';\n\nconst MAX_OOO_DELTA_COUNT = 5; // when we receive an out-of-order delta and the queue builds up to MAX_OOO_DELTA_COUNT, we do a sync with Locus\nconst OOO_DELTA_WAIT_TIME = 10000; // [ms] minimum wait time before we do a sync if we get out-of-order deltas\nconst OOO_DELTA_WAIT_TIME_RANDOM_DELAY = 5000; // [ms] max random delay added to OOO_DELTA_WAIT_TIME\n\ntype LocusDeltaDto = {\n url: string;\n baseSequence: {\n rangeStart: number;\n rangeEnd: number;\n entries: number[];\n };\n sequence: {\n rangeStart: number;\n rangeEnd: number;\n entries: number[];\n };\n syncUrl: string;\n};\n\n/**\n * Locus Delta Parser\n * @private\n * https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Delta-Events\n */\nexport default class Parser {\n // processing status\n status:\n | 'IDLE' // not doing anything\n | 'PAUSED' // paused, because we are doing a sync\n | 'WORKING' // processing a delta event\n | 'BLOCKED'; // received an out-of-order delta, so waiting for the missing one\n\n // loci comparison states\n static loci = {\n EQ: 'EQUAL',\n GT: 'GREATER_THAN',\n LT: 'LESS_THAN',\n DESYNC: 'DESYNC',\n USE_INCOMING: 'USE_INCOMING',\n USE_CURRENT: 'USE_CURRENT',\n WAIT: 'WAIT',\n ERROR: 'ERROR',\n LOCUS_URL_CHANGED: 'LOCUS_URL_CHANGED',\n };\n\n queue: SortedQueue<LocusDeltaDto>;\n workingCopy: any;\n syncTimer?: ReturnType<typeof setTimeout>;\n\n /**\n * @constructs Parser\n */\n constructor() {\n const deltaCompareFunc = (left: LocusDeltaDto, right: LocusDeltaDto) => {\n const {LT, GT} = Parser.loci;\n const {extractComparisonState: extract} = Parser;\n\n if (Parser.isSequenceEmpty(left)) {\n return -1;\n }\n if (Parser.isSequenceEmpty(right)) {\n return 1;\n }\n const result = extract(Parser.compareSequence(left.baseSequence, right.baseSequence));\n\n if (result === LT) {\n return -1;\n }\n if (result === GT) {\n return 1;\n }\n\n return 0;\n };\n\n this.queue = new SortedQueue<LocusDeltaDto>(deltaCompareFunc);\n this.status = 'IDLE';\n this.onDeltaAction = null;\n this.workingCopy = null;\n this.syncTimer = undefined;\n }\n\n /**\n * Returns a debug string representing a locus delta - useful for logging\n *\n * @param {LocusDeltaDto} locus Locus delta\n * @returns {string}\n */\n static locus2string(locus: LocusDeltaDto) {\n if (!locus.sequence?.entries) {\n return 'invalid';\n }\n\n return locus.sequence.entries.length ? `seq=${locus.sequence.entries.at(-1)}` : 'empty';\n }\n\n /**\n * Checks if two sequences overlap in time,\n * the sequence with the higher minimum value is greater.\n * Chooses sequence with most recent data.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static checkSequenceOverlap(current, incoming) {\n let comparison = null;\n\n // if earliest working copy sequence is more recent than last incoming sequence\n if (current.min > incoming.max) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:SO001`;\n }\n // if last working copy sequence is before the earliest incoming sequence\n else if (current.max < incoming.min) {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:SO002`;\n }\n\n // if no match above, defaults to null\n return comparison;\n }\n\n /**\n * Checks if two sequences have unequal ranges.\n * Chooses sequence with most larger range.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {object} loci comparison\n */\n static checkUnequalRanges(current, incoming) {\n let comparison = null;\n const currentIsNotUnique = current.unique.length === 0;\n const incomingIsNotUnique = incoming.unique.length === 0;\n const currentTotalRange = current.end - current.min;\n const incomingTotalRange = incoming.end - incoming.min;\n\n // no unique values for both loci\n if (currentIsNotUnique && incomingIsNotUnique) {\n // current working copy loci has a larger range\n if (currentTotalRange > incomingTotalRange) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:UR001`;\n }\n // incoming delta loci has a larger range\n else if (currentTotalRange < incomingTotalRange) {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:UR002`;\n } else {\n // with no unique entries and with ranges either absent or\n // of the same size, the sequences are considered equal.\n comparison = `${Parser.loci.EQ}:UR003`;\n }\n }\n\n return comparison;\n }\n\n /**\n * Checks if either sequences has unique entries.\n * Entries are considered unique if they do not overlap\n * with other Loci sequences or range values.\n * Chooses sequence with the unique entries.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static checkForUniqueEntries(current, incoming) {\n let comparison = null;\n const currentIsUnique = current.unique.length > 0;\n const incomingIsUnique = incoming.unique.length > 0;\n\n // current has unique entries and incoming does not\n if (currentIsUnique && !incomingIsUnique) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:UE001`;\n }\n // current has no unique entries but incoming does\n else if (!currentIsUnique && incomingIsUnique) {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:UE002`;\n }\n\n return comparison;\n }\n\n /**\n * Checks both Locus Delta objects to see if they are\n * out of sync with one another. If so sends a DESYNC\n * request to the server.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static checkIfOutOfSync(current, incoming) {\n let comparison = null;\n const currentUniqueMin = current.unique[0];\n const incomingUniqueMin = incoming.unique[0];\n\n const currentHasNoRange = !current.start && !current.end;\n const incomingHasNoRange = !incoming.start && !incoming.end;\n const neitherSeqHasRange = currentHasNoRange && incomingHasNoRange;\n\n const hasUniqOverlap = (list, min, max) => list.some((seq) => min < seq && seq < max);\n // current unique entries overlap the total range of incoming\n const currentUniqOverlap = hasUniqOverlap(current.unique, incoming.min, incoming.max);\n // vice-versa, incoming unique entries overlap the total range of current\n const incomingUniqOverlap = hasUniqOverlap(incoming.unique, current.min, current.max);\n\n if (neitherSeqHasRange || currentUniqOverlap || incomingUniqOverlap) {\n // outputs string indicating which condition occurred. ex: 0,1,0\n const debugInfo = `${+neitherSeqHasRange},${+currentUniqOverlap},${+incomingUniqOverlap}`;\n\n // send DESYNC to server\n comparison = `${Parser.loci.DESYNC}:OOS001:${debugInfo}`;\n } else if (currentUniqueMin > incomingUniqueMin) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:OOS002`;\n } else {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:OOS003`;\n }\n\n return comparison;\n }\n\n /**\n * Compares two loci to determine which one contains the most recent state\n * @instance\n * @memberof Locus\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static compare(current, incoming) {\n const {isSequenceEmpty} = Parser;\n const {extractComparisonState: extract} = Parser;\n const {packComparisonResult: pack} = Parser;\n\n if (isSequenceEmpty(current) || isSequenceEmpty(incoming)) {\n return pack(Parser.loci.USE_INCOMING, 'C001');\n }\n\n if (incoming.baseSequence) {\n return pack(Parser.compareDelta(current, incoming), 'C002');\n }\n\n const result = Parser.compareSequence(current.sequence, incoming.sequence);\n const action = Parser.compareToAction(extract(result));\n\n return pack(action, result);\n }\n\n /**\n * Compares two loci sequences (with delta params) and indicates what action\n * to take.\n * @instance\n * @memberof Locus\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @private\n * @returns {string} loci comparison state\n */\n private static compareDelta(current, incoming) {\n const {LT, GT, EQ, DESYNC, USE_INCOMING, WAIT, LOCUS_URL_CHANGED} = Parser.loci;\n\n const {extractComparisonState: extract} = Parser;\n const {packComparisonResult: pack} = Parser;\n\n const result = Parser.compareSequence(current.sequence, incoming.sequence);\n let comparison = extract(result);\n\n if (comparison !== LT) {\n return pack(Parser.compareToAction(comparison), result);\n }\n\n if (incoming.url !== current.url) {\n // when moving to/from a breakout session, the locus URL will change and also\n // the baseSequence, making incoming and current incomparable, so use a\n // unique comparison state\n return pack(LOCUS_URL_CHANGED, result);\n }\n\n comparison = Parser.compareSequence(current.sequence, incoming.baseSequence);\n\n switch (extract(comparison)) {\n case GT:\n case EQ:\n comparison = USE_INCOMING;\n break;\n\n case LT:\n if (extract(Parser.compareSequence(incoming.baseSequence, incoming.sequence)) === EQ) {\n // special case where Locus sends a delta with baseSequence === sequence to trigger a sync,\n // because the delta event is too large to be sent over mercury connection\n comparison = DESYNC;\n } else {\n // the incoming locus has baseSequence from the future, so it is out-of-order,\n // we are missing 1 or more locus that should be in front of it, we need to wait for it\n comparison = WAIT;\n\n Metrics.sendBehavioralMetric(BEHAVIORAL_METRICS.LOCUS_DELTA_OUT_OF_ORDER, {\n stack: new Error().stack,\n });\n }\n break;\n default:\n comparison = DESYNC;\n }\n\n return pack(comparison, result);\n }\n\n /**\n * Compares Locus sequences - it should be called only for full Locus DTOs, not deltas\n *\n * @param {Types~Locus} current Current working copy\n * @param {Types~Locus} incomingFullDto New Full Locus DTO\n * @returns {string} either Parser.loci.USE_INCOMING or Parser.loci.USE_CURRENT\n */\n static compareFullDtoSequence(current, incomingFullDto) {\n if (Parser.isSequenceEmpty(current) || Parser.isSequenceEmpty(incomingFullDto)) {\n return Parser.loci.USE_INCOMING;\n }\n\n // the sequence.entries list will always contain at least 1 entry\n // https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Sequence-Comparison-Algorithm\n\n return incomingFullDto.sequence.entries.slice(-1)[0] > current.sequence.entries.slice(-1)[0]\n ? Parser.loci.USE_INCOMING\n : Parser.loci.USE_CURRENT;\n }\n\n /**\n * Returns true if the incoming full locus DTO is newer than the current working copy\n *\n * @param {Types~Locus} incomingFullDto New Full Locus DTO\n * @returns {string} either Parser.loci.USE_INCOMING or Parser.loci.USE_CURRENT\n */\n isNewFullLocus(incomingFullDto) {\n if (!Parser.isLoci(incomingFullDto)) {\n LoggerProxy.logger.info('Locus-info:parser#isNewFullLocus --> Ignoring non-locus object.');\n\n return false;\n }\n\n if (!this.workingCopy) {\n // we don't have a working copy yet, so any full locus is better than nothing\n return true;\n }\n\n const comparisonResult = Parser.compareFullDtoSequence(this.workingCopy, incomingFullDto);\n\n return comparisonResult === Parser.loci.USE_INCOMING;\n }\n\n /**\n * Compares Locus sequences\n * @param {Types~Locus} current Current working copy\n * @param {Types~Locus} incoming New Locus delta\n * @returns {string}\n */\n static compareSequence(current, incoming) {\n // Locus sequence comparison rules in order of priority.\n // https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Sequence-Comparison-Algorithm\n\n const local: any = Parser.getMetaData(current);\n const delta: any = Parser.getMetaData(incoming);\n\n // update loci metadata\n local.unique = Parser.getUniqueSequences(local, delta);\n delta.unique = Parser.getUniqueSequences(delta, local);\n\n // Locus sequence comparison rules\n // order matters\n const rules = [\n Parser.checkSequenceOverlap,\n Parser.checkUnequalRanges,\n Parser.checkForUniqueEntries,\n Parser.checkIfOutOfSync,\n ];\n\n for (const rule of rules) {\n // Rule only returns a value if the rule applies,\n // otherwise returns null.\n const result = rule(local, delta);\n\n if (result) {\n return result;\n }\n }\n\n // error, none of rules above applied\n // should never get here as last rule\n // should be catch all.\n return Parser.loci.ERROR;\n }\n\n /**\n * Transates the result of a sequence comparison into an intended behavior\n * @param {string} result\n * @returns {string} Locus comparison action\n */\n static compareToAction(result: string) {\n const {DESYNC, EQ, ERROR, GT, LT, USE_CURRENT, USE_INCOMING} = Parser.loci;\n\n let action = ERROR;\n\n switch (result) {\n case EQ:\n case GT:\n action = USE_CURRENT;\n break;\n case LT:\n action = USE_INCOMING;\n break;\n case DESYNC:\n action = DESYNC;\n break;\n default:\n LoggerProxy.logger.info(\n `Locus-info:parser#compareToAction --> Error: ${result} is not a recognized sequence comparison result.`\n );\n }\n\n return action;\n }\n\n /**\n * Extracts a loci comparison from a string of data.\n * @param {string} lociComparisonResult Comparison result with extra data\n * @returns {string} Comparison of EQ, LT, GT, or DESYNC.\n */\n static extractComparisonState(lociComparisonResult: string) {\n return lociComparisonResult.split(':')[0];\n }\n\n /**\n * @typedef {object} LociMetadata\n * @property {number} start - Starting sequence number\n * @property {number} end - Ending sequence number\n * @property {number} first - First sequence number\n * @property {number} last - Last sequence number\n * @property {number} min - Minimum sequence number\n * @property {number} max - Maximum sequence number\n * @property {number} entries - Loci sequence entries\n */\n\n /**\n * Metadata for Locus delta\n * @param {Array.<number>} sequence Locus delta sequence\n * @returns {LociMetadata} Locus Delta Metadata\n */\n static getMetaData(sequence: any) {\n const {entries} = sequence;\n const first = entries[0];\n const last = entries.slice(-1)[0];\n\n // rangeStart or rangeEnd is 0 if a range doesn't exist\n const start = sequence.rangeStart;\n const end = sequence.rangeEnd;\n\n // sequence data\n return {\n start,\n end,\n first,\n last,\n // Rule is: rangeStart <= rangeEnd <= min(entries)\n min: start || first,\n // Grab last entry if exist else default to rangeEnd\n max: last || end,\n // keep reference to actual sequence entries\n entries,\n };\n }\n\n /**\n * Compares two Locus delta objects and notes unique\n * values contained within baseLoci.\n * @param {LociMetadata} baseLoci\n * @param {LociMetadata} otherLoci\n * @returns {Array.<number>} List of unique sequences\n */\n static getUniqueSequences(baseLoci: any, otherLoci: any) {\n const diff: any = difference(baseLoci.entries, otherLoci.entries);\n\n const {start, end} = otherLoci;\n\n return Parser.getNumbersOutOfRange(diff, start, end);\n }\n\n /**\n * Returns an array of numbers outside of a given range.\n * @param {Array.<number>} list Array to filter\n * @param {number} rangeStart Start of range\n * @param {number} rangeEnd End of range\n * @returns {Array.<number>} Array of numbers sorted ASC\n */\n static getNumbersOutOfRange(list: Array<number>, rangeStart: number, rangeEnd: number) {\n // Collect all numbers if number is outside of specified range\n const output = list.filter((num) => num < rangeStart || num > rangeEnd);\n\n // sort ascending\n return output.sort((a, b) => a - b);\n }\n\n /**\n * Checks if newLoci or workingCopy is invalid.\n * @param {Types~Locus} newLoci\n * @returns {boolean}\n */\n isValidLocus(newLoci) {\n let isValid = false;\n const {isLoci} = Parser;\n\n // one or both objects are not locus delta events\n if (!isLoci(this.workingCopy) || !isLoci(newLoci)) {\n LoggerProxy.logger.info(\n 'Locus-info:parser#processDeltaEvent --> Ignoring non-locus object. workingCopy:',\n this.workingCopy,\n 'newLoci:',\n newLoci\n );\n } else {\n isValid = true;\n }\n\n return isValid;\n }\n\n /**\n * Determines if a paricular locus's sequence is empty\n * @param {Types~Locus} locus\n * @returns {bool}\n */\n static isSequenceEmpty(locus) {\n const {sequence} = locus;\n const hasEmptyEntries = !sequence.entries?.length;\n const hasEmptyRange = sequence.rangeStart === 0 && sequence.rangeEnd === 0;\n\n return hasEmptyEntries && hasEmptyRange;\n }\n\n /**\n * Determines if an object has basic\n * structure of a locus object.\n * @param {Types~Locus} loci\n * @returns {boolean}\n */\n static isLoci(loci) {\n if (!loci || !loci.sequence) {\n return false;\n }\n const hasProp = (prop) => Object.prototype.hasOwnProperty.call(loci.sequence, prop);\n\n if (hasProp('rangeStart') && hasProp('rangeEnd')) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Processes next event in queue,\n * if queue is empty sets status to idle.\n * @returns {undefined}\n */\n nextEvent() {\n if (this.status === 'PAUSED') {\n LoggerProxy.logger.info('Locus-info:parser#nextEvent --> Locus parser paused.');\n\n return;\n }\n\n if (this.status === 'BLOCKED') {\n LoggerProxy.logger.info(\n 'Locus-info:parser#nextEvent --> Locus parser blocked by out-of-order delta.'\n );\n\n return;\n }\n\n // continue processing until queue is empty\n if (this.queue.size() > 0) {\n this.processDeltaEvent();\n } else {\n this.status = 'IDLE';\n }\n }\n\n /**\n * Function handler for delta actions,\n * is set by instance callee.\n * @param {string} action Locus delta action\n * @param {Types~Locus} locus Locus delta\n * @returns {undefined}\n */\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n onDeltaAction(action: string, locus) {}\n\n /**\n * Event handler for locus delta events\n * @param {Types~Locus} loci Locus Delta\n * @returns {undefined}\n */\n onDeltaEvent(loci) {\n // enqueue the new loci\n this.queue.enqueue(loci);\n\n if (this.onDeltaAction) {\n if (this.status === 'BLOCKED') {\n if (this.queue.size() > MAX_OOO_DELTA_COUNT) {\n this.triggerSync('queue too big, blocked on out-of-order delta');\n } else {\n this.processDeltaEvent();\n }\n } else if (this.status === 'IDLE') {\n // Update status, ensure we only process one event at a time.\n this.status = 'WORKING';\n\n this.processDeltaEvent();\n }\n }\n }\n\n /**\n * Appends new data onto a string of existing data.\n * @param {string} newData\n * @param {string} oldData\n * @returns {string}\n */\n static packComparisonResult(newData: string, oldData: string) {\n return `${newData}:${oldData}`;\n }\n\n /**\n * Pause locus processing\n * @returns {undefined}\n */\n pause() {\n this.status = 'PAUSED';\n LoggerProxy.logger.info('Locus-info:parser#pause --> Locus parser paused.');\n }\n\n /**\n * Triggers a sync with Locus\n *\n * @param {string} reason used just for logging\n * @returns {undefined}\n */\n private triggerSync(reason: string) {\n LoggerProxy.logger.info(`Locus-info:parser#triggerSync --> doing sync, reason: ${reason}`);\n this.stopSyncTimer();\n this.pause();\n this.onDeltaAction(Parser.loci.DESYNC, this.workingCopy);\n }\n\n /**\n * Starts a timer with a random delay. When that timer expires we will do a sync.\n *\n * The main purpose of this timer is to handle a case when we get some out-of-order deltas,\n * so we start waiting to receive the missing delta. If that delta never arrives, this timer\n * will trigger a sync with Locus.\n *\n * @returns {undefined}\n */\n private startSyncTimer() {\n if (this.syncTimer === undefined) {\n const timeout = OOO_DELTA_WAIT_TIME + Math.random() * OOO_DELTA_WAIT_TIME_RANDOM_DELAY;\n\n this.syncTimer = setTimeout(() => {\n this.syncTimer = undefined;\n this.triggerSync('timer expired, blocked on out-of-order delta');\n }, timeout);\n }\n }\n\n /**\n * Stops the timer for triggering a sync\n *\n * @returns {undefined}\n */\n private stopSyncTimer() {\n if (this.syncTimer !== undefined) {\n clearTimeout(this.syncTimer);\n this.syncTimer = undefined;\n }\n }\n\n /**\n * Processes next locus delta in the queue,\n * continues until the queue is empty\n * or cleared.\n * @returns {undefined}\n */\n processDeltaEvent() {\n const {DESYNC, USE_INCOMING, WAIT, LOCUS_URL_CHANGED} = Parser.loci;\n const {extractComparisonState: extract} = Parser;\n const newLoci = this.queue.dequeue();\n\n if (!this.isValidLocus(newLoci)) {\n this.nextEvent();\n\n return;\n }\n\n const result = Parser.compare(this.workingCopy, newLoci);\n const lociComparison = extract(result);\n\n // limited debugging, use chrome extension\n // for full debugging.\n LoggerProxy.logger.debug(`Locus-info:parser#processDeltaEvent --> Locus Debug: ${result}`);\n\n let needToWait = false;\n\n switch (lociComparison) {\n case DESYNC:\n // wait for desync response\n this.pause();\n break;\n\n case USE_INCOMING:\n case LOCUS_URL_CHANGED:\n // update working copy for future comparisons.\n // Note: The working copy of parser gets updated in .onFullLocus()\n // and here when USE_INCOMING or LOCUS_URL_CHANGED locus.\n this.workingCopy = newLoci;\n break;\n\n case WAIT:\n // we've taken newLoci from the front of the queue, so put it back there as we have to wait\n // for the one that should be in front of it, before we can process it\n this.queue.enqueue(newLoci);\n needToWait = true;\n break;\n\n default:\n break;\n }\n\n if (needToWait) {\n this.status = 'BLOCKED';\n this.startSyncTimer();\n } else {\n this.stopSyncTimer();\n\n if (this.status === 'BLOCKED') {\n // we are not blocked anymore\n this.status = 'WORKING';\n\n LoggerProxy.logger.info(\n `Locus-info:parser#processDeltaEvent --> received delta that we were waiting for ${Parser.locus2string(\n newLoci\n )}, not blocked anymore`\n );\n }\n }\n\n if (this.onDeltaAction) {\n LoggerProxy.logger.info(\n `Locus-info:parser#processDeltaEvent --> Locus Delta ${Parser.locus2string(\n newLoci\n )}, Action: ${lociComparison}`\n );\n\n try {\n this.onDeltaAction(lociComparison, newLoci);\n } catch (error) {\n LoggerProxy.logger.error(\n 'Locus-info:parser#processDeltaEvent --> Error in onDeltaAction',\n error\n );\n }\n }\n\n this.nextEvent();\n }\n\n /**\n * Resume from a paused state\n * @returns {undefined}\n */\n resume() {\n LoggerProxy.logger.info('Locus-info:parser#resume --> Locus parser resumed.');\n this.status = 'WORKING';\n this.nextEvent();\n }\n\n /**\n * Gets related debug info for given error code\n * @param {string} debugCode Debug code\n * @param {string} comparison Locus comparison string\n * @returns {object} Debug message\n */\n static getDebugMessage(debugCode: string, comparison: string) {\n // removes extra spaces from multiline string\n const mStr = (strings) => strings.join('').replace(/\\s{2,}/g, ' ');\n\n const resolutionMap = {\n EQ: `${Parser.loci.LT}: is equal (current == incoming).`,\n LT: `${Parser.loci.LT}: choose right side (incoming).`,\n GT: `${Parser.loci.GT}: choose left side (current).`,\n };\n\n const debugMap = {\n SO001: {\n title: 'checkSequenceOverlap-001',\n description: mStr`Occurs if earliest working copy sequence is more \\\n recent than last incoming sequence.`,\n logic: 'current.min > incoming.max',\n },\n\n SO002: {\n title: 'checkSequenceOverlap-002',\n description: mStr`Occurs if last working copy sequence is before the \\\n earliest incoming sequence.`,\n logic: 'current.max < incoming.min',\n },\n\n UR001: {\n title: 'checkUnequalRanges-001',\n description: mStr`Occurs if there are no unique values for both loci, \\\n and the current working copy loci has a larger range.`,\n logic: 'currentTotalRange > incomingTotalRange',\n },\n\n UR002: {\n title: 'checkUnequalRanges-002',\n description: mStr`Occurs if there are no unique values for both loci, \\\n and the incoming delta loci has a larger range.`,\n logic: 'currentTotalRange < incomingTotalRange',\n },\n\n UR003: {\n title: 'checkUnequalRanges-003',\n description: mStr`Occurs if there are no unique values for both loci, \\\n and with ranges either absent or of the same size, the sequences \\\n are considered equal.`,\n logic: 'currentTotalRange == incomingTotalRange',\n },\n\n UE001: {\n title: 'checkForUniqueEntries-001',\n description: mStr`Occurs if current loci has unique entries and \\\n incoming does not. Entries are considered unique if they \\\n do not overlap with other Loci sequences or range values.`,\n logic: 'currentIsUnique && !incomingIsUnique',\n },\n\n UE002: {\n title: 'checkForUniqueEntries-002',\n description: mStr`Occurs if current has no unique entries but \\\n incoming does. Entries are considered unique if they \\\n do not overlap with other Loci sequences or range values.`,\n logic: '!currentIsUnique && incomingIsUnique',\n },\n\n OOS001: {\n title: 'checkIfOutOfSync-001',\n description: mStr`Occurs if neither sequence has a range, or \\\n if the current loci unique entries overlap the total range of the \\\n incoming sequence, or if the incoming unique entries overlap \\\n the total range of current sequence.`,\n logic: 'neitherSeqHasRange || currentUniqOverlap || incomingUniqOverlap',\n },\n\n OOS002: {\n title: 'checkIfOutOfSync-002',\n description: mStr`Occurs if the minimum value from sequences that are \\\n unique to the current loci is greater than the minimum value from \\\n sequences that are unique to the incoming loci.`,\n logic: 'currentUniqueMin > incomingUniqueMin',\n },\n\n OOS003: {\n title: 'checkIfOutOfSync-003',\n description: mStr`Occurs if none of the comparison rules applied. \\\n It is a catch all.`,\n logic: 'else (catch all)',\n },\n };\n\n const debugObj = debugMap[debugCode];\n\n debugObj.title = `Debug: ${debugObj.title}`;\n debugObj.resolution = resolutionMap[comparison];\n\n return debugObj;\n }\n}\n"],"mappings":"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"}
|
1
|
+
{"version":3,"names":["_lodash","require","_queue","_interopRequireDefault","_loggerProxy","_metrics","_constants","_templateObject","_templateObject2","_templateObject3","_templateObject4","_templateObject5","_templateObject6","_templateObject7","_templateObject8","_templateObject9","_templateObject10","MAX_OOO_DELTA_COUNT","OOO_DELTA_WAIT_TIME","OOO_DELTA_WAIT_TIME_RANDOM_DELAY","Parser","exports","default","_classCallCheck2","_defineProperty2","deltaCompareFunc","left","right","_Parser$loci","loci","LT","GT","extract","extractComparisonState","isSequenceEmpty","result","compareSequence","baseSequence","queue","SortedQueue","status","onDeltaAction","workingCopy","syncTimer","undefined","_createClass2","key","value","isNewFullLocus","incomingFullDto","isLoci","LoggerProxy","logger","info","comparisonResult","compareFullDtoSequence","USE_INCOMING","isValidLocus","newLoci","isValid","nextEvent","size","processDeltaEvent","action","locus","onDeltaEvent","enqueue","triggerSync","pause","reason","concat","stopSyncTimer","DESYNC","startSyncTimer","_this","timeout","Math","random","setTimeout","clearTimeout","_Parser$loci2","WAIT","LOCUS_URL_CHANGED","dequeue","compare","lociComparison","debug","needToWait","locus2string","error","resume","_locus$sequence","sequence","entries","length","at","checkSequenceOverlap","current","incoming","comparison","min","max","checkUnequalRanges","currentIsNotUnique","unique","incomingIsNotUnique","currentTotalRange","end","incomingTotalRange","EQ","checkForUniqueEntries","currentIsUnique","incomingIsUnique","checkIfOutOfSync","currentUniqueMin","incomingUniqueMin","currentHasNoRange","start","incomingHasNoRange","neitherSeqHasRange","hasUniqOverlap","list","some","seq","currentUniqOverlap","incomingUniqOverlap","debugInfo","pack","packComparisonResult","compareDelta","compareToAction","_Parser$loci3","url","Metrics","sendBehavioralMetric","BEHAVIORAL_METRICS","LOCUS_DELTA_OUT_OF_ORDER","stack","Error","slice","USE_CURRENT","local","getMetaData","delta","getUniqueSequences","rules","_i","_rules","rule","ERROR","_Parser$loci4","lociComparisonResult","split","first","last","rangeStart","rangeEnd","baseLoci","otherLoci","diff","difference","getNumbersOutOfRange","output","filter","num","sort","a","b","_sequence$entries","hasEmptyEntries","hasEmptyRange","hasProp","prop","Object","prototype","hasOwnProperty","call","newData","oldData","getDebugMessage","debugCode","mStr","strings","join","replace","resolutionMap","debugMap","SO001","title","description","_taggedTemplateLiteral2","logic","SO002","UR001","UR002","UR003","UE001","UE002","OOS001","OOS002","OOS003","debugObj","resolution"],"sources":["parser.ts"],"sourcesContent":["import {difference} from 'lodash';\n\nimport SortedQueue from '../common/queue';\nimport LoggerProxy from '../common/logs/logger-proxy';\n\nimport Metrics from '../metrics';\nimport BEHAVIORAL_METRICS from '../metrics/constants';\n\nconst MAX_OOO_DELTA_COUNT = 5; // when we receive an out-of-order delta and the queue builds up to MAX_OOO_DELTA_COUNT, we do a sync with Locus\nconst OOO_DELTA_WAIT_TIME = 10000; // [ms] minimum wait time before we do a sync if we get out-of-order deltas\nconst OOO_DELTA_WAIT_TIME_RANDOM_DELAY = 5000; // [ms] max random delay added to OOO_DELTA_WAIT_TIME\n\ntype LocusDeltaDto = {\n url: string;\n baseSequence: {\n rangeStart: number;\n rangeEnd: number;\n entries: number[];\n };\n sequence: {\n rangeStart: number;\n rangeEnd: number;\n entries: number[];\n };\n syncUrl: string;\n};\n\n/**\n * Locus Delta Parser\n * @private\n * https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Delta-Events\n */\nexport default class Parser {\n // processing status\n status:\n | 'IDLE' // not doing anything\n | 'PAUSED' // paused, because we are doing a sync\n | 'WORKING' // processing a delta event\n | 'BLOCKED'; // received an out-of-order delta, so waiting for the missing one\n\n // loci comparison states\n static loci = {\n EQ: 'EQUAL',\n GT: 'GREATER_THAN',\n LT: 'LESS_THAN',\n DESYNC: 'DESYNC',\n USE_INCOMING: 'USE_INCOMING',\n USE_CURRENT: 'USE_CURRENT',\n WAIT: 'WAIT',\n ERROR: 'ERROR',\n LOCUS_URL_CHANGED: 'LOCUS_URL_CHANGED',\n };\n\n queue: SortedQueue<LocusDeltaDto>;\n workingCopy: any;\n syncTimer?: ReturnType<typeof setTimeout>;\n\n /**\n * @constructs Parser\n */\n constructor() {\n const deltaCompareFunc = (left: LocusDeltaDto, right: LocusDeltaDto) => {\n const {LT, GT} = Parser.loci;\n const {extractComparisonState: extract} = Parser;\n\n if (Parser.isSequenceEmpty(left)) {\n return -1;\n }\n if (Parser.isSequenceEmpty(right)) {\n return 1;\n }\n const result = extract(Parser.compareSequence(left.baseSequence, right.baseSequence));\n\n if (result === LT) {\n return -1;\n }\n if (result === GT) {\n return 1;\n }\n\n return 0;\n };\n\n this.queue = new SortedQueue<LocusDeltaDto>(deltaCompareFunc);\n this.status = 'IDLE';\n this.onDeltaAction = null;\n this.workingCopy = null;\n this.syncTimer = undefined;\n }\n\n /**\n * Returns a debug string representing a locus delta - useful for logging\n *\n * @param {LocusDeltaDto} locus Locus delta\n * @returns {string}\n */\n static locus2string(locus: LocusDeltaDto) {\n if (!locus.sequence?.entries) {\n return 'invalid';\n }\n\n return locus.sequence.entries.length ? `seq=${locus.sequence.entries.at(-1)}` : 'empty';\n }\n\n /**\n * Checks if two sequences overlap in time,\n * the sequence with the higher minimum value is greater.\n * Chooses sequence with most recent data.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static checkSequenceOverlap(current, incoming) {\n let comparison = null;\n\n // if earliest working copy sequence is more recent than last incoming sequence\n if (current.min > incoming.max) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:SO001`;\n }\n // if last working copy sequence is before the earliest incoming sequence\n else if (current.max < incoming.min) {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:SO002`;\n }\n\n // if no match above, defaults to null\n return comparison;\n }\n\n /**\n * Checks if two sequences have unequal ranges.\n * Chooses sequence with most larger range.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {object} loci comparison\n */\n static checkUnequalRanges(current, incoming) {\n let comparison = null;\n const currentIsNotUnique = current.unique.length === 0;\n const incomingIsNotUnique = incoming.unique.length === 0;\n const currentTotalRange = current.end - current.min;\n const incomingTotalRange = incoming.end - incoming.min;\n\n // no unique values for both loci\n if (currentIsNotUnique && incomingIsNotUnique) {\n // current working copy loci has a larger range\n if (currentTotalRange > incomingTotalRange) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:UR001`;\n }\n // incoming delta loci has a larger range\n else if (currentTotalRange < incomingTotalRange) {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:UR002`;\n } else {\n // with no unique entries and with ranges either absent or\n // of the same size, the sequences are considered equal.\n comparison = `${Parser.loci.EQ}:UR003`;\n }\n }\n\n return comparison;\n }\n\n /**\n * Checks if either sequences has unique entries.\n * Entries are considered unique if they do not overlap\n * with other Loci sequences or range values.\n * Chooses sequence with the unique entries.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static checkForUniqueEntries(current, incoming) {\n let comparison = null;\n const currentIsUnique = current.unique.length > 0;\n const incomingIsUnique = incoming.unique.length > 0;\n\n // current has unique entries and incoming does not\n if (currentIsUnique && !incomingIsUnique) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:UE001`;\n }\n // current has no unique entries but incoming does\n else if (!currentIsUnique && incomingIsUnique) {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:UE002`;\n }\n\n return comparison;\n }\n\n /**\n * Checks both Locus Delta objects to see if they are\n * out of sync with one another. If so sends a DESYNC\n * request to the server.\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static checkIfOutOfSync(current, incoming) {\n let comparison = null;\n const currentUniqueMin = current.unique[0];\n const incomingUniqueMin = incoming.unique[0];\n\n const currentHasNoRange = !current.start && !current.end;\n const incomingHasNoRange = !incoming.start && !incoming.end;\n const neitherSeqHasRange = currentHasNoRange && incomingHasNoRange;\n\n const hasUniqOverlap = (list, min, max) => list.some((seq) => min < seq && seq < max);\n // current unique entries overlap the total range of incoming\n const currentUniqOverlap = hasUniqOverlap(current.unique, incoming.min, incoming.max);\n // vice-versa, incoming unique entries overlap the total range of current\n const incomingUniqOverlap = hasUniqOverlap(incoming.unique, current.min, current.max);\n\n if (neitherSeqHasRange || currentUniqOverlap || incomingUniqOverlap) {\n // outputs string indicating which condition occurred. ex: 0,1,0\n const debugInfo = `${+neitherSeqHasRange},${+currentUniqOverlap},${+incomingUniqOverlap}`;\n\n // send DESYNC to server\n comparison = `${Parser.loci.DESYNC}:OOS001:${debugInfo}`;\n } else if (currentUniqueMin > incomingUniqueMin) {\n // choose left side (current)\n comparison = `${Parser.loci.GT}:OOS002`;\n } else {\n // choose right side (incoming)\n comparison = `${Parser.loci.LT}:OOS003`;\n }\n\n return comparison;\n }\n\n /**\n * Compares two loci to determine which one contains the most recent state\n * @instance\n * @memberof Locus\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @returns {string} loci comparison state\n */\n static compare(current, incoming) {\n const {isSequenceEmpty} = Parser;\n const {extractComparisonState: extract} = Parser;\n const {packComparisonResult: pack} = Parser;\n\n if (isSequenceEmpty(current) || isSequenceEmpty(incoming)) {\n return pack(Parser.loci.USE_INCOMING, 'C001');\n }\n\n if (incoming.baseSequence) {\n return pack(Parser.compareDelta(current, incoming), 'C002');\n }\n\n const result = Parser.compareSequence(current.sequence, incoming.sequence);\n const action = Parser.compareToAction(extract(result));\n\n return pack(action, result);\n }\n\n /**\n * Compares two loci sequences (with delta params) and indicates what action\n * to take.\n * @instance\n * @memberof Locus\n * @param {Types~Locus} current\n * @param {Types~Locus} incoming\n * @private\n * @returns {string} loci comparison state\n */\n private static compareDelta(current, incoming) {\n const {LT, GT, EQ, DESYNC, USE_INCOMING, WAIT, LOCUS_URL_CHANGED} = Parser.loci;\n\n const {extractComparisonState: extract} = Parser;\n const {packComparisonResult: pack} = Parser;\n\n const result = Parser.compareSequence(current.sequence, incoming.sequence);\n let comparison = extract(result);\n\n if (comparison !== LT) {\n return pack(Parser.compareToAction(comparison), result);\n }\n\n if (incoming.url !== current.url) {\n // when moving to/from a breakout session, the locus URL will change and also\n // the baseSequence, making incoming and current incomparable, so use a\n // unique comparison state\n return pack(LOCUS_URL_CHANGED, result);\n }\n\n comparison = Parser.compareSequence(current.sequence, incoming.baseSequence);\n\n switch (extract(comparison)) {\n case GT:\n case EQ:\n comparison = USE_INCOMING;\n break;\n\n case LT:\n if (extract(Parser.compareSequence(incoming.baseSequence, incoming.sequence)) === EQ) {\n // special case where Locus sends a delta with baseSequence === sequence to trigger a sync,\n // because the delta event is too large to be sent over mercury connection\n comparison = DESYNC;\n } else {\n // the incoming locus has baseSequence from the future, so it is out-of-order,\n // we are missing 1 or more locus that should be in front of it, we need to wait for it\n comparison = WAIT;\n\n Metrics.sendBehavioralMetric(BEHAVIORAL_METRICS.LOCUS_DELTA_OUT_OF_ORDER, {\n stack: new Error().stack,\n });\n }\n break;\n default:\n comparison = DESYNC;\n }\n\n return pack(comparison, result);\n }\n\n /**\n * Compares Locus sequences - it should be called only for full Locus DTOs, not deltas\n *\n * @param {Types~Locus} current Current working copy\n * @param {Types~Locus} incomingFullDto New Full Locus DTO\n * @returns {string} either Parser.loci.USE_INCOMING or Parser.loci.USE_CURRENT\n */\n static compareFullDtoSequence(current, incomingFullDto) {\n if (Parser.isSequenceEmpty(current) || Parser.isSequenceEmpty(incomingFullDto)) {\n return Parser.loci.USE_INCOMING;\n }\n\n // the sequence.entries list will always contain at least 1 entry\n // https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Sequence-Comparison-Algorithm\n\n return incomingFullDto.sequence.entries.slice(-1)[0] > current.sequence.entries.slice(-1)[0]\n ? Parser.loci.USE_INCOMING\n : Parser.loci.USE_CURRENT;\n }\n\n /**\n * Returns true if the incoming full locus DTO is newer than the current working copy\n *\n * @param {Types~Locus} incomingFullDto New Full Locus DTO\n * @returns {string} either Parser.loci.USE_INCOMING or Parser.loci.USE_CURRENT\n */\n isNewFullLocus(incomingFullDto) {\n if (!Parser.isLoci(incomingFullDto)) {\n LoggerProxy.logger.info('Locus-info:parser#isNewFullLocus --> Ignoring non-locus object.');\n\n return false;\n }\n\n if (!this.workingCopy) {\n // we don't have a working copy yet, so any full locus is better than nothing\n return true;\n }\n\n const comparisonResult = Parser.compareFullDtoSequence(this.workingCopy, incomingFullDto);\n\n return comparisonResult === Parser.loci.USE_INCOMING;\n }\n\n /**\n * Compares Locus sequences\n * @param {Types~Locus} current Current working copy\n * @param {Types~Locus} incoming New Locus delta\n * @returns {string}\n */\n static compareSequence(current, incoming) {\n // Locus sequence comparison rules in order of priority.\n // https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Sequence-Comparison-Algorithm\n\n const local: any = Parser.getMetaData(current);\n const delta: any = Parser.getMetaData(incoming);\n\n // update loci metadata\n local.unique = Parser.getUniqueSequences(local, delta);\n delta.unique = Parser.getUniqueSequences(delta, local);\n\n // Locus sequence comparison rules\n // order matters\n const rules = [\n Parser.checkSequenceOverlap,\n Parser.checkUnequalRanges,\n Parser.checkForUniqueEntries,\n Parser.checkIfOutOfSync,\n ];\n\n for (const rule of rules) {\n // Rule only returns a value if the rule applies,\n // otherwise returns null.\n const result = rule(local, delta);\n\n if (result) {\n return result;\n }\n }\n\n // error, none of rules above applied\n // should never get here as last rule\n // should be catch all.\n return Parser.loci.ERROR;\n }\n\n /**\n * Transates the result of a sequence comparison into an intended behavior\n * @param {string} result\n * @returns {string} Locus comparison action\n */\n static compareToAction(result: string) {\n const {DESYNC, EQ, ERROR, GT, LT, USE_CURRENT, USE_INCOMING} = Parser.loci;\n\n let action = ERROR;\n\n switch (result) {\n case EQ:\n case GT:\n action = USE_CURRENT;\n break;\n case LT:\n action = USE_INCOMING;\n break;\n case DESYNC:\n action = DESYNC;\n break;\n default:\n LoggerProxy.logger.info(\n `Locus-info:parser#compareToAction --> Error: ${result} is not a recognized sequence comparison result.`\n );\n }\n\n return action;\n }\n\n /**\n * Extracts a loci comparison from a string of data.\n * @param {string} lociComparisonResult Comparison result with extra data\n * @returns {string} Comparison of EQ, LT, GT, or DESYNC.\n */\n static extractComparisonState(lociComparisonResult: string) {\n return lociComparisonResult.split(':')[0];\n }\n\n /**\n * @typedef {object} LociMetadata\n * @property {number} start - Starting sequence number\n * @property {number} end - Ending sequence number\n * @property {number} first - First sequence number\n * @property {number} last - Last sequence number\n * @property {number} min - Minimum sequence number\n * @property {number} max - Maximum sequence number\n * @property {number} entries - Loci sequence entries\n */\n\n /**\n * Metadata for Locus delta\n * @param {Array.<number>} sequence Locus delta sequence\n * @returns {LociMetadata} Locus Delta Metadata\n */\n static getMetaData(sequence: any) {\n const {entries} = sequence;\n const first = entries[0];\n const last = entries.slice(-1)[0];\n\n // rangeStart or rangeEnd is 0 if a range doesn't exist\n const start = sequence.rangeStart;\n const end = sequence.rangeEnd;\n\n // sequence data\n return {\n start,\n end,\n first,\n last,\n // Rule is: rangeStart <= rangeEnd <= min(entries)\n min: start || first,\n // Grab last entry if exist else default to rangeEnd\n max: last || end,\n // keep reference to actual sequence entries\n entries,\n };\n }\n\n /**\n * Compares two Locus delta objects and notes unique\n * values contained within baseLoci.\n * @param {LociMetadata} baseLoci\n * @param {LociMetadata} otherLoci\n * @returns {Array.<number>} List of unique sequences\n */\n static getUniqueSequences(baseLoci: any, otherLoci: any) {\n const diff: any = difference(baseLoci.entries, otherLoci.entries);\n\n const {start, end} = otherLoci;\n\n return Parser.getNumbersOutOfRange(diff, start, end);\n }\n\n /**\n * Returns an array of numbers outside of a given range.\n * @param {Array.<number>} list Array to filter\n * @param {number} rangeStart Start of range\n * @param {number} rangeEnd End of range\n * @returns {Array.<number>} Array of numbers sorted ASC\n */\n static getNumbersOutOfRange(list: Array<number>, rangeStart: number, rangeEnd: number) {\n // Collect all numbers if number is outside of specified range\n const output = list.filter((num) => num < rangeStart || num > rangeEnd);\n\n // sort ascending\n return output.sort((a, b) => a - b);\n }\n\n /**\n * Checks if newLoci or workingCopy is invalid.\n * @param {Types~Locus} newLoci\n * @returns {boolean}\n */\n isValidLocus(newLoci) {\n let isValid = false;\n const {isLoci} = Parser;\n\n // one or both objects are not locus delta events\n if (!isLoci(this.workingCopy) || !isLoci(newLoci)) {\n LoggerProxy.logger.info(\n 'Locus-info:parser#processDeltaEvent --> Ignoring non-locus object. workingCopy:',\n this.workingCopy,\n 'newLoci:',\n newLoci\n );\n } else {\n isValid = true;\n }\n\n return isValid;\n }\n\n /**\n * Determines if a paricular locus's sequence is empty\n * @param {Types~Locus} locus\n * @returns {bool}\n */\n static isSequenceEmpty(locus) {\n const {sequence} = locus;\n const hasEmptyEntries = !sequence.entries?.length;\n const hasEmptyRange = sequence.rangeStart === 0 && sequence.rangeEnd === 0;\n\n return hasEmptyEntries && hasEmptyRange;\n }\n\n /**\n * Determines if an object has basic\n * structure of a locus object.\n * @param {Types~Locus} loci\n * @returns {boolean}\n */\n static isLoci(loci) {\n if (!loci || !loci.sequence) {\n return false;\n }\n const hasProp = (prop) => Object.prototype.hasOwnProperty.call(loci.sequence, prop);\n\n if (hasProp('rangeStart') && hasProp('rangeEnd')) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Processes next event in queue,\n * if queue is empty sets status to idle.\n * @returns {undefined}\n */\n nextEvent() {\n if (this.status === 'PAUSED') {\n LoggerProxy.logger.info('Locus-info:parser#nextEvent --> Locus parser paused.');\n\n return;\n }\n\n if (this.status === 'BLOCKED') {\n LoggerProxy.logger.info(\n 'Locus-info:parser#nextEvent --> Locus parser blocked by out-of-order delta.'\n );\n\n return;\n }\n\n // continue processing until queue is empty\n if (this.queue.size() > 0) {\n this.processDeltaEvent();\n } else {\n this.status = 'IDLE';\n }\n }\n\n /**\n * Function handler for delta actions,\n * is set by instance callee.\n * @param {string} action Locus delta action\n * @param {Types~Locus} locus Locus delta\n * @returns {undefined}\n */\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n onDeltaAction(action: string, locus) {}\n\n /**\n * Event handler for locus delta events\n * @param {Types~Locus} loci Locus Delta\n * @returns {undefined}\n */\n onDeltaEvent(loci) {\n // enqueue the new loci\n this.queue.enqueue(loci);\n\n if (this.onDeltaAction) {\n if (this.status === 'BLOCKED') {\n if (this.queue.size() > MAX_OOO_DELTA_COUNT) {\n this.triggerSync('queue too big, blocked on out-of-order delta');\n } else {\n this.processDeltaEvent();\n }\n } else if (this.status === 'IDLE') {\n // Update status, ensure we only process one event at a time.\n this.status = 'WORKING';\n\n this.processDeltaEvent();\n }\n }\n }\n\n /**\n * Appends new data onto a string of existing data.\n * @param {string} newData\n * @param {string} oldData\n * @returns {string}\n */\n static packComparisonResult(newData: string, oldData: string) {\n return `${newData}:${oldData}`;\n }\n\n /**\n * Pause locus processing\n * @returns {undefined}\n */\n pause() {\n this.status = 'PAUSED';\n LoggerProxy.logger.info('Locus-info:parser#pause --> Locus parser paused.');\n }\n\n /**\n * Triggers a sync with Locus\n *\n * @param {string} reason used just for logging\n * @returns {undefined}\n */\n private triggerSync(reason: string) {\n LoggerProxy.logger.info(`Locus-info:parser#triggerSync --> doing sync, reason: ${reason}`);\n this.stopSyncTimer();\n this.pause();\n this.onDeltaAction(Parser.loci.DESYNC, this.workingCopy);\n }\n\n /**\n * Starts a timer with a random delay. When that timer expires we will do a sync.\n *\n * The main purpose of this timer is to handle a case when we get some out-of-order deltas,\n * so we start waiting to receive the missing delta. If that delta never arrives, this timer\n * will trigger a sync with Locus.\n *\n * @returns {undefined}\n */\n private startSyncTimer() {\n if (this.syncTimer === undefined) {\n const timeout = OOO_DELTA_WAIT_TIME + Math.random() * OOO_DELTA_WAIT_TIME_RANDOM_DELAY;\n\n this.syncTimer = setTimeout(() => {\n this.syncTimer = undefined;\n this.triggerSync('timer expired, blocked on out-of-order delta');\n }, timeout);\n }\n }\n\n /**\n * Stops the timer for triggering a sync\n *\n * @returns {undefined}\n */\n private stopSyncTimer() {\n if (this.syncTimer !== undefined) {\n clearTimeout(this.syncTimer);\n this.syncTimer = undefined;\n }\n }\n\n /**\n * Processes next locus delta in the queue,\n * continues until the queue is empty\n * or cleared.\n * @returns {undefined}\n */\n processDeltaEvent() {\n const {DESYNC, USE_INCOMING, WAIT, LOCUS_URL_CHANGED} = Parser.loci;\n const {extractComparisonState: extract} = Parser;\n const newLoci = this.queue.dequeue();\n\n if (!this.isValidLocus(newLoci)) {\n this.nextEvent();\n\n return;\n }\n\n const result = Parser.compare(this.workingCopy, newLoci);\n const lociComparison = extract(result);\n\n // limited debugging, use chrome extension\n // for full debugging.\n LoggerProxy.logger.debug(`Locus-info:parser#processDeltaEvent --> Locus Debug: ${result}`);\n\n let needToWait = false;\n\n switch (lociComparison) {\n case DESYNC:\n // wait for desync response\n this.pause();\n break;\n\n case USE_INCOMING:\n // update working copy for future comparisons.\n // Note: The working copy of parser gets updated in .onFullLocus()\n // and here when USE_INCOMING or LOCUS_URL_CHANGED locus.\n this.workingCopy = newLoci;\n break;\n\n case LOCUS_URL_CHANGED:\n // clear the working copy completely, do a full locus sync\n this.workingCopy = null;\n break;\n\n case WAIT:\n // we've taken newLoci from the front of the queue, so put it back there as we have to wait\n // for the one that should be in front of it, before we can process it\n this.queue.enqueue(newLoci);\n needToWait = true;\n break;\n\n default:\n break;\n }\n\n if (needToWait) {\n this.status = 'BLOCKED';\n this.startSyncTimer();\n } else {\n this.stopSyncTimer();\n\n if (this.status === 'BLOCKED') {\n // we are not blocked anymore\n this.status = 'WORKING';\n\n LoggerProxy.logger.info(\n `Locus-info:parser#processDeltaEvent --> received delta that we were waiting for ${Parser.locus2string(\n newLoci\n )}, not blocked anymore`\n );\n }\n }\n\n if (this.onDeltaAction) {\n LoggerProxy.logger.info(\n `Locus-info:parser#processDeltaEvent --> Locus Delta ${Parser.locus2string(\n newLoci\n )}, Action: ${lociComparison}`\n );\n\n try {\n this.onDeltaAction(lociComparison, newLoci);\n } catch (error) {\n LoggerProxy.logger.error(\n 'Locus-info:parser#processDeltaEvent --> Error in onDeltaAction',\n error\n );\n }\n }\n\n this.nextEvent();\n }\n\n /**\n * Resume from a paused state\n * @returns {undefined}\n */\n resume() {\n LoggerProxy.logger.info('Locus-info:parser#resume --> Locus parser resumed.');\n this.status = 'WORKING';\n this.nextEvent();\n }\n\n /**\n * Gets related debug info for given error code\n * @param {string} debugCode Debug code\n * @param {string} comparison Locus comparison string\n * @returns {object} Debug message\n */\n static getDebugMessage(debugCode: string, comparison: string) {\n // removes extra spaces from multiline string\n const mStr = (strings) => strings.join('').replace(/\\s{2,}/g, ' ');\n\n const resolutionMap = {\n EQ: `${Parser.loci.LT}: is equal (current == incoming).`,\n LT: `${Parser.loci.LT}: choose right side (incoming).`,\n GT: `${Parser.loci.GT}: choose left side (current).`,\n };\n\n const debugMap = {\n SO001: {\n title: 'checkSequenceOverlap-001',\n description: mStr`Occurs if earliest working copy sequence is more \\\n recent than last incoming sequence.`,\n logic: 'current.min > incoming.max',\n },\n\n SO002: {\n title: 'checkSequenceOverlap-002',\n description: mStr`Occurs if last working copy sequence is before the \\\n earliest incoming sequence.`,\n logic: 'current.max < incoming.min',\n },\n\n UR001: {\n title: 'checkUnequalRanges-001',\n description: mStr`Occurs if there are no unique values for both loci, \\\n and the current working copy loci has a larger range.`,\n logic: 'currentTotalRange > incomingTotalRange',\n },\n\n UR002: {\n title: 'checkUnequalRanges-002',\n description: mStr`Occurs if there are no unique values for both loci, \\\n and the incoming delta loci has a larger range.`,\n logic: 'currentTotalRange < incomingTotalRange',\n },\n\n UR003: {\n title: 'checkUnequalRanges-003',\n description: mStr`Occurs if there are no unique values for both loci, \\\n and with ranges either absent or of the same size, the sequences \\\n are considered equal.`,\n logic: 'currentTotalRange == incomingTotalRange',\n },\n\n UE001: {\n title: 'checkForUniqueEntries-001',\n description: mStr`Occurs if current loci has unique entries and \\\n incoming does not. Entries are considered unique if they \\\n do not overlap with other Loci sequences or range values.`,\n logic: 'currentIsUnique && !incomingIsUnique',\n },\n\n UE002: {\n title: 'checkForUniqueEntries-002',\n description: mStr`Occurs if current has no unique entries but \\\n incoming does. Entries are considered unique if they \\\n do not overlap with other Loci sequences or range values.`,\n logic: '!currentIsUnique && incomingIsUnique',\n },\n\n OOS001: {\n title: 'checkIfOutOfSync-001',\n description: mStr`Occurs if neither sequence has a range, or \\\n if the current loci unique entries overlap the total range of the \\\n incoming sequence, or if the incoming unique entries overlap \\\n the total range of current sequence.`,\n logic: 'neitherSeqHasRange || currentUniqOverlap || incomingUniqOverlap',\n },\n\n OOS002: {\n title: 'checkIfOutOfSync-002',\n description: mStr`Occurs if the minimum value from sequences that are \\\n unique to the current loci is greater than the minimum value from \\\n sequences that are unique to the incoming loci.`,\n logic: 'currentUniqueMin > incomingUniqueMin',\n },\n\n OOS003: {\n title: 'checkIfOutOfSync-003',\n description: mStr`Occurs if none of the comparison rules applied. \\\n It is a catch all.`,\n logic: 'else (catch all)',\n },\n };\n\n const debugObj = debugMap[debugCode];\n\n debugObj.title = `Debug: ${debugObj.title}`;\n debugObj.resolution = resolutionMap[comparison];\n\n return debugObj;\n }\n}\n"],"mappings":"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"}
|
package/dist/meeting/index.js
CHANGED
@@ -1072,10 +1072,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
1072
1072
|
}
|
1073
1073
|
}
|
1074
1074
|
|
1075
|
-
// Count members that are in the meeting.
|
1075
|
+
// Count members that are in the meeting or in the lobby.
|
1076
1076
|
var members = _this.getMembers().membersCollection.members;
|
1077
1077
|
event.data.intervalMetadata.meetingUserCount = (0, _values.default)(members).filter(function (member) {
|
1078
|
-
return member.isInMeeting;
|
1078
|
+
return member.isInMeeting || member.isInLobby;
|
1079
1079
|
}).length;
|
1080
1080
|
|
1081
1081
|
// @ts-ignore
|
@@ -3695,7 +3695,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3695
3695
|
}
|
3696
3696
|
_loggerProxy.default.logger.info("Meeting:index#setUpLocusInfoMediaInactiveListener --> this.shareStatus=".concat(_this15.shareStatus, " newShareStatus=").concat(newShareStatus));
|
3697
3697
|
if (!(newShareStatus !== _this15.shareStatus)) {
|
3698
|
-
_context8.next =
|
3698
|
+
_context8.next = 48;
|
3699
3699
|
break;
|
3700
3700
|
}
|
3701
3701
|
oldShareStatus = _this15.shareStatus; // update our state before we send out any notifications
|
@@ -3703,14 +3703,14 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3703
3703
|
|
3704
3704
|
// send out "stop" notifications for the old state
|
3705
3705
|
_context8.t0 = oldShareStatus;
|
3706
|
-
_context8.next = _context8.t0 === _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE ? 15 : _context8.t0 === _constants.SHARE_STATUS.LOCAL_SHARE_ACTIVE ? 17 : _context8.t0 === _constants.SHARE_STATUS.WHITEBOARD_SHARE_ACTIVE ? 19 : _context8.t0 === _constants.SHARE_STATUS.NO_SHARE ?
|
3706
|
+
_context8.next = _context8.t0 === _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE ? 15 : _context8.t0 === _constants.SHARE_STATUS.LOCAL_SHARE_ACTIVE ? 17 : _context8.t0 === _constants.SHARE_STATUS.WHITEBOARD_SHARE_ACTIVE ? 19 : _context8.t0 === _constants.SHARE_STATUS.NO_SHARE ? 23 : 24;
|
3707
3707
|
break;
|
3708
3708
|
case 15:
|
3709
3709
|
_triggerProxy.default.trigger(_this15, {
|
3710
3710
|
file: 'meetings/index',
|
3711
3711
|
function: 'remoteShare'
|
3712
3712
|
}, _constants.EVENT_TRIGGERS.MEETING_STOPPED_SHARING_REMOTE);
|
3713
|
-
return _context8.abrupt("break",
|
3713
|
+
return _context8.abrupt("break", 25);
|
3714
3714
|
case 17:
|
3715
3715
|
_triggerProxy.default.trigger(_this15, {
|
3716
3716
|
file: 'meeting/index',
|
@@ -3718,22 +3718,39 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3718
3718
|
}, _constants.EVENT_TRIGGERS.MEETING_STOPPED_SHARING_LOCAL, {
|
3719
3719
|
reason: _constants.SHARE_STOPPED_REASON.SELF_STOPPED
|
3720
3720
|
});
|
3721
|
-
return _context8.abrupt("break",
|
3721
|
+
return _context8.abrupt("break", 25);
|
3722
3722
|
case 19:
|
3723
3723
|
_triggerProxy.default.trigger(_this15, {
|
3724
3724
|
file: 'meeting/index',
|
3725
3725
|
function: 'stopWhiteboardShare'
|
3726
3726
|
}, _constants.EVENT_TRIGGERS.MEETING_STOPPED_SHARING_WHITEBOARD);
|
3727
|
-
|
3728
|
-
|
3729
|
-
|
3730
|
-
|
3731
|
-
|
3727
|
+
// @ts-ignore
|
3728
|
+
_this15.webex.internal.newMetrics.callDiagnosticLatencies.saveTimestamp({
|
3729
|
+
key: 'internal.client.share.stopped'
|
3730
|
+
});
|
3731
|
+
// @ts-ignore
|
3732
|
+
_this15.webex.internal.newMetrics.submitClientEvent({
|
3733
|
+
name: 'client.share.stopped',
|
3734
|
+
payload: {
|
3735
|
+
mediaType: 'whiteboard',
|
3736
|
+
shareDuration:
|
3737
|
+
// @ts-ignore
|
3738
|
+
_this15.webex.internal.newMetrics.callDiagnosticLatencies.getShareDuration()
|
3739
|
+
},
|
3740
|
+
options: {
|
3741
|
+
meetingId: _this15.id
|
3742
|
+
}
|
3743
|
+
});
|
3744
|
+
return _context8.abrupt("break", 25);
|
3732
3745
|
case 23:
|
3746
|
+
return _context8.abrupt("break", 25);
|
3747
|
+
case 24:
|
3748
|
+
return _context8.abrupt("break", 25);
|
3749
|
+
case 25:
|
3733
3750
|
_context8.t1 = newShareStatus;
|
3734
|
-
_context8.next = _context8.t1 === _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE ?
|
3751
|
+
_context8.next = _context8.t1 === _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE ? 28 : _context8.t1 === _constants.SHARE_STATUS.LOCAL_SHARE_ACTIVE ? 37 : _context8.t1 === _constants.SHARE_STATUS.WHITEBOARD_SHARE_ACTIVE ? 40 : _context8.t1 === _constants.SHARE_STATUS.NO_SHARE ? 43 : 44;
|
3735
3752
|
break;
|
3736
|
-
case
|
3753
|
+
case 28:
|
3737
3754
|
sendStartedSharingRemote = function sendStartedSharingRemote() {
|
3738
3755
|
_this15.remoteShareInstanceId = contentShare.shareInstanceId;
|
3739
3756
|
_this15.shareCAEventSentStatus.receiveStart = false;
|
@@ -3749,20 +3766,20 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3749
3766
|
resourceType: contentShare.resourceType
|
3750
3767
|
});
|
3751
3768
|
};
|
3752
|
-
_context8.prev =
|
3769
|
+
_context8.prev = 29;
|
3753
3770
|
if (!((_this15$mediaProperti = _this15.mediaProperties.mediaDirection) !== null && _this15$mediaProperti !== void 0 && _this15$mediaProperti.sendShare && oldShareStatus === _constants.SHARE_STATUS.LOCAL_SHARE_ACTIVE)) {
|
3754
|
-
_context8.next =
|
3771
|
+
_context8.next = 33;
|
3755
3772
|
break;
|
3756
3773
|
}
|
3757
|
-
_context8.next =
|
3774
|
+
_context8.next = 33;
|
3758
3775
|
return _this15.unpublishStreams([_this15.mediaProperties.shareVideoStream, _this15.mediaProperties.shareAudioStream]);
|
3759
|
-
case
|
3760
|
-
_context8.prev =
|
3776
|
+
case 33:
|
3777
|
+
_context8.prev = 33;
|
3761
3778
|
sendStartedSharingRemote();
|
3762
|
-
return _context8.finish(
|
3763
|
-
case
|
3764
|
-
return _context8.abrupt("break",
|
3765
|
-
case
|
3779
|
+
return _context8.finish(33);
|
3780
|
+
case 36:
|
3781
|
+
return _context8.abrupt("break", 45);
|
3782
|
+
case 37:
|
3766
3783
|
_triggerProxy.default.trigger(_this15, {
|
3767
3784
|
file: 'meeting/index',
|
3768
3785
|
function: 'share'
|
@@ -3778,8 +3795,8 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3778
3795
|
meetingId: _this15.id
|
3779
3796
|
}
|
3780
3797
|
});
|
3781
|
-
return _context8.abrupt("break",
|
3782
|
-
case
|
3798
|
+
return _context8.abrupt("break", 45);
|
3799
|
+
case 40:
|
3783
3800
|
_triggerProxy.default.trigger(_this15, {
|
3784
3801
|
file: 'meeting/index',
|
3785
3802
|
function: 'startWhiteboardShare'
|
@@ -3797,16 +3814,16 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3797
3814
|
meetingId: _this15.id
|
3798
3815
|
}
|
3799
3816
|
});
|
3800
|
-
return _context8.abrupt("break",
|
3801
|
-
case 41:
|
3802
|
-
return _context8.abrupt("break", 43);
|
3803
|
-
case 42:
|
3804
|
-
return _context8.abrupt("break", 43);
|
3817
|
+
return _context8.abrupt("break", 45);
|
3805
3818
|
case 43:
|
3819
|
+
return _context8.abrupt("break", 45);
|
3820
|
+
case 44:
|
3821
|
+
return _context8.abrupt("break", 45);
|
3822
|
+
case 45:
|
3806
3823
|
_this15.members.locusMediaSharesUpdate(payload);
|
3807
|
-
_context8.next =
|
3824
|
+
_context8.next = 49;
|
3808
3825
|
break;
|
3809
|
-
case
|
3826
|
+
case 48:
|
3810
3827
|
if (newShareStatus === _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE) {
|
3811
3828
|
// if we got here, then some remote participant has stolen
|
3812
3829
|
// the presentation from another remote participant
|
@@ -3846,11 +3863,11 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
3846
3863
|
});
|
3847
3864
|
_this15.members.locusMediaSharesUpdate(payload);
|
3848
3865
|
}
|
3849
|
-
case
|
3866
|
+
case 49:
|
3850
3867
|
case "end":
|
3851
3868
|
return _context8.stop();
|
3852
3869
|
}
|
3853
|
-
}, _callee8, null, [[
|
3870
|
+
}, _callee8, null, [[29,, 33, 36]]);
|
3854
3871
|
}));
|
3855
3872
|
return function (_x8) {
|
3856
3873
|
return _ref31.apply(this, arguments);
|
@@ -7677,6 +7694,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
7677
7694
|
receiveVideo,
|
7678
7695
|
sendAudio,
|
7679
7696
|
receiveAudio,
|
7697
|
+
ipver,
|
7680
7698
|
_this$remoteMediaMana,
|
7681
7699
|
_yield$this$mediaProp,
|
7682
7700
|
connectionType,
|
@@ -7741,14 +7759,16 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
7741
7759
|
receiveAudio = audioEnabled && (rawReceiveAudio !== null && rawReceiveAudio !== void 0 ? rawReceiveAudio : true);
|
7742
7760
|
this.allowMediaInLobby = options === null || options === void 0 ? void 0 : options.allowMediaInLobby;
|
7743
7761
|
|
7762
|
+
// @ts-ignore
|
7763
|
+
ipver = _util2.default.getIpVersion(this.webex); // used just for metrics
|
7744
7764
|
// If the user is unjoined or guest waiting in lobby dont allow the user to addMedia
|
7745
7765
|
// @ts-ignore - isUserUnadmitted coming from SelfUtil
|
7746
7766
|
if (!(this.isUserUnadmitted && !this.wirelessShare && !this.allowMediaInLobby)) {
|
7747
|
-
_context35.next =
|
7767
|
+
_context35.next = 20;
|
7748
7768
|
break;
|
7749
7769
|
}
|
7750
7770
|
throw new _webexErrors.UserInLobbyError();
|
7751
|
-
case
|
7771
|
+
case 20:
|
7752
7772
|
// @ts-ignore
|
7753
7773
|
this.webex.internal.newMetrics.submitClientEvent({
|
7754
7774
|
name: 'client.media.capabilities',
|
@@ -7788,63 +7808,64 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
7788
7808
|
this.audio = (0, _muteState.createMuteState)(_constants.AUDIO, this, audioEnabled);
|
7789
7809
|
this.video = (0, _muteState.createMuteState)(_constants.VIDEO, this, videoEnabled);
|
7790
7810
|
this.brbState = (0, _brbState.createBrbState)(this, false);
|
7791
|
-
_context35.prev =
|
7792
|
-
_context35.next =
|
7811
|
+
_context35.prev = 25;
|
7812
|
+
_context35.next = 28;
|
7793
7813
|
return this.setUpLocalStreamReferences(localStreams);
|
7794
|
-
case
|
7814
|
+
case 28:
|
7795
7815
|
this.setMercuryListener();
|
7796
7816
|
this.createStatsAnalyzer();
|
7797
|
-
_context35.prev =
|
7798
|
-
_context35.next =
|
7817
|
+
_context35.prev = 30;
|
7818
|
+
_context35.next = 33;
|
7799
7819
|
return this.establishMediaConnection(remoteMediaManagerConfig, bundlePolicy, forceTurnDiscovery, turnServerInfo);
|
7800
|
-
case
|
7801
|
-
_context35.next =
|
7820
|
+
case 33:
|
7821
|
+
_context35.next = 46;
|
7802
7822
|
break;
|
7803
|
-
case
|
7804
|
-
_context35.prev =
|
7805
|
-
_context35.t0 = _context35["catch"](
|
7823
|
+
case 35:
|
7824
|
+
_context35.prev = 35;
|
7825
|
+
_context35.t0 = _context35["catch"](30);
|
7806
7826
|
if (!(_context35.t0 instanceof _multistreamNotSupportedError.default)) {
|
7807
|
-
_context35.next =
|
7827
|
+
_context35.next = 45;
|
7808
7828
|
break;
|
7809
7829
|
}
|
7810
7830
|
_loggerProxy.default.logger.warn("".concat(LOG_HEADER, " we asked for multistream backend (Homer), but got transcoded backend, recreating media connection..."));
|
7811
|
-
_context35.next =
|
7831
|
+
_context35.next = 41;
|
7812
7832
|
return this.downgradeFromMultistreamToTranscoded();
|
7813
|
-
case
|
7814
|
-
_context35.next =
|
7833
|
+
case 41:
|
7834
|
+
_context35.next = 43;
|
7815
7835
|
return this.establishMediaConnection(remoteMediaManagerConfig, bundlePolicy, true, undefined);
|
7816
|
-
case
|
7817
|
-
_context35.next =
|
7836
|
+
case 43:
|
7837
|
+
_context35.next = 46;
|
7818
7838
|
break;
|
7819
|
-
case 44:
|
7820
|
-
throw _context35.t0;
|
7821
7839
|
case 45:
|
7840
|
+
throw _context35.t0;
|
7841
|
+
case 46:
|
7822
7842
|
_loggerProxy.default.logger.info("".concat(LOG_HEADER, " media connected, finalizing..."));
|
7823
7843
|
if (!this.mediaProperties.hasLocalShareStream()) {
|
7824
|
-
_context35.next =
|
7844
|
+
_context35.next = 50;
|
7825
7845
|
break;
|
7826
7846
|
}
|
7827
|
-
_context35.next =
|
7847
|
+
_context35.next = 50;
|
7828
7848
|
return this.enqueueScreenShareFloorRequest();
|
7829
|
-
case
|
7830
|
-
_context35.next =
|
7849
|
+
case 50:
|
7850
|
+
_context35.next = 52;
|
7831
7851
|
return this.mediaProperties.getCurrentConnectionInfo();
|
7832
|
-
case
|
7852
|
+
case 52:
|
7833
7853
|
_yield$this$mediaProp = _context35.sent;
|
7834
7854
|
connectionType = _yield$this$mediaProp.connectionType;
|
7835
7855
|
ipVersion = _yield$this$mediaProp.ipVersion;
|
7836
7856
|
selectedCandidatePairChanges = _yield$this$mediaProp.selectedCandidatePairChanges;
|
7837
7857
|
numTransports = _yield$this$mediaProp.numTransports;
|
7838
7858
|
iceCandidateErrors = Object.fromEntries(this.iceCandidateErrors);
|
7839
|
-
_context35.next =
|
7859
|
+
_context35.next = 60;
|
7840
7860
|
return this.getMediaReachabilityMetricFields();
|
7841
|
-
case
|
7861
|
+
case 60:
|
7842
7862
|
reachabilityMetrics = _context35.sent;
|
7843
7863
|
_metrics.default.sendBehavioralMetric(_constants2.default.ADD_MEDIA_SUCCESS, _objectSpread(_objectSpread(_objectSpread({
|
7844
7864
|
correlation_id: this.correlationId,
|
7845
7865
|
locus_id: this.locusUrl.split('/').pop(),
|
7846
7866
|
connectionType: connectionType,
|
7847
7867
|
ipVersion: ipVersion,
|
7868
|
+
ipver: ipver,
|
7848
7869
|
selectedCandidatePairChanges: selectedCandidatePairChanges,
|
7849
7870
|
numTransports: numTransports,
|
7850
7871
|
isMultistream: this.isMultistream,
|
@@ -7868,21 +7889,21 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
7868
7889
|
// We can log ReceiveSlot SSRCs only after the SDP exchange, so doing it here:
|
7869
7890
|
(_this$remoteMediaMana = this.remoteMediaManager) === null || _this$remoteMediaMana === void 0 ? void 0 : _this$remoteMediaMana.logAllReceiveSlots();
|
7870
7891
|
this.startPeriodicLogUpload();
|
7871
|
-
_context35.next =
|
7892
|
+
_context35.next = 86;
|
7872
7893
|
break;
|
7873
|
-
case
|
7874
|
-
_context35.prev =
|
7875
|
-
_context35.t1 = _context35["catch"](
|
7894
|
+
case 68:
|
7895
|
+
_context35.prev = 68;
|
7896
|
+
_context35.t1 = _context35["catch"](25);
|
7876
7897
|
_loggerProxy.default.logger.error("".concat(LOG_HEADER, " failed to establish media connection: "), _context35.t1);
|
7877
7898
|
|
7878
7899
|
// @ts-ignore
|
7879
|
-
_context35.next =
|
7900
|
+
_context35.next = 73;
|
7880
7901
|
return this.getMediaReachabilityMetricFields();
|
7881
|
-
case
|
7902
|
+
case 73:
|
7882
7903
|
_reachabilityMetrics = _context35.sent;
|
7883
|
-
_context35.next =
|
7904
|
+
_context35.next = 76;
|
7884
7905
|
return this.mediaProperties.getCurrentConnectionInfo();
|
7885
|
-
case
|
7906
|
+
case 76:
|
7886
7907
|
_yield$this$mediaProp2 = _context35.sent;
|
7887
7908
|
_selectedCandidatePairChanges = _yield$this$mediaProp2.selectedCandidatePairChanges;
|
7888
7909
|
_numTransports = _yield$this$mediaProp2.numTransports;
|
@@ -7904,11 +7925,12 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
7904
7925
|
connectionState: ((_this$mediaProperties22 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties22 === void 0 ? void 0 : (_this$mediaProperties23 = _this$mediaProperties22.multistreamConnection) === null || _this$mediaProperties23 === void 0 ? void 0 : (_this$mediaProperties24 = _this$mediaProperties23.pc) === null || _this$mediaProperties24 === void 0 ? void 0 : (_this$mediaProperties25 = _this$mediaProperties24.pc) === null || _this$mediaProperties25 === void 0 ? void 0 : _this$mediaProperties25.connectionState) || ((_this$mediaProperties26 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties26 === void 0 ? void 0 : (_this$mediaProperties27 = _this$mediaProperties26.mediaConnection) === null || _this$mediaProperties27 === void 0 ? void 0 : (_this$mediaProperties28 = _this$mediaProperties27.pc) === null || _this$mediaProperties28 === void 0 ? void 0 : _this$mediaProperties28.connectionState) || 'unknown',
|
7905
7926
|
iceConnectionState: ((_this$mediaProperties29 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties29 === void 0 ? void 0 : (_this$mediaProperties30 = _this$mediaProperties29.multistreamConnection) === null || _this$mediaProperties30 === void 0 ? void 0 : (_this$mediaProperties31 = _this$mediaProperties30.pc) === null || _this$mediaProperties31 === void 0 ? void 0 : (_this$mediaProperties32 = _this$mediaProperties31.pc) === null || _this$mediaProperties32 === void 0 ? void 0 : _this$mediaProperties32.iceConnectionState) || ((_this$mediaProperties33 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties33 === void 0 ? void 0 : (_this$mediaProperties34 = _this$mediaProperties33.mediaConnection) === null || _this$mediaProperties34 === void 0 ? void 0 : (_this$mediaProperties35 = _this$mediaProperties34.pc) === null || _this$mediaProperties35 === void 0 ? void 0 : _this$mediaProperties35.iceConnectionState) || 'unknown'
|
7906
7927
|
}, _reachabilityMetrics), _iceCandidateErrors), {}, {
|
7907
|
-
iceCandidatesCount: this.iceCandidatesCount
|
7928
|
+
iceCandidatesCount: this.iceCandidatesCount,
|
7929
|
+
ipver: ipver
|
7908
7930
|
}));
|
7909
|
-
_context35.next =
|
7931
|
+
_context35.next = 83;
|
7910
7932
|
return this.cleanUpOnAddMediaFailure();
|
7911
|
-
case
|
7933
|
+
case 83:
|
7912
7934
|
// Upload logs on error while adding media
|
7913
7935
|
_triggerProxy.default.trigger(this, {
|
7914
7936
|
file: 'meeting/index',
|
@@ -7920,15 +7942,15 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
7920
7942
|
});
|
7921
7943
|
}
|
7922
7944
|
throw _context35.t1;
|
7923
|
-
case
|
7924
|
-
_context35.prev =
|
7945
|
+
case 86:
|
7946
|
+
_context35.prev = 86;
|
7925
7947
|
this.addMediaData.icePhaseCallback = DEFAULT_ICE_PHASE_CALLBACK;
|
7926
|
-
return _context35.finish(
|
7927
|
-
case
|
7948
|
+
return _context35.finish(86);
|
7949
|
+
case 89:
|
7928
7950
|
case "end":
|
7929
7951
|
return _context35.stop();
|
7930
7952
|
}
|
7931
|
-
}, _callee35, this, [[
|
7953
|
+
}, _callee35, this, [[25, 68, 86, 89], [30, 35]]);
|
7932
7954
|
}));
|
7933
7955
|
function addMediaInternal(_x33, _x34, _x35) {
|
7934
7956
|
return _addMediaInternal.apply(this, arguments);
|