Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* MIT License
*
* Copyright (c) 2018 Rishabh Joshi
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.github.rishabh9.riko.upstox.feed;
import com.github.rishabh9.riko.upstox.common.Service;
import com.github.rishabh9.riko.upstox.common.models.ApiCredentials;
import com.github.rishabh9.riko.upstox.common.models.UpstoxResponse;
import com.github.rishabh9.riko.upstox.feed.models.Feed;
import com.github.rishabh9.riko.upstox.feed.models.SubscriptionResponse;
import com.github.rishabh9.riko.upstox.login.models.AccessToken;
import com.google.common.base.Strings;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import javax.annotation.Nonnull;
import java.util.Objects;
import java.util.concurrent.CompletableFuture;
public class FeedService extends Service {
private static final Logger log = LogManager.getLogger(FeedService.class);
public FeedService(@Nonnull final AccessToken accessToken,
@Nonnull final ApiCredentials credentials) {
super(Objects.requireNonNull(accessToken), Objects.requireNonNull(credentials));
}
/**
* Get live feed information about a single instrument.
*
* @param exchange Name of the exchange. Mandatory.
* @param symbol Trading symbol. Mandatory.
* @param type 'ltp' or 'full'. Either. Mandatory.
* @return Instant of a live Feed
*/
public CompletableFuture> liveFeed(@Nonnull final String exchange,
@Nonnull final String symbol,
@Nonnull final String type) {
log.debug("Validate parameters - GET Live Feed");
validatePathParameters(exchange, symbol, type);
log.debug("Preparing service - GET Live Feed");
final FeedApi api = prepareServiceApi(FeedApi.class);
log.debug("Making request - GET Live Feed");
return api.liveFeed(exchange, symbol, type);
}
/**
* Subscribe to the feed.
*
* @param type 'ltp' or 'full'. Either. Mandatory.
* @param exchange Name of the exchange. Mandatory.
* @param symbolsCsv Comma separated list of trading symbols
* @return Confirmation response
*/
public CompletableFuture> subscribe(@Nonnull final String type,
@Nonnull final String exchange,
@Nonnull final String symbolsCsv) {
log.debug("Validate parameters - GET Subscribe");
validatePathParameters(exchange, type, symbolsCsv);
log.debug("Preparing service - GET Subscribe");
final FeedApi api = prepareServiceApi(FeedApi.class);
log.debug("Making request - GET Subscribe");
return api.subscribe(type, exchange, symbolsCsv);
}
/**
* Unsubscribe to the feed.
*
* @param type 'ltp' or 'full'. Either. Mandatory.
* @param exchange Name of the exchange. Mandatory.
* @param symbolsCsv Comma separated list of trading symbols
* @return Confirmation response
*/
public CompletableFuture> unsubscribe(@Nonnull final String type,
@Nonnull final String exchange,
@Nonnull final String symbolsCsv) {
log.debug("Validate parameters - GET Unsubscribe");
validatePathParameters(exchange, type, symbolsCsv);
log.debug("Preparing service - GET Unsubscribe");
final FeedApi api = prepareServiceApi(FeedApi.class);
log.debug("Making request - GET Unsubscribe");
return api.unsubscribe(type, exchange, symbolsCsv);
}
private void validatePathParameters(String... values) {
for (String value : values) {
if (Strings.isNullOrEmpty(value)) {
log.error("Argument validation failed. " +
"Arguments 'exchange', 'symbol(s)' and 'type' are mandatory.");
throw new IllegalArgumentException(
"Arguments 'exchange', 'symbol(s)' and 'type' are mandatory. " +
"They cannot be null nor empty.");
}
}
}
}