Пример #1
0
        public async Task <string> GetJavaScriptBundleFileAsync(string assetsBundleFileName)
        {
            AssetsBundleFileName = assetsBundleFileName;
            string binaryJsBundleUrl = CodePushUtils.GetAssetsBundlePrefix() + assetsBundleFileName;

            var binaryResourcesModifiedTime = await FileUtils.GetBinaryResourcesModifiedTimeAsync(AssetsBundleFileName).ConfigureAwait(false);

            var packageFile = await UpdateManager.GetCurrentPackageBundleAsync(AssetsBundleFileName).ConfigureAwait(false);

            if (packageFile == null)
            {
                // There has not been any downloaded updates.
                CodePushUtils.LogBundleUrl(binaryJsBundleUrl);
                IsRunningBinaryVersion = true;
                return(binaryJsBundleUrl);
            }

            var packageMetadata = await UpdateManager.GetCurrentPackageAsync().ConfigureAwait(false);

            long?binaryModifiedDateDuringPackageInstall       = null;
            var  binaryModifiedDateDuringPackageInstallString = (string)packageMetadata[CodePushConstants.BinaryModifiedTimeKey];

            if (binaryModifiedDateDuringPackageInstallString != null)
            {
                binaryModifiedDateDuringPackageInstall = long.Parse(binaryModifiedDateDuringPackageInstallString);
            }

            var packageAppVersion = (string)packageMetadata["appVersion"];

            if (binaryModifiedDateDuringPackageInstall != null &&
                binaryModifiedDateDuringPackageInstall == binaryResourcesModifiedTime &&
                AppVersion.Equals(packageAppVersion))
            {
                CodePushUtils.LogBundleUrl(packageFile.Path);
                IsRunningBinaryVersion = false;

                return(CodePushUtils.GetFileBundlePrefix() + CodePushUtils.ExtractSubFolder(packageFile.Path));
            }
            else
            {
                // The binary version is newer.
                DidUpdate = false;
                if (!MainPage.UseDeveloperSupport || !AppVersion.Equals(packageAppVersion))
                {
                    await ClearUpdatesAsync().ConfigureAwait(false);
                }

                CodePushUtils.LogBundleUrl(binaryJsBundleUrl);
                IsRunningBinaryVersion = true;
                return(binaryJsBundleUrl);
            }
        }
Пример #2
0
        public void Equals_Test(int majorA, int minorA, int revisionA,
                                int majorB, int minorB, int revisionB,
                                bool expectedResult)
        {
            // arrange
            AppVersion a = new AppVersion(majorA, minorA, revisionA);
            AppVersion b = new AppVersion(majorB, minorB, revisionB);

            // act
            bool actualResult = a.Equals(b);

            // assert
            Assert.AreEqual(expectedResult, actualResult);
        }
Пример #3
0
        public int CompareTo(Metrics other)
        {
            if (!(OS == null && other.OS == null))
            {
                if (OS == null)
                {
                    return(-1);
                }
                if (other.OS == null)
                {
                    return(1);
                }
                if (!OS.Equals(other.OS))
                {
                    return(OS.CompareTo(other.OS));
                }
            }

            if (!(OSVersion == null && other.OSVersion == null))
            {
                if (OSVersion == null)
                {
                    return(-1);
                }
                if (other.OSVersion == null)
                {
                    return(1);
                }
                if (!OSVersion.Equals(other.OSVersion))
                {
                    return(OSVersion.CompareTo(other.OSVersion));
                }
            }

            if (!(Device == null && other.Device == null))
            {
                if (Device == null)
                {
                    return(-1);
                }
                if (other.Device == null)
                {
                    return(1);
                }
                if (!Device.Equals(other.Device))
                {
                    return(Device.CompareTo(other.Device));
                }
            }

            if (!(Resolution == null && other.Resolution == null))
            {
                if (Resolution == null)
                {
                    return(-1);
                }
                if (other.Resolution == null)
                {
                    return(1);
                }
                if (!Resolution.Equals(other.Resolution))
                {
                    return(Resolution.CompareTo(other.Resolution));
                }
            }

            if (!(Carrier == null && other.Carrier == null))
            {
                if (Carrier == null)
                {
                    return(-1);
                }
                if (other.Carrier == null)
                {
                    return(1);
                }
                if (!Carrier.Equals(other.Carrier))
                {
                    return(Carrier.CompareTo(other.Carrier));
                }
            }

            if (!(AppVersion == null && other.AppVersion == null))
            {
                if (AppVersion == null)
                {
                    return(-1);
                }
                if (other.AppVersion == null)
                {
                    return(1);
                }
                if (!AppVersion.Equals(other.AppVersion))
                {
                    return(AppVersion.CompareTo(other.AppVersion));
                }
            }

            return(0);
        }
Пример #4
0
        public int CompareTo(ExceptionEvent other)
        {
            if (!(OS == null && other.OS == null))
            {
                if (OS == null)
                {
                    return(-1);
                }
                if (other.OS == null)
                {
                    return(1);
                }
                if (!OS.Equals(other.OS))
                {
                    return(OS.CompareTo(other.OS));
                }
            }

            if (!(OSVersion == null && other.OSVersion == null))
            {
                if (OSVersion == null)
                {
                    return(-1);
                }
                if (other.OSVersion == null)
                {
                    return(1);
                }
                if (!OSVersion.Equals(other.OSVersion))
                {
                    return(OSVersion.CompareTo(other.OSVersion));
                }
            }

            if (!(Manufacture == null && other.Manufacture == null))
            {
                if (Manufacture == null)
                {
                    return(-1);
                }
                if (other.Manufacture == null)
                {
                    return(1);
                }
                if (!Manufacture.Equals(other.Manufacture))
                {
                    return(Manufacture.CompareTo(other.Manufacture));
                }
            }

            if (!(Device == null && other.Device == null))
            {
                if (Device == null)
                {
                    return(-1);
                }
                if (other.Device == null)
                {
                    return(1);
                }
                if (!Device.Equals(other.Device))
                {
                    return(Device.CompareTo(other.Device));
                }
            }

            if (!(Resolution == null && other.Resolution == null))
            {
                if (Resolution == null)
                {
                    return(-1);
                }
                if (other.Resolution == null)
                {
                    return(1);
                }
                if (!Resolution.Equals(other.Resolution))
                {
                    return(Resolution.CompareTo(other.Resolution));
                }
            }

            if (!(AppVersion == null && other.AppVersion == null))
            {
                if (AppVersion == null)
                {
                    return(-1);
                }
                if (other.AppVersion == null)
                {
                    return(1);
                }
                if (!AppVersion.Equals(other.AppVersion))
                {
                    return(AppVersion.CompareTo(other.AppVersion));
                }
            }

            if (!(Orientation == null && other.Orientation == null))
            {
                if (Orientation == null)
                {
                    return(-1);
                }
                if (other.Orientation == null)
                {
                    return(1);
                }
                if (!Orientation.Equals(other.Orientation))
                {
                    return(Orientation.CompareTo(other.Orientation));
                }
            }

            if (!(RamCurrent == null && other.RamCurrent == null))
            {
                if (RamCurrent == null)
                {
                    return(-1);
                }
                if (other.RamCurrent == null)
                {
                    return(1);
                }
                if (!RamCurrent.Equals(other.RamCurrent))
                {
                    return(RamCurrent.Value.CompareTo(other.RamCurrent.Value));
                }
            }

            if (!(RamTotal == null && other.RamTotal == null))
            {
                if (RamTotal == null)
                {
                    return(-1);
                }
                if (other.RamTotal == null)
                {
                    return(1);
                }
                if (!RamTotal.Equals(other.RamTotal))
                {
                    return(RamTotal.Value.CompareTo(other.RamTotal.Value));
                }
            }

            if (!Online.Equals(other.Online))
            {
                return(Online.CompareTo(other.Online));
            }

            if (!(Name == null && other.Name == null))
            {
                if (Name == null)
                {
                    return(-1);
                }
                if (other.Name == null)
                {
                    return(1);
                }
                if (!Name.Equals(other.Name))
                {
                    return(Name.CompareTo(other.Name));
                }
            }

            if (!(Error == null && other.Error == null))
            {
                if (Error == null)
                {
                    return(-1);
                }
                if (other.Error == null)
                {
                    return(1);
                }
                if (!Error.Equals(other.Error))
                {
                    return(Error.CompareTo(other.Error));
                }
            }

            if (!NonFatal.Equals(other.NonFatal))
            {
                return(NonFatal.CompareTo(other.NonFatal));
            }

            if (!(Logs == null && other.Logs == null))
            {
                if (Logs == null)
                {
                    return(-1);
                }
                if (other.Logs == null)
                {
                    return(1);
                }
                if (!Logs.Equals(other.Logs))
                {
                    return(Logs.CompareTo(other.Logs));
                }
            }

            if (!Run.Equals(other.Run))
            {
                return(Run.CompareTo(other.Run));
            }

            if (!(OS == null && other.OS == null))
            {
                if (OS == null)
                {
                    return(-1);
                }
                if (other.OS == null)
                {
                    return(1);
                }
                if (!OS.Equals(other.OS))
                {
                    return(OS.CompareTo(other.OS));
                }
            }

            if (!(Custom == null && other.Custom == null))
            {
                if (Custom == null)
                {
                    return(-1);
                }
                if (other.Custom == null)
                {
                    return(1);
                }
                if (!Custom.Count.Equals(other.Custom.Count))
                {
                    return(Custom.Count.CompareTo(other.Custom.Count));
                }

                foreach (var a in Custom.Keys)
                {
                    if (!other.Custom.ContainsKey(a))
                    {
                        return(-1);
                    }
                    if (!Custom[a].Equals(other.Custom[a]))
                    {
                        return(Custom[a].CompareTo(other.Custom[a]));
                    }
                }
            }

            return(0);
        }