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