OSDN Git Service

TabModel.AddPostQueueメソッドで追加されるIDがPosts内に存在するかチェックを行う
[opentween/open-tween.git] / OpenTween / Models / InternalStorageTabModel.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2007-2011 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
3 //           (c) 2008-2011 Moz (@syo68k)
4 //           (c) 2008-2011 takeshik (@takeshik) <http://www.takeshik.org/>
5 //           (c) 2010-2011 anis774 (@anis774) <http://d.hatena.ne.jp/anis774/>
6 //           (c) 2010-2011 fantasticswallow (@f_swallow) <http://twitter.com/f_swallow>
7 //           (c) 2011      Egtra (@egtra) <http://dev.activebasic.com/egtra/>
8 //           (c) 2012      kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
9 // All rights reserved.
10 //
11 // This file is part of OpenTween.
12 //
13 // This program is free software; you can redistribute it and/or modify it
14 // under the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 3 of the License, or (at your option)
16 // any later version.
17 //
18 // This program is distributed in the hope that it will be useful, but
19 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 // for more details.
22 //
23 // You should have received a copy of the GNU General Public License along
24 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
25 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
26 // Boston, MA 02110-1301, USA.
27
28 using System;
29 using System.Collections.Concurrent;
30 using System.Collections.Generic;
31 using System.Linq;
32 using System.Text;
33 using System.Threading.Tasks;
34
35 namespace OpenTween.Models
36 {
37     public abstract class InternalStorageTabModel : TabModel
38     {
39         protected readonly ConcurrentDictionary<long, PostClass> internalPosts = new ConcurrentDictionary<long, PostClass>();
40
41         public override ConcurrentDictionary<long, PostClass> Posts
42             => this.internalPosts;
43
44         protected InternalStorageTabModel(string tabName) : base(tabName)
45         {
46         }
47
48         public override void AddPostQueue(PostClass post)
49         {
50             if (TabInformations.GetInstance().IsMuted(post, isHomeTimeline: false))
51                 return;
52
53             this.internalPosts.TryAdd(post.StatusId, post);
54
55             base.AddPostQueue(post);
56         }
57
58         public override void EnqueueRemovePost(long statusId, bool setIsDeleted)
59         {
60             base.EnqueueRemovePost(statusId, setIsDeleted);
61
62             if (setIsDeleted)
63             {
64                 PostClass post;
65                 if (this.internalPosts.TryGetValue(statusId, out post))
66                     post.IsDeleted = true;
67             }
68         }
69
70         public override bool RemovePostImmediately(long statusId)
71         {
72             if (!base.RemovePostImmediately(statusId))
73                 return false;
74
75             PostClass removedPost;
76             this.internalPosts.TryRemove(statusId, out removedPost);
77
78             return true;
79         }
80
81         public override void ClearIDs()
82         {
83             base.ClearIDs();
84             this.internalPosts.Clear();
85         }
86     }
87 }