]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/cull_list.h
Use IsCTCP in blockcolor for ignoring CTCPs.
[user/henk/code/inspircd.git] / include / cull_list.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2017 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
6  *   Copyright (C) 2011 jackmcbarn <jackmcbarn@inspircd.org>
7  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *   Copyright (C) 2005, 2010 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #pragma once
26
27 /**
28  * The CullList class is used to delete objects at the end of the main loop to
29  * avoid problems with references to deleted pointers if an object were deleted
30  * during execution.
31  */
32 class CoreExport CullList
33 {
34         std::vector<classbase*> list;
35         std::vector<LocalUser*> SQlist;
36
37  public:
38         /** Adds an item to the cull list
39          */
40         void AddItem(classbase* item) { list.push_back(item); }
41         void AddSQItem(LocalUser* item) { SQlist.push_back(item); }
42
43         /** Applies the cull list (deletes the contents)
44          */
45         void Apply();
46 };
47
48 /** Represents an action which is executable by an action list */
49 class CoreExport ActionBase : public classbase
50 {
51  public:
52          /** Executes this action. */
53         virtual void Call() = 0;
54 };
55
56 class CoreExport ActionList
57 {
58         std::vector<ActionBase*> list;
59
60  public:
61         /** Adds an item to the list
62          */
63         void AddAction(ActionBase* item) { list.push_back(item); }
64
65         /** Runs the items
66          */
67         void Run();
68
69 };