public void Save(ScreenRouteSummary routeSum)
 {
     this.eventMapper.Save(routeSum);
 }
        public void Log(Event eventItem)
        {
            Application application = this.applicationRepository.Find(eventItem.ApplicationId);

            if (application != null)
            {
                DeviceInfo device = this.deviceRepository.Find(eventItem.DeviceId);

                if (device != null)
                {
                    eventItem.PlatformId = device.PlatformType;

                    switch (eventItem.EventTypeId)
                    {
                        case EventType.ApplicationOpen:
                            Nullable<DateTime> lastDeviceVisit = this.eventRepository
                                .GetDateOfDeviceLastVisit(eventItem.DeviceId, eventItem.ApplicationId);

                            AppUsageSummary appUsageSummary = new AppUsageSummary(eventItem, lastDeviceVisit);
                            this.eventRepository.Save(appUsageSummary);
                            break;

                        case EventType.ApplicationClose:
                            AppUsageDurationSummary appUsageSum = new AppUsageDurationSummary(eventItem);
                            this.eventRepository.Save(appUsageSum);

                            DeviceAppLastScreen appLastScreen =
                                this.eventRepository.GetDeviceAppLastScreenOneBy(eventItem.DeviceId, eventItem.ApplicationId);

                            if (appLastScreen != null)
                            {
                                ScreenRouteSummary routeSum =
                                    new ScreenRouteSummary(eventItem, appLastScreen.ScreenName, string.Empty);

                                this.eventRepository.Save(routeSum);
                                this.eventRepository.Remove(eventItem.DeviceId, eventItem.ApplicationId);
                            }
                            break;

                        case EventType.Event:
                            EventSummary eventSum = new EventSummary(eventItem);
                            this.eventRepository.Save(eventSum);
                            break;

                        case EventType.ScreenClose:
                            ScreenSummary screenUsageSum = new ScreenSummary(eventItem);
                            this.eventRepository.Save(screenUsageSum);
                            this.eventRepository.Remove(eventItem.DeviceId, eventItem.ApplicationId);
                            this.eventRepository.Save(new DeviceAppLastScreen(eventItem));
                            break;

                        case EventType.ScreenOpen:
                            DeviceAppLastScreen lastScreen =
                                this.eventRepository.GetDeviceAppLastScreenOneBy(eventItem.DeviceId, eventItem.ApplicationId);

                            ScreenRouteSummary routeSum2 = new ScreenRouteSummary(eventItem, string.Empty, eventItem.ScreenName);

                            if (lastScreen != null)
                            {
                                if (lastScreen.SessionId == eventItem.SessionId)
                                {
                                    routeSum2 = new ScreenRouteSummary(eventItem, lastScreen.ScreenName, eventItem.ScreenName);
                                }

                                this.eventRepository.Remove(eventItem.DeviceId, eventItem.ApplicationId);
                            }

                            this.eventRepository.Save(routeSum2);
                            this.eventRepository.Save(new DeviceAppLastScreen(eventItem));
                            break;

                        case EventType.ContentLoaded:
                            ContentLoadSummary contentSum = new ContentLoadSummary(eventItem);
                            this.eventRepository.Save(contentSum);
                            break;
                    }

                    if (this.settings.DataLoggingRecordRaw)
                    {
                        this.eventRepository.Save(eventItem);
                    }
                }
                else
                {
                    throw new NoDeviceException(eventItem.DeviceId);
                }
            }
            else
            {
                throw new InactiveApplicationException(eventItem.ApplicationId);
            }
        }
        public void Save(ScreenRouteSummary entity)
        {
            try
            {
                IMongoQuery queryBase = Query.And
                    (
                        Query<ScreenRouteSummary>.EQ<DateTime>(mem => mem.Date, entity.Date),
                        Query<ScreenRouteSummary>.EQ<Guid>(mem => mem.ApplicationId, entity.ApplicationId),
                        Query<ScreenRouteSummary>.EQ<string>(mem => mem.Version, entity.Version),
                        Query<ScreenRouteSummary>.EQ<PlatformType>(mem => mem.PlatformId, entity.PlatformId)
                    );

                IMongoUpdate update = Update<ScreenRouteSummary>
                    .SetOnInsert(x => x.Version, entity.Version)
                    .SetOnInsert(x => x.Date, entity.Date)
                    .SetOnInsert(x => x.ApplicationId, entity.ApplicationId)
                    .SetOnInsert(x => x.PlatformId, entity.PlatformId)
                    .SetOnInsert(x => x.ScreenRoutes, new List<ScreenRoute>())
                    .Inc(mem => mem.Count, entity.Count);

                this.GetCollection<ScreenRouteSummary>().FindAndModify(queryBase, SortBy.Descending("Date"), update, false, true);
                this.GetCollection<ScreenRouteSummary>().EnsureIndex(IndexKeys.Descending("Date"));

                IMongoQuery queryFeedbackInsert = Query.And
                    (
                        queryBase,
                        Query.NE("ScreenRoutes.AB", BsonValue.Create(entity.ScreenRoutes.First().LastAndCurrentScreen))
                    );

                IMongoUpdate updateFeedback = Update
                    .Push("ScreenRoutes", BsonValue.Create(entity.ScreenRoutes.First().CopyOnlyKeys().ToBsonDocument()));

                this.GetCollection<ScreenRouteSummary>().Update(queryFeedbackInsert, updateFeedback);

                IMongoQuery queryScreenFlows = Query.And
                    (
                        queryBase,
                        Query.EQ("ScreenRoutes.AB", BsonValue.Create(entity.ScreenRoutes.First().LastAndCurrentScreen))
                    );

                IMongoUpdate updateScreenFlows = Update
                    .Inc("ScreenRoutes.$.Count", 1);

                this.GetCollection<ScreenRouteSummary>().Update(queryScreenFlows, updateScreenFlows);
            }
            catch (Exception ex)
            {
                throw new DataAccessLayerException(ex);
            }
        }
        public void Save_ScreenRoute_ValuesIncrement()
        {
            EventMapper eventMapper = new EventMapper(this.client, this.database);
            Guid applicationId = Guid.NewGuid();
            Guid deviceId = Guid.NewGuid();

            ScreenRouteSummary expected = new ScreenRouteSummary()
            {
                ApplicationId = applicationId,
                Count = 2,
                Date = date,
                PlatformId = platform,
                Version = version,
                ScreenRoutes = new List<ScreenRoute>()
                {
                     new ScreenRoute("screenNameBefore", "screenNameAfter")
                     {
                         Count = 2
                     }
                }
            };

            Event eventItem = new Event()
            {
                ApplicationId = applicationId,
                Date = date,
                Version = version,
                PlatformId = platform,
                DateCreatedOnDevice = dateCreatedOnDevice,
                DeviceId = deviceId,
                DateCreated = date,
                EventTypeId = Model.Enum.EventType.ScreenOpen,
                ScreenName = "screenNameAfter"
            };

            ScreenRouteSummary summary = new ScreenRouteSummary(eventItem, "screenNameBefore", "screenNameAfter");

            eventMapper.Save(summary);
            eventMapper.Save(summary);

            IMongoQuery query = Query.And
                (
                    Query<ScreenRouteSummary>.EQ<DateTime>(mem => mem.Date, date),
                    Query<ScreenRouteSummary>.EQ<Guid>(mem => mem.ApplicationId, applicationId),
                    Query<ScreenRouteSummary>.EQ<string>(mem => mem.Version, version),
                    Query<ScreenRouteSummary>.EQ<PlatformType>(mem => mem.PlatformId, platform)
                );

            ScreenRouteSummary actual = this.GetCollection<ScreenRouteSummary>().FindOne(query);

            actual.ShouldHave().AllPropertiesBut(x => x.Id).IncludingNestedObjects().EqualTo(expected);
        }