summaryrefslogtreecommitdiff
path: root/qpid/java/tools/src/main/java/org/apache/qpid/tools/JVMArgConfiguration.java
blob: c6abdf6c848a050151aacf91e44a1aa038a8056f (plain)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
package org.apache.qpid.tools;

import java.text.DecimalFormat;

import javax.jms.Connection;
import javax.jms.Session;

import org.apache.qpid.client.AMQConnection;

public class JVMArgConfiguration implements TestConfiguration
{
    /*
     * By default the connection URL is used.
     * This allows a user to easily specify a fully fledged URL any given property.
     * Ex. SSL parameters
     *
     * By providing a host & port allows a user to simply override the URL.
     * This allows to create multiple clients in test scripts easily,
     * without having to deal with the long URL format.
     */
    private String url = "amqp://guest:guest@clientid/testpath?brokerlist='tcp://localhost:5672'";

    private String host = "";

    private int port = -1;

    private String address = "queue; {create : always}";

    private int msg_size = 1024;

    private int random_msg_size_start_from = 1;

    private boolean cacheMessage = false;

    private boolean disableMessageID = false;

    private boolean disableTimestamp = false;

    private boolean durable = false;

    private int transaction_size = 0;

    private int ack_mode = Session.AUTO_ACKNOWLEDGE;

    private int msg_count = 10;

    private int warmup_count = 1;

    private boolean random_msg_size = false;

    private String msgType = "bytes";

    private boolean printStdDev = false;

    private int sendRate = 0;

    private boolean externalController = false;

    private boolean useUniqueDest = false; // useful when using multiple connections.

    private int ackFrequency = 100;

    private DecimalFormat df = new DecimalFormat("###.##");

    private int reportEvery = 0;

    private boolean isReportTotal = false;

    private boolean isReportHeader = true;

    private boolean isReportLatency = false;

    private int sendEOS = 0;

    private int connectionCount = 1;

    private int rollbackFrequency = 0;

    private boolean printHeaders;

    public JVMArgConfiguration()
    {

        url = System.getProperty("url",url);
        host = System.getProperty("host","");
        port = Integer.getInteger("port", -1);
        address = System.getProperty("address",address);

        msg_size  = Integer.getInteger("msg-size", 1024);
        cacheMessage = Boolean.getBoolean("cache-msg");
        disableMessageID = Boolean.getBoolean("disable-message-id");
        disableTimestamp = Boolean.getBoolean("disable-timestamp");
        durable = Boolean.getBoolean("durable");
        transaction_size = Integer.getInteger("tx",1000);
        ack_mode = Integer.getInteger("ack-mode",Session.AUTO_ACKNOWLEDGE);
        msg_count = Integer.getInteger("msg-count",msg_count);
        warmup_count = Integer.getInteger("warmup-count",warmup_count);
        random_msg_size = Boolean.getBoolean("random-msg-size");
        msgType = System.getProperty("msg-type","bytes");
        printStdDev = Boolean.getBoolean("print-std-dev");
        sendRate = Integer.getInteger("rate",0);
        externalController = Boolean.getBoolean("ext-controller");
        useUniqueDest = Boolean.getBoolean("use-unique-dest");
        random_msg_size_start_from = Integer.getInteger("random-msg-size-start-from", 1);
        reportEvery = Integer.getInteger("report-every");
        isReportTotal = Boolean.getBoolean("report-total");
        isReportHeader = (System.getProperty("report-header") == null) ? true : Boolean.getBoolean("report-header");
        isReportLatency = Boolean.getBoolean("report-latency");
        sendEOS = Integer.getInteger("send-eos");
        connectionCount = Integer.getInteger("con_count",1);
        ackFrequency = Integer.getInteger("ack-frequency");
        rollbackFrequency = Integer.getInteger("rollback-frequency");
        printHeaders = Boolean.getBoolean("print-headers");
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getUrl()
     */
    @Override
    public String getUrl()
    {
        return url;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getHost()
     */
    @Override
    public String getHost()
    {
        return host;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getPort()
     */
    @Override
    public int getPort()
    {
        return port;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getAddress()
     */
    @Override
    public String getAddress()
    {
        return address;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getAckMode()
     */
    @Override
    public int getAckMode()
    {
        return ack_mode;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getMsgCount()
     */
    @Override
    public int getMsgCount()
    {
        return msg_count;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getMsgSize()
     */
    @Override
    public int getMsgSize()
    {
        return msg_size;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getRandomMsgSizeStartFrom()
     */
    @Override
    public int getRandomMsgSizeStartFrom()
    {
        return random_msg_size_start_from;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isDurable()
     */
    @Override
    public boolean isDurable()
    {
        return durable;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isTransacted()
     */
    @Override
    public boolean isTransacted()
    {
        return transaction_size > 0;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getTransactionSize()
     */
    @Override
    public int getTransactionSize()
    {
        return transaction_size;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getWarmupCount()
     */
    @Override
    public int getWarmupCount()
    {
        return warmup_count;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isCacheMessage()
     */
    @Override
    public boolean isCacheMessage()
    {
        return cacheMessage;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isDisableMessageID()
     */
    @Override
    public boolean isDisableMessageID()
    {
        return disableMessageID;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isDisableTimestamp()
     */
    @Override
    public boolean isDisableTimestamp()
    {
        return disableTimestamp;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isRandomMsgSize()
     */
    @Override
    public boolean isRandomMsgSize()
    {
        return random_msg_size;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getMessageType()
     */
    @Override
    public String getMessageType()
    {
        return msgType;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isPrintStdDev()
     */
    @Override
    public boolean isPrintStdDev()
    {
        return printStdDev;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getSendRate()
     */
    @Override
    public int getSendRate()
    {
        return sendRate;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isExternalController()
     */
    @Override
    public boolean isExternalController()
    {
        return externalController;
    }

    public void setAddress(String addr)
    {
        address = addr;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#isUseUniqueDests()
     */
    @Override
    public boolean isUseUniqueDests()
    {
        return useUniqueDest;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getAckFrequency()
     */
    @Override
    public int getAckFrequency()
    {
        return ackFrequency;
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#createConnection()
     */
    @Override
    public Connection createConnection() throws Exception
    {
        if (getHost().equals("") || getPort() == -1)
        {
            return new AMQConnection(getUrl());
        }
        else
        {
            return new AMQConnection(getHost(),getPort(),"guest","guest","test","test");
        }
    }

    /* (non-Javadoc)
     * @see org.apache.qpid.tools.TestConfiguration#getDecimalFormat()
     */
    @Override
    public DecimalFormat getDecimalFormat()
    {
        return df;
    }

    @Override
    public int reportEvery()
    {
        return reportEvery;
    }

    @Override
    public boolean isReportTotal()
    {
        return isReportTotal;
    }

    @Override
    public boolean isReportHeader()
    {
        return isReportHeader;
    }

    @Override
    public boolean isReportLatency()
    {
        return isReportLatency;
    }

    @Override
    public int getSendEOS()
    {
        return sendEOS;
    }

    @Override
    public int getConnectionCount()
    {
        return connectionCount;
    }

    @Override
    public int getRollbackFrequency()
    {
        return rollbackFrequency;
    }

    @Override
    public boolean isPrintHeaders()
    {
        return printHeaders;
    }
}