Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ed98d6850e2d6eb4d37c87b156638561891c5554 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*******************************************************************************
 * Copyright (c) 2008, 2014 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Markus Schorn - initial API and implementation
 *******************************************************************************/ 
package org.eclipse.cdt.internal.core.pdom.dom.cpp;

import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.internal.core.index.IIndexCPPBindingConstants;
import org.eclipse.cdt.internal.core.pdom.dom.PDOMLinkage;
import org.eclipse.cdt.internal.core.pdom.dom.PDOMName;
import org.eclipse.cdt.internal.core.pdom.dom.PDOMNode;
import org.eclipse.core.runtime.CoreException;

class PDOMCPPFriend extends PDOMNode {
	private static final int FRIEND_SPECIFIER = PDOMNode.RECORD_SIZE + 0;
	private static final int NEXT_FRIEND = PDOMNode.RECORD_SIZE + 4;

	@SuppressWarnings("hiding")
	protected static final int RECORD_SIZE = PDOMNode.RECORD_SIZE + 8;

	public PDOMCPPFriend(PDOMLinkage linkage, long record) {
		super(linkage, record);
	}

	public PDOMCPPFriend(PDOMLinkage linkage, PDOMName friendSpec) throws CoreException {
		super(linkage, null);

		long friendrec = friendSpec != null ? friendSpec.getRecord() : 0;
		linkage.getDB().putRecPtr(record + FRIEND_SPECIFIER, friendrec);
	}

	@Override
	protected int getRecordSize() {
		return RECORD_SIZE;
	}

	@Override
	public int getNodeType() {
		return IIndexCPPBindingConstants.CPP_FRIEND_DECLARATION;
	}

	public PDOMName getSpecifierName() throws CoreException {
		long rec = getDB().getRecPtr(record + FRIEND_SPECIFIER);
		if (rec != 0)
			return new PDOMName(getLinkage(), rec);
		return null;
	}

	public IBinding getFriendSpecifier() {
		PDOMName friendSpecName;
		try {
			friendSpecName = getSpecifierName();
			if (friendSpecName != null) {
				return friendSpecName.getBinding();
			}
		} catch (CoreException e) {
			CCorePlugin.log(e);
		}
		return null;
	}

	public void setNextFriend(PDOMCPPFriend nextFriend) throws CoreException {
		long rec = nextFriend != null ? nextFriend.getRecord() : 0;
		getDB().putRecPtr(record + NEXT_FRIEND, rec);
	}

	public PDOMCPPFriend getNextFriend() throws CoreException {
		long rec = getDB().getRecPtr(record + NEXT_FRIEND);
		return rec != 0 ? new PDOMCPPFriend(getLinkage(), rec) : null;
	}

	public void delete() throws CoreException {
		getDB().free(record);
	}
}

Back to the top