VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/ipc/ipcd/shared/src/ipcIDList.h

Last change on this file was 7029, checked in by vboxsync, 16 years ago

XPCOM/IPC: Made IPC_AddName()/IPC_RemoveName(), IPC_DefineTarget() to return a failure when the name/target is already defined or when a non-existent name/target is requested for removal.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is Mozilla IPC.
15 *
16 * The Initial Developer of the Original Code is
17 * Netscape Communications Corporation.
18 * Portions created by the Initial Developer are Copyright (C) 2002
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * Darin Fisher <darin@netscape.com>
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38#ifndef ipcIDList_h__
39#define ipcIDList_h__
40
41#include "nsID.h"
42#include "ipcList.h"
43
44//-----------------------------------------------------------------------------
45// nsID node
46//-----------------------------------------------------------------------------
47
48class ipcIDNode
49{
50public:
51 ipcIDNode(const nsID &id)
52 : mID(id)
53 { }
54
55 const nsID &Value() const { return mID; }
56
57 PRBool Equals(const nsID &id) const { return mID.Equals(id); }
58
59 class ipcIDNode *mNext;
60private:
61 nsID mID;
62};
63
64//-----------------------------------------------------------------------------
65// singly-linked list of nsIDs
66//-----------------------------------------------------------------------------
67
68class ipcIDList : public ipcList<ipcIDNode>
69{
70public:
71 typedef ipcList<ipcIDNode> Super;
72
73 void Prepend(const nsID &id)
74 {
75 Super::Prepend(new ipcIDNode(id));
76 }
77
78 void Append(const nsID &id)
79 {
80 Super::Append(new ipcIDNode(id));
81 }
82
83 const ipcIDNode *Find(const nsID &id) const
84 {
85 return FindNode(mHead, id);
86 }
87
88 PRBool FindAndDelete(const nsID &id)
89 {
90 ipcIDNode *node = FindNodeBefore(mHead, id);
91 if (node) {
92 DeleteAfter(node);
93 return PR_TRUE;
94 }
95 else if (!IsEmpty()) {
96 DeleteFirst();
97 return PR_TRUE;
98 }
99
100 return PR_FALSE;
101 }
102
103private:
104 static NS_HIDDEN_(ipcIDNode *) FindNode (ipcIDNode *head, const nsID &id);
105 static NS_HIDDEN_(ipcIDNode *) FindNodeBefore(ipcIDNode *head, const nsID &id);
106};
107
108#endif // !ipcIDList_h__
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use