From 36be00e0f3cbe0d559c646fd2977e6e3a74aa6f9 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 30 Sep 2024 16:57:22 +0800 Subject: [PATCH] Merge branch 'bea' of http://120.27.238.55:7000/r/exchange into bea --- src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java | 290 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 280 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java b/src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java index 7be7a45..bedc53d 100644 --- a/src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java +++ b/src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java @@ -21,36 +21,60 @@ @Configuration public class RabbitMqConfig { - public static final String EXCHANGE_ONE = "excoin-exchange-one"; + public static final String EXCHANGE_ONE = "biue-exchange-one"; public static final String QUEUE_TEST = "test-queue"; public static final String ROUTING_KEY_TEST = "test-routingKey"; - public static final String EXCHANGE_A = "biyi-exchange-A"; + public static final String EXCHANGE_A = "biue-exchange-A"; + + + public static final String EXCHANGE_USDT_UPDATE = "exchange_usdt_update"; + + public static final String QUEUE_USDT_UPDATE = "queue_usdt_update"; + + public static final String ROUTING_KEY_USDT_UPDATE = "routing_key_usdt_update"; + + public static final String EXCHANGE_USDT_ADDRESS = "exchange_usdt_address"; + + public static final String QUEUE_USDT_ADDRESS= "queue_usdt_address"; + + public static final String ROUTING_KEY_USDT_ADDRESS = "routing_key_usdt_address"; + + + /** + * 撮合交易 + */ + public static final String EXCHANGE_B = "biue-exchange-B"; // 开多止盈队列 - public static final String QUEUE_MOREPRO = "QUEUE_MOREPRO"; + public static final String QUEUE_MOREPRO = "QUEUE_MOREPRO_NEW"; // 开空止盈队列 - public static final String QUEUE_LESSPRO = "QUEUE_LESSPRO"; + public static final String QUEUE_LESSPRO = "QUEUE_LESSPRO_NEW"; // 开多止损队列 - public static final String QUEUE_MORELOSS = "QUEUE_MORELOSS"; + public static final String QUEUE_MORELOSS = "QUEUE_MORELOSS_NEW"; // 开空止损队列 - public static final String QUEUE_LESSLOSS = "QUEUE_LESSLOSS"; + public static final String QUEUE_LESSLOSS = "QUEUE_LESSLOSS_NEW"; // 限价委托 public static final String QUEUE_LIMIT = "QUEUE_LIMIT_NEW"; // 爆仓队列 - public static final String QUEUE_COINOUT = "QUEUE_COINOUT"; + public static final String QUEUE_COINOUT = "QUEUE_COINOUT_NEW"; //价格操作 - public static final String QUEUE_PRICEOPERATE = "QUEUE_PRICEOPERATE"; + public static final String QUEUE_PRICEOPERATE = "QUEUE_PRICEOPERATE_NEW"; // 平仓队列 - public static final String QUEUE_CLOSETRADE = "QUEUE_CLOSETRADE"; + public static final String QUEUE_CLOSETRADE = "QUEUE_CLOSETRADE_NEW"; + // 盘口队列 + public static final String QUEUE_TRADE_PLATE = "QUEUE_TRADE_PLATE"; + + // 处理交易 + public static final String QUEUE_HANDLE_TRADE = "QUEUE_HANDLE_TRADE"; // 开多止盈路由键 @@ -73,6 +97,48 @@ // 平仓路由 public static final String ROUTINGKEY_CLOSETRADE = "ROUTINGKEY_CLOSETRADE"; + // 盘口理路由 + public static final String ROUTINGKEY_TRADE_PLATE = "ROUTINGKEY_TRADE_PLATE"; + + // 交易订单处理 + public static final String ROUTINGKEY_HANDLE_TRADE = "ROUTINGKEY_HANDLE_TRADE"; + + public static final String EXCHANGE_ROC = "roc-transfer"; + + public static final String QUEUE_ROC= "roc-queue"; + + public static final String ROUTING_KEY_ROC = "roc-transfer-routingKey"; + + public static final String EXCHANGE_ROC_ORDER_SUBMIT = "roc-exchange-order-submit"; + + public static final String QUEUE_ROC_ORDER_SUBMIT = "roc-order-queue-submit"; + + public static final String ROUTING_KEY_ROC_ORDER_SUBMIT = "roc-order-routingKey-submit"; + + public static final String EXCHANGE_ROC_ORDER_CANCEL = "roc-exchange-order-cancel"; + + public static final String QUEUE_ROC_ORDER_CANCEL = "roc-order-queue-cancel"; + + public static final String ROUTING_KEY_ROC_ORDER_CANCEL = "roc-order-routingKey-cancel"; + + public static final String EXCHANGE_ROC_ORDER_COMPLETE = "roc-exchange-order-complete"; + + public static final String QUEUE_ROC_ORDER_COMPLETE = "roc-order-queue-complete"; + + public static final String ROUTING_KEY_ROC_ORDER_COMPLETE = "roc-order-routingKey-complete"; + + public static final String QUEUE_TRC20_BLOCK = "QUEUE_TRC20_BLOCK"; + public static final String ROUTING_TRC20_BLOCK = "ROUTING_TRC20_BLOCK"; + + public static final String QUEUE_MSG_HISTORY = "queue_msg_history"; + public static final String ROUTING_KEY_MSG_HISTORY = "routing_key_msg_history"; + + public static final String ROUTINGKEY_MARKET_BUSSINESS = "ROUTINGKEY_MARKET_BUSSINESS"; + public static final String QUEUE_MARKET_BUSSINESS = "QUEUE_MARKET_BUSSINESS"; + + public static final String QUEUE_ORDER_RETURN = "QUEUE_ORDER_RETURN"; + public static final String ROUTING_ORDER_RETURN = "ROUTING_ORDER_RETURN"; + @Resource private ConnectionFactory connectionFactory; @@ -85,6 +151,39 @@ // return connectionFactory; // } + // ========= otc start ============= + @Bean + public Queue orderReturnQueue() { + return new Queue(QUEUE_ORDER_RETURN); + } + + @Bean + public Binding orderReturnBinding() { + return BindingBuilder.bind(orderReturnQueue()).to(defaultExchange()).with(ROUTING_ORDER_RETURN); + } + + @Bean + public Queue marketBussinessQueue() { + return new Queue(QUEUE_MARKET_BUSSINESS); + } + + @Bean + public Binding marketBussinessBinding() { + return BindingBuilder.bind(marketBussinessQueue()).to(defaultExchange()).with(ROUTINGKEY_MARKET_BUSSINESS); + } + + @Bean + public Queue msgHistoryQueue() { + return new Queue(QUEUE_MSG_HISTORY); + } + + @Bean + public Binding msgHistoryBinding() { + return BindingBuilder.bind(msgHistoryQueue()).to(defaultExchange()).with(ROUTING_KEY_MSG_HISTORY); + } + // ========= otc end ============= + + @Bean @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) public RabbitTemplate rabbitTemplate() { @@ -96,6 +195,7 @@ return new DirectExchange(EXCHANGE_ONE); } + @Bean public Queue testQueue() { return new Queue(QUEUE_TEST, true); @@ -104,6 +204,99 @@ @Bean public Binding binding() { return BindingBuilder.bind(testQueue()).to(defaultExchange()).with(ROUTING_KEY_TEST); + } + + // 交易订单 + @Bean + public DirectExchange orderSubmitExchange() { + return new DirectExchange(EXCHANGE_ROC_ORDER_SUBMIT); + } + + + @Bean + public Queue ordereSubmitQueue() { + return new Queue(QUEUE_ROC_ORDER_SUBMIT, true); + } + + @Bean + public Binding bindingSubmitOrder() { + return BindingBuilder.bind(ordereSubmitQueue()).to(orderSubmitExchange()).with(ROUTING_KEY_ROC_ORDER_SUBMIT); + } + + // 交易订单 + @Bean + public DirectExchange orderCancelExchange() { + return new DirectExchange(EXCHANGE_ROC_ORDER_CANCEL); + } + + + @Bean + public Queue ordereCancelQueue() { + return new Queue(QUEUE_ROC_ORDER_CANCEL, true); + } + + @Bean + public Binding bindingCancelOrder() { + return BindingBuilder.bind(ordereCancelQueue()).to(orderCancelExchange()).with(ROUTING_KEY_ROC_ORDER_CANCEL); + } + // 交易订单 + @Bean + public DirectExchange orderCompleteExchange() { + return new DirectExchange(EXCHANGE_ROC_ORDER_COMPLETE); + } + + + @Bean + public Queue ordereCompleteQueue() { + return new Queue(QUEUE_ROC_ORDER_COMPLETE, true); + } + + @Bean + public Binding bindingCompleteOrder() { + return BindingBuilder.bind(ordereCompleteQueue()).to(orderCompleteExchange()).with(ROUTING_KEY_ROC_ORDER_COMPLETE); + } + + + @Bean + public DirectExchange usdtUpdateExchange() { + return new DirectExchange(EXCHANGE_USDT_UPDATE); + } + + + @Bean + public Queue usdtUpdateQueue() { + return new Queue(QUEUE_USDT_UPDATE, true); + } + + @Bean + public Binding usdtUpdatebinding() { + return BindingBuilder.bind(usdtUpdateQueue()).to(usdtUpdateExchange()).with(ROUTING_KEY_USDT_UPDATE); + } + + @Bean + public DirectExchange usdtAddressExchange() { + return new DirectExchange(EXCHANGE_USDT_ADDRESS); + } + + + @Bean + public Queue usdtAddressQueue() { + return new Queue(QUEUE_USDT_ADDRESS, true); + } + + @Bean + public Binding usdtAddressbinding() { + return BindingBuilder.bind(usdtAddressQueue()).to(usdtAddressExchange()).with(ROUTING_KEY_USDT_ADDRESS); + } + + @Bean + public Queue trc20Queue() { + return new Queue(QUEUE_TRC20_BLOCK); + } + + @Bean + public Binding trc20Binding() { + return BindingBuilder.bind(trc20Queue()).to(defaultExchange()).with(ROUTING_TRC20_BLOCK); } @@ -118,9 +311,9 @@ } - /** * 开多止盈队列 + * * @return */ @Bean @@ -131,6 +324,7 @@ /** * 开空止盈队列 + * * @return */ @Bean @@ -141,6 +335,7 @@ /** * 开多止损 + * * @return */ @Bean @@ -151,6 +346,7 @@ /** * 开空止损 + * * @return */ @Bean @@ -161,6 +357,7 @@ /** * 限价委托 + * * @return */ @Bean @@ -171,6 +368,7 @@ /** * 爆仓 + * * @return */ @Bean @@ -180,6 +378,7 @@ /** * 价格操作 + * * @return */ @Bean @@ -189,6 +388,7 @@ /** * 价格操作 + * * @return */ @Bean @@ -197,9 +397,30 @@ } + /** + * 盘口推送 + * + * @return + */ + @Bean + public Queue queuePlateTrade() { + return new Queue(QUEUE_TRADE_PLATE, true); + } + + /** + * 交易订单处理 + * + * @return + */ + @Bean + public Queue queueHandleTrade() { + return new Queue(QUEUE_HANDLE_TRADE, true); + } + /** * 开多止盈 + * * @return */ @Bean @@ -209,6 +430,7 @@ /** * 开空止盈 + * * @return */ @Bean @@ -218,6 +440,7 @@ /** * 开多止损 + * * @return */ @Bean @@ -227,6 +450,7 @@ /** * 开空止损 + * * @return */ @Bean @@ -237,6 +461,7 @@ /** * 委托 + * * @return */ @Bean @@ -247,6 +472,7 @@ /** * 爆仓 + * * @return */ @Bean @@ -257,6 +483,7 @@ /** * 价格操作 + * * @return */ @Bean @@ -266,6 +493,7 @@ /** * 平仓绑定 + * * @return */ @Bean @@ -273,4 +501,46 @@ return BindingBuilder.bind(queueCloseTrade()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_CLOSETRADE); } + + @Bean + public DirectExchange matchTradeExchange() { + return new DirectExchange(EXCHANGE_B); + } + + /** + * 盘口变化绑定 + * + * @return + */ + @Bean + public Binding bindingPlateTrade() { + return BindingBuilder.bind(queuePlateTrade()).to(matchTradeExchange()).with(RabbitMqConfig.ROUTINGKEY_TRADE_PLATE); + } + + /** + * 交易订单处理 + * + * @return + */ + @Bean + public Binding bindingHandleTrade() { + return BindingBuilder.bind(queueHandleTrade()).to(matchTradeExchange()).with(RabbitMqConfig.ROUTINGKEY_HANDLE_TRADE); + } + + @Bean + public DirectExchange rocExchange() { + return new DirectExchange(EXCHANGE_ROC); + } + + + @Bean + public Queue rocQueue() { + return new Queue(QUEUE_ROC, true); + } + + @Bean + public Binding bindingRoc() { + return BindingBuilder.bind(rocQueue()).to(rocExchange()).with(ROUTING_KEY_ROC); + } + } -- Gitblit v1.9.1