Skip to main content
summaryrefslogtreecommitdiffstats
blob: dcc9a6e6bb6302eba8fe82484c9c488723740088 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * 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:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.net4j.jms.internal.server;

import org.eclipse.net4j.internal.jms.DestinationImpl;
import org.eclipse.net4j.internal.jms.MessageImpl;
import org.eclipse.net4j.internal.jms.QueueImpl;
import org.eclipse.net4j.internal.jms.TopicImpl;
import org.eclipse.net4j.internal.util.concurrent.RoundRobinList;
import org.eclipse.net4j.jms.server.IDestination;
import org.eclipse.net4j.jms.server.IStore;
import org.eclipse.net4j.jms.server.IStoreTransaction;

import javax.naming.Context;
import javax.naming.NamingException;

import java.util.Iterator;

/**
 * @author Eike Stepper
 */
public class ServerDestination implements IDestination
{
  private String name;

  private Type type;

  private RoundRobinList<ServerConsumer> consumers = new RoundRobinList<ServerConsumer>();

  public ServerDestination(String name, Type type)
  {
    this.name = name;
    this.type = type;
  }

  public String getName()
  {
    return name;
  }

  public Type getType()
  {
    return type;
  }

  public DestinationImpl bind(Context context, boolean rebind) throws NamingException
  {
    DestinationImpl destination = type == Type.QUEUE ? new QueueImpl(name) : new TopicImpl(name);
    if (rebind)
    {
      context.rebind(name, destination);
    }
    else
    {
      context.bind(name, destination);
    }

    return destination;
  }

  public boolean addConsumer(ServerConsumer consumer)
  {
    if (consumer.isDurable())
    {
      IStore store = Server.INSTANCE.getStore();
      IStoreTransaction transaction = store.startTransaction();
      transaction.consumerAdded(consumer);
      store.commitTransaction(transaction);
    }

    return consumers.add(consumer);
  }

  public boolean removeConsumer(final long consumerID)
  {
    final boolean[] modified = { false };
    consumers.executeWrites(new Runnable()
    {
      public void run()
      {
        for (Iterator<ServerConsumer> it = consumers.iterator(); it.hasNext();)
        {
          ServerConsumer consumer = it.next();
          if (consumer.getID() == consumerID)
          {
            it.remove();
            modified[0] = true;
            return;
          }
        }
      }
    });

    return modified[0];
  }

  /**
   * Called by worker thread of the server
   */
  public void handleClientMessage(IStoreTransaction transaction, MessageImpl message)
  {
    if (type == Type.QUEUE)
    {
      ServerConsumer consumer = consumers.element();
      if (consumer != null)
      {
        consumer.handleClientMessage(transaction, message);
      }
    }
    else
    {
      ServerConsumer[] consumers = this.consumers.toArray(new ServerConsumer[0]);
      for (ServerConsumer consumer : consumers)
      {
        consumer.handleClientMessage(transaction, message);
      }
    }
  }
}

Back to the top