Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 69fa543a3b986e84b3286c05ab388efe212ed938 (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
/*******************************************************************************
 * Copyright (c) 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.internal.core;

import java.util.HashMap;
import java.util.Map;

import org.eclipse.tcf.core.TransientPeer;
import org.eclipse.tcf.protocol.IPeer;
import org.eclipse.tcf.protocol.Protocol;

/**
 * LocalPeer object represents local end-point of TCF communication channel.
 * There should be exactly one such object in a TCF agent.
 * The object can be used to open a loop-back communication channel that allows
 * the agent to access its own services same way as remote services.
 * Note that "local" here is relative to the agent, and not same as in "local host".
 */
public class LocalPeer extends TransientPeer {

    private static Map<String,String> createAttributes() {
        Map<String, String> attrs = new HashMap<String, String>();
        attrs.put(ATTR_ID, "TCFLocal");
        attrs.put(IPeer.ATTR_SERVICE_MANGER_ID, ServiceManager.getID());
        attrs.put(IPeer.ATTR_AGENT_ID, Protocol.getAgentID());
        attrs.put(ATTR_NAME, "Local Peer");
        attrs.put(ATTR_OS_NAME, System.getProperty("os.name"));
        attrs.put(ATTR_TRANSPORT_NAME, "Loop");
        return attrs;
    }

    public LocalPeer() {
        super(createAttributes());
    }
}

Back to the top