From 829f629756e5402bcd3e9f6ef1f9c6dbffbabb11 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Wed, 17 Apr 2024 14:46:29 +0800
Subject: [PATCH] 55测试环境

---
 src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java |  211 ++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 201 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..e5f74f2 100644
--- a/src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java
+++ b/src/main/java/com/xcong/excoin/configurations/RabbitMqConfig.java
@@ -21,37 +21,80 @@
 @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_xch";
+
+    public static final String ROUTING_KEY_USDT_UPDATE = "routing_key_usdt_update_xch";
+
+    public static final String EXCHANGE_USDT_ADDRESS = "exchange_usdt_address";
+
+    public static final String QUEUE_USDT_ADDRESS= "queue_usdt_address_xch";
+
+    public static final String ROUTING_KEY_USDT_ADDRESS = "routing_key_usdt_address_xch";
+
+    public static final String QUEUE_XCH_USDT_PRIFIT = "QUEUE_XCH_USDT_PRIFIT";
+    public static final String ROUTING_KEE_XCH_USDT_PRIFIT = "ROUTING_KEE_XCH_USDT_PRIFIT";
+    public static final String EXCHANGE_XCH = "EXCHANGE_XCH";
+
+    public static final String QUEUE_XCH_AUTO_AGENT = "QUEUE_XCH_AUTO_AGENT";
+    public static final String ROUTING_KEY_XCH_AUTO_AGENT = "ROUTING_KEY_XCH_AUTO_AGENT";
+
+
+    /**
+     * 撮合交易
+     */
+    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_LIMIT_CLOSE = "QUEUE_LIMIT_CLOSE_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_WHOLE_BOMB = "QUEUE_WHOLE_BOMB_NEW";
 
+    // 全仓价格操作
+    public static final String QUEUE_WHOLE_PRICE = "QUEUE_WHOLE_PRCE";
+
+    // 跟单下单
+    public static final String QUEUE_FOLLOW_ORDER = "QUEUE_FOLLOW_ORDER";
+
+    public static final String ROUTINGKEY_FOLLOW_ORDER = "ROUTINGKEY_FOLLOW_ORDER";
+
+    // 跟单调整保证金
+    public static final String QUEUE_FOLLOW_CHANGE_BOND = "QUEUE_FOLLOW_CHANGE_BOND";
+
+    public static final String ROUTINGKEY_FOLLOW_CHANGE_BOND = "ROUTINGKEY_FOLLOW_CHANGE_BOND";
 
     // 开多止盈路由键
     public static final String ROUTINGKEY_MOREPRO = "ROUTINGKEY_MOREPRO";
@@ -72,6 +115,15 @@
     public static final String ROUTINGKEY_PRICEOPERATE = "ROUTINGKEY_PRICEOPERATE";
     // 平仓路由
     public static final String ROUTINGKEY_CLOSETRADE = "ROUTINGKEY_CLOSETRADE";
+
+    // 委托平仓
+    public static final String ROUTINGKEY_LIMIT_CLOSE = "ROUTINGKEY_LIMIT_CLOSE";
+
+    // 全仓爆仓
+    public static final String ROUTINGKEY_WHOLE_BOMB = "ROUTINGKEY_WHOLE_BOMB";
+
+    // 全仓价格操作
+    public static final String ROUTINGKEY_WHOLE_PRICE = "ROUTINGKEY_WHOLE_PRICE";
 
     @Resource
     private ConnectionFactory connectionFactory;
@@ -97,6 +149,31 @@
     }
 
     @Bean
+    public DirectExchange xchExchange() {
+        return new DirectExchange(EXCHANGE_XCH);
+    }
+
+    @Bean
+    public Queue xchUsdtProfitQueue() {
+        return new Queue(QUEUE_XCH_USDT_PRIFIT, true);
+    }
+
+    @Bean
+    public Binding xchUsdtProfitBinding() {
+        return BindingBuilder.bind(xchUsdtProfitQueue()).to(xchExchange()).with(ROUTING_KEE_XCH_USDT_PRIFIT);
+    }
+
+    @Bean
+    public Queue xchAutoAgentQueue() {
+        return new Queue(QUEUE_XCH_AUTO_AGENT, true);
+    }
+
+    @Bean
+    public Binding xchAutoAgentBinding() {
+        return BindingBuilder.bind(xchAutoAgentQueue()).to(xchExchange()).with(ROUTING_KEY_XCH_AUTO_AGENT);
+    }
+
+    @Bean
     public Queue testQueue() {
         return new Queue(QUEUE_TEST, true);
     }
@@ -104,6 +181,39 @@
     @Bean
     public Binding binding() {
         return BindingBuilder.bind(testQueue()).to(defaultExchange()).with(ROUTING_KEY_TEST);
+    }
+
+
+   @Bean
+    public DirectExchange usdtUpdateExchange() {
+        return new DirectExchange(EXCHANGE_XCH);
+    }
+
+
+    @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_XCH);
+    }
+
+
+    @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);
     }
 
 
@@ -118,9 +228,9 @@
     }
 
 
-
     /**
      * 开多止盈队列
+     *
      * @return
      */
     @Bean
@@ -131,6 +241,7 @@
 
     /**
      * 开空止盈队列
+     *
      * @return
      */
     @Bean
@@ -141,6 +252,7 @@
 
     /**
      * 开多止损
+     *
      * @return
      */
     @Bean
@@ -151,6 +263,7 @@
 
     /**
      * 开空止损
+     *
      * @return
      */
     @Bean
@@ -161,6 +274,7 @@
 
     /**
      * 限价委托
+     *
      * @return
      */
     @Bean
@@ -168,9 +282,20 @@
         return new Queue(QUEUE_LIMIT, true);
     }
 
+    /**
+     * 委托平仓
+     *
+     * @return
+     */
+    @Bean
+    public Queue queueLimitClose() {
+        return new Queue(QUEUE_LIMIT_CLOSE, true);
+    }
+
 
     /**
      * 爆仓
+     *
      * @return
      */
     @Bean
@@ -180,6 +305,7 @@
 
     /**
      * 价格操作
+     *
      * @return
      */
     @Bean
@@ -189,6 +315,7 @@
 
     /**
      * 价格操作
+     *
      * @return
      */
     @Bean
@@ -196,10 +323,48 @@
         return new Queue(QUEUE_CLOSETRADE, true);
     }
 
+    @Bean
+    public Queue queueWholePrice() {
+        return new Queue(QUEUE_WHOLE_PRICE, true);
+    }
+    /**
+     * 全仓爆仓
+     * @return
+     */
+    @Bean
+    public Queue queueWholeBomb() {
+        return new Queue(QUEUE_WHOLE_BOMB, true);
+    }
 
+    @Bean
+    public Queue queueFollowOrder() {
+        return new Queue(QUEUE_FOLLOW_ORDER, true);
+    }
+
+    @Bean
+    public Queue queueFollowChangeBond() {
+        return new Queue(QUEUE_FOLLOW_CHANGE_BOND, true);
+    }
+
+    @Bean
+    public Binding bindingFollowChangeBond() {
+        return BindingBuilder.bind(queueFollowChangeBond()).to(orderExchange()).with(ROUTINGKEY_FOLLOW_CHANGE_BOND);
+    }
+
+    @Bean
+    public Binding bindingFollowOrder() {
+        return BindingBuilder.bind(queueFollowOrder()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_FOLLOW_ORDER);
+    }
+
+
+    @Bean
+    public Binding bindingWholePrice() {
+        return BindingBuilder.bind(queueWholePrice()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_WHOLE_PRICE);
+    }
 
     /**
      * 开多止盈
+     *
      * @return
      */
     @Bean
@@ -209,6 +374,7 @@
 
     /**
      * 开空止盈
+     *
      * @return
      */
     @Bean
@@ -218,6 +384,7 @@
 
     /**
      * 开多止损
+     *
      * @return
      */
     @Bean
@@ -227,6 +394,7 @@
 
     /**
      * 开空止损
+     *
      * @return
      */
     @Bean
@@ -237,6 +405,7 @@
 
     /**
      * 委托
+     *
      * @return
      */
     @Bean
@@ -244,9 +413,19 @@
         return BindingBuilder.bind(queueLimit()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_LIMIT);
     }
 
+    /**
+     * 委托平仓
+     *
+     * @return
+     */
+    @Bean
+    public Binding bindingLimitClose() {
+        return BindingBuilder.bind(queueLimitClose()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_LIMIT_CLOSE);
+    }
 
     /**
      * 爆仓
+     *
      * @return
      */
     @Bean
@@ -257,6 +436,7 @@
 
     /**
      * 价格操作
+     *
      * @return
      */
     @Bean
@@ -266,6 +446,7 @@
 
     /**
      * 平仓绑定
+     *
      * @return
      */
     @Bean
@@ -273,4 +454,14 @@
         return BindingBuilder.bind(queueCloseTrade()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_CLOSETRADE);
     }
 
+    /**
+     * 全仓爆仓绑定
+     *
+     * @return
+     */
+    @Bean
+    public Binding bindingWholeBomb() {
+        return BindingBuilder.bind(queueWholeBomb()).to(orderExchange()).with(RabbitMqConfig.ROUTINGKEY_WHOLE_BOMB);
+    }
+
 }

--
Gitblit v1.9.1