????

Your IP : 216.73.216.252


Current Path : C:/Windows/SystemApps/Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy/js/
Upload File :
Current File : C:/Windows/SystemApps/Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy/js/telemetry.js

//
// Copyright (C) Microsoft. All rights reserved.
//
/// <disable>JS2085.EnableStrictMode</disable>
"use strict";
var CloudExperienceHost;
(function (CloudExperienceHost) {
    var Telemetry;
    (function (Telemetry) {
        class AppTelemetry {
            constructor() {
                this._appActivity = null;
                if (!AppTelemetry._allowInstantiation) {
                    throw new Error("Error: Instantiation failed: Use getInstance() instead of new.");
                }
                this._appActivity = new Microsoft.CloudExperienceHost.AppActivity();
            }
            static getInstance() {
                if (AppTelemetry._instance === null) {
                    AppTelemetry._allowInstantiation = true;
                    AppTelemetry._instance = new AppTelemetry();
                    AppTelemetry._allowInstantiation = false;
                }
                return AppTelemetry._instance;
            }
            start(source, experience, correlationId) {
                this._appActivity.start(source, experience, correlationId);
                // This call is crashing regularly on some Xbox consoles in the wild.  At this point in time,
                // we could not repro on a devkit and since this is supposed to be a no-op on the console
                // we put this within a try / catch block to keep CXH from crashing.
                try {
                    CloudExperienceHostAPI.EventLogging.appActivityStart(source, experience);
                }
                catch (e) {
                }
            }
            stop(appResult) {
                this._appActivity.stop(appResult);
                // This call is crashing regularly on some Xbox consoles in the wild.  At this point in time,
                // we could not repro on a devkit and since this is supposed to be a no-op on the console
                // we put this within a try / catch block to keep CXH from crashing.
                try {
                    CloudExperienceHostAPI.EventLogging.appActivityStop(appResult);
                }
                catch (e) {
                }
            }
            getId() {
                return this._appActivity.getId();
            }
            appCheckpoint() {
                this._appActivity.appCheckpoint();
            }
            logCriticalEvent2(eventName, eventValue) {
                this._appActivity.logCriticalEvent2(eventName, eventValue);
                this._logEventInternal(eventName, eventValue);
            }
            logEvent(...params) {
                var func = "logEvent" + params.length;
                this._appActivity[func].apply(this._appActivity, params);
                if (params.length == 1) {
                    this._logEventInternal(params[0]);
                }
                else {
                    this._logEventInternal(params[0], params[1]);
                }
            }
            _logEventInternal(...params) {
                var func = "appEvent" + params.length;
                // This call is crashing regularly on some Xbox consoles in the wild.  At this point in time,
                // we could not repro on a devkit and since this is supposed to be a no-op on the console
                // we put this within a try / catch block to keep CXH from crashing.
                try {
                    CloudExperienceHostAPI.EventLogging[func].apply(undefined, params);
                }
                catch (e) {
                }
            }
            static logChromeEvent(...params) {
                var self = AppTelemetry.getInstance();
                var func = "logChromeEvent" + params.length;
                self._appActivity[func].apply(self._appActivity, params);
            }
        }
        AppTelemetry._instance = null;
        Telemetry.AppTelemetry = AppTelemetry;
        class WebAppTelemetry {
            constructor() {
                this._webAppActivity = null;
                if (!WebAppTelemetry._allowInstantiation) {
                    throw new Error("Error: Instantiation failed: Use getInstance() instead of new.");
                }
            }
            static getInstance() {
                if (WebAppTelemetry._instance === null) {
                    WebAppTelemetry._allowInstantiation = true;
                    WebAppTelemetry._instance = new WebAppTelemetry();
                    WebAppTelemetry._allowInstantiation = false;
                }
                return WebAppTelemetry._instance;
            }
            // activityId is an optional parameter, if not provided, the ID will come from AppTelemetry
            // If activityId is provided, it must be a valid guid string, else this will crash
            start(cxid, activityId) {
                if (this._webAppActivity) {
                    this.stop(CloudExperienceHost.AppResult.fail);
                }
                if (activityId) {
                    this._webAppActivity = new Microsoft.CloudExperienceHost.WebAppActivity(activityId);
                }
                else {
                    this._webAppActivity = new Microsoft.CloudExperienceHost.WebAppActivity(AppTelemetry.getInstance().getId());
                }
                this._webAppActivity.start(cxid);
                // This call is crashing regularly on some Xbox consoles in the wild.  At this point in time,
                // we could not repro on a devkit and since this is supposed to be a no-op on the console
                // we put this within a try / catch block to keep CXH from crashing.
                try {
                    CloudExperienceHostAPI.EventLogging.webAppActivityStart(cxid);
                }
                catch (e) {
                }
            }
            stop(appResult) {
                if (!this._webAppActivity) {
                    AppTelemetry.getInstance().logCriticalEvent2("NoActiveWebAppRunning", "StopCalled");
                    return;
                }
                this._webAppActivity.stop(appResult);
                this._webAppActivity = null;
                // This call is crashing regularly on some Xbox consoles in the wild.  At this point in time,
                // we could not repro on a devkit and since this is supposed to be a no-op on the console
                // we put this within a try / catch block to keep CXH from crashing.
                try {
                    CloudExperienceHostAPI.EventLogging.webAppActivityStop(appResult);
                }
                catch (e) {
                }
            }
            isStarted() {
                return (this._webAppActivity != null);
            }
            getId() {
                return this._webAppActivity.getId();
            }
            logUserInteractionEvent(...params) {
                this._logEventInternal("logUserInteractionEvent", params);
            }
            logEvent(...params) {
                this._logEventInternal("logEvent", params);
            }
            _logEventInternal(eventType, params) {
                if (!this._webAppActivity) {
                    AppTelemetry.getInstance().logCriticalEvent2("NoActiveWebAppRunning", JSON.stringify(params));
                    return;
                }
                var func = eventType + params.length;
                this._webAppActivity[func].apply(this._webAppActivity, params);
                func = "webAppEvent" + params.length;
                // This call is crashing regularly on some Xbox consoles in the wild.  At this point in time,
                // we could not repro on a devkit and since this is supposed to be a no-op on the console
                // we put this within a try / catch block to keep CXH from crashing.
                try {
                    CloudExperienceHostAPI.EventLogging[func].apply(undefined, params);
                }
                catch (e) {
                }
            }
        }
        WebAppTelemetry._instance = null;
        Telemetry.WebAppTelemetry = WebAppTelemetry;
        function getId() {
            return WebAppTelemetry.getInstance().getId();
        }
        Telemetry.getId = getId;
        function logEvent(...params) {
            var webAppTelemetry = WebAppTelemetry.getInstance();
            webAppTelemetry.logEvent.apply(webAppTelemetry, params);
        }
        Telemetry.logEvent = logEvent;
        function safeLogEvent(eventName, eventValue) {
            if (!eventName || typeof eventName !== "string") {
                throw Error("Cannot log an event without an event name or an event name of an invalid type.");
            }
            if (/\s/.test(eventName)) {
                throw Error("Event name cannot contain whitespace.");
            }
            if (eventValue == undefined) {
                logEvent(eventName);
            }
            else {
                logEvent(eventName, JSON.stringify(eventValue));
            }
        }
        Telemetry.safeLogEvent = safeLogEvent;
        function logUserInteractionEvent(...params) {
            var webAppTelemetry = WebAppTelemetry.getInstance();
            webAppTelemetry.logUserInteractionEvent.apply(webAppTelemetry, params);
        }
        Telemetry.logUserInteractionEvent = logUserInteractionEvent;
        function oobeHealthEvent(healthEvent, errorCode) {
            CloudExperienceHostAPI.EventLogging.oobeHealthEvent(healthEvent, errorCode);
        }
        Telemetry.oobeHealthEvent = oobeHealthEvent;
        function commitUserIntentAsync(intentKey, intentValue) {
            return CloudExperienceHostAPI.UserIntentRecordCore.setUserIntentAndTimestampAsync(intentKey, intentValue);
        }
        Telemetry.commitUserIntentAsync = commitUserIntentAsync;
        function commitIntentPropertyDWORDAsync(intentKey, intentProperty, intentPropertyValue) {
            return CloudExperienceHostAPI.UserIntentRecordCore.setIntentPropertyDWORDAsync(intentKey, intentProperty, intentPropertyValue);
        }
        Telemetry.commitIntentPropertyDWORDAsync = commitIntentPropertyDWORDAsync;
        function commitIntentPropertyBOOLAsync(intentKey, intentProperty, intentPropertyValue) {
            return CloudExperienceHostAPI.UserIntentRecordCore.setIntentPropertyDWORDAsync(intentKey, intentProperty, intentPropertyValue ? 1 : 0);
        }
        Telemetry.commitIntentPropertyBOOLAsync = commitIntentPropertyBOOLAsync;
        class IntentPropertyItem {
            constructor(intentProperty, intentPropertyValue) {
                this.intentProperty = intentProperty;
                this.intentPropertyValue = intentPropertyValue;
            }
        }
        Telemetry.IntentPropertyItem = IntentPropertyItem;
        function commitUserIntentAndIntentPropertyValuesAsync(intentKey, intentValue, intentPropertyDWORDArr, intentPropertyBOOLArr) {
            let setUserIntentAndTimestampPromise = commitUserIntentAsync(intentKey, intentValue);
            let setIntentPropertyDWORDPromises;
            setIntentPropertyDWORDPromises = (intentPropertyDWORDArr == null) ? new Array() : intentPropertyDWORDArr.map((intentPropertyItem) => {
                return commitIntentPropertyDWORDAsync(intentKey, intentPropertyItem.intentProperty, intentPropertyItem.intentPropertyValue);
            });
            let setIntentPropertyDWORDsPromise = WinJS.Promise.join(setIntentPropertyDWORDPromises);
            let setIntentPropertyBOOLPromises;
            setIntentPropertyBOOLPromises = (intentPropertyBOOLArr == null) ? new Array() : intentPropertyBOOLArr.map((intentPropertyItem) => {
                return commitIntentPropertyBOOLAsync(intentKey, intentPropertyItem.intentProperty, intentPropertyItem.intentPropertyValue);
            });
            let setIntentPropertyBOOLsPromise = WinJS.Promise.join(setIntentPropertyBOOLPromises);
            return WinJS.Promise.join({ setUserIntentAndTimestampPromise: setUserIntentAndTimestampPromise, setIntentPropertyDWORDsPromise: setIntentPropertyDWORDsPromise,
                setIntentPropertyBOOLsPromise: setIntentPropertyBOOLsPromise });
        }
        Telemetry.commitUserIntentAndIntentPropertyValuesAsync = commitUserIntentAndIntentPropertyValuesAsync;
        function commitUserIntentAndBuildAsync(intentKey, intentValue) {
            let intentPropertyDWORDArr = new Array();
            intentPropertyDWORDArr.push(new IntentPropertyItem("OSBuildNumber", CloudExperienceHostAPI.Environment.osVersionInfo.buildNumber));
            return commitUserIntentAndIntentPropertyValuesAsync(intentKey, intentValue, intentPropertyDWORDArr);
        }
        Telemetry.commitUserIntentAndBuildAsync = commitUserIntentAndBuildAsync;
        function tryGetIntentPropertyDWORDAsync(intentKey, intentProperty) {
            return CloudExperienceHostAPI.UserIntentRecordCore.tryGetIntentPropertyDWORDAsync(intentKey, intentProperty).then(function (result) {
                var userIntentRecordResultObj = {};
                userIntentRecordResultObj.succeeded = result.succeeded;
                userIntentRecordResultObj.value = result.value;
                return JSON.stringify(userIntentRecordResultObj);
            });
        }
        Telemetry.tryGetIntentPropertyDWORDAsync = tryGetIntentPropertyDWORDAsync;
    })(Telemetry = CloudExperienceHost.Telemetry || (CloudExperienceHost.Telemetry = {}));
})(CloudExperienceHost || (CloudExperienceHost = {}));
if ((typeof define === "function") && define.amd) {
    define(function () {
        return {
            AppTelemetry: CloudExperienceHost.Telemetry.AppTelemetry,
            WebAppResult: CloudExperienceHost.Telemetry.WebAppTelemetry
        };
    });
}
//# sourceMappingURL=telemetry.js.map