All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cosylab.epics.caj.impl.requests.SearchRequest Maven / Gradle / Ivy

Go to download

JCA is an EPICS Channel Access library for Java. For more information concerning EPICS or Channel Access please refer to the <a href="http://www.aps.anl.gov/epics">EPICS Web pages</a> or read the <a href="http://www.aps.anl.gov/epics/base/R3-14/8-docs/CAref.html">Channel Access manual (3.14)</a>. <p>This module also includes CAJ, A 100% pure Java implementation of the EPICS Channel Access library.</p>

There is a newer version: 2.4.10
Show newest version
/*
 * Copyright (c) 2004 by Cosylab
 *
 * The full license specifying the redistribution, modification, usage and other
 * rights and obligations is included with the distribution of this project in
 * the file "LICENSE-CAJ". If the license is not included visit Cosylab web site,
 * .
 *
 * THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND, NOT EVEN THE
 * IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR OF THIS SOFTWARE, ASSUMES
 * _NO_ RESPONSIBILITY FOR ANY CONSEQUENCE RESULTING FROM THE USE, MODIFICATION,
 * OR REDISTRIBUTION OF THIS SOFTWARE.
 */

package com.cosylab.epics.caj.impl.requests;

import java.nio.ByteBuffer;

import com.cosylab.epics.caj.impl.CAConstants;
import com.cosylab.epics.caj.impl.Transport;

/**
 * CA search request.
 * @author Matej Sekoranja
 * @version $id$
 */
public class SearchRequest extends AbstractCARequest {

	/**
	 * @param transport
	 */
	public SearchRequest(Transport transport, String name, int cid) {
		super(transport);
		requestMessage = generateSearchRequestMessage(transport, null, name, cid);
	}

	/**
	 * Generate search request message.
	 * @param transport transport to be used when sending.
	 * @param requestMessage buffer to be filled
	 * @param name channel name
	 * @param cid channel id
	 * @return null if failed to put message on existing requestMessage.
	 */
	public static final ByteBuffer generateSearchRequestMessage(Transport transport, ByteBuffer requestMessage,
			String name, int cid)
	{
		if (name.length() > Math.min(CAConstants.MAX_UDP_SEND - CAConstants.CA_MESSAGE_HEADER_SIZE, 0xFFFF))
			throw new IllegalArgumentException("name too long");

		int alignedMessageSize = calculateAlignedSize(8, CAConstants.CA_MESSAGE_HEADER_SIZE + name.length() + 1);
		if (requestMessage == null)
			requestMessage = ByteBuffer.allocate(alignedMessageSize);
		else if (requestMessage.remaining() < alignedMessageSize)
			return null;
		requestMessage = insertCAHeader(transport, requestMessage,
										(short)6, (short)(alignedMessageSize - CAConstants.CA_MESSAGE_HEADER_SIZE),
										CAConstants.CA_SEARCH_DONTREPLY, transport.getMinorRevision(),
										cid, cid);
		// append zero-terminated string and align message
		requestMessage.put(name.getBytes());
		requestMessage.put((byte)0);
		requestMessage = alignBuffer(8, requestMessage);
		
		return requestMessage;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy