using System;
using System.Collections.Generic;
using System.Configuration;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using TRS.Export.BLL;
using TRS.Export.Common;
using TRS.Export.Entity;
using TRS.Export.FrameEntity.Constants;
using TRS.Export.FrameEntity.Enums;
using TRS.Export.FrameProvider;
using TRS.Export.Param.Bases;
using TRS.Export.Scheduler.Interfaces;
using TRS.Export.Business;
using TRS.Export.Service.API;
using Newtonsoft.Json;

namespace TRS.Export.Scheduler.Schedulers.Pushs
{
public class PushsTaobaoApiSourceScheduler : IScheduler
{
private readonly string PCS_API = ConfigurationManager.AppSettings["PCSReceiveAPI"];

private readonly string TWX_API = ConfigurationManager.AppSettings["TaoBaoOrderAPI"];

private readonly string PCS_RECEIVE_CODES = ConfigurationManager.AppSettings["PCSReceiveCodes"];

private readonly string TWX_REJECT_CODES = ConfigurationManager.AppSettings["TWXRejectCodes"];

private readonly string PCS_RECEIVE_OPEN = ConfigurationManager.AppSettings["PCSReceiveOpen"];

private readonly string TWX_RECEIVE_OPEN = ConfigurationManager.AppSettings["TWXReceiveOpen"];

private readonly TaoBaoAPISourceBLL m_objSourceBLL = new TaoBaoAPISourceBLL();

private readonly TaoBaoAPISource_SucessBLL m_objSourceSucessBLL = new TaoBaoAPISource_SucessBLL();

private readonly string PATH = @"D:\Beyond.TWX.JobApp.Log\PushsTaobaoApiSource";
string ExceptionTel = ConfigurationManager.AppSettings["ExceptionTelNumbers"];

public int SleepInterval { get; set; }

public string[] Args { get; set; }

public PushsTaobaoApiSourceScheduler()
{
SleepInterval = 2000;
}

public void Execute()
{

if (Args == null || Args.Length == 0)
{
Console.WriteLine("参数不能为空!");
return;
}

string threadName = string.Format("报文解析后台Job-{0}", "后缀");
string[] arrays = Args[0].Split('/');

while (true)
{
List<Task> tasks = new List<Task>();
foreach (var value in arrays)
{
tasks.Add(Task.Factory.StartNew(() =>
{
ExecuteTask(value);
}));
}

Task.WaitAll(tasks.ToArray());

Console.WriteLine("当前线程:[{0}],等待{1}秒后继续...{2}", threadName, SleepInterval / 1000, DateTime.Now);

Thread.Sleep(SleepInterval);
}
}

public void ExecuteTask(string suffix)
{
string threadName = string.Format("报文解析后台Job-{0}", suffix);

Console.WriteLine("当前线程:[{0}]{1}秒后继续...{2}", threadName, 0 / 1000, DateTime.Now);

var where = new WhereHelper<TaoBaoAPISource>(a => a.DoWith.In(0, 2, 3) && a.ActionTime < 4 && a.ID.Right(suffix.Split(',')));

List<TaoBaoAPISource> list = m_objSourceBLL.Select(where, 100);
foreach (var item in list)
{
ExecuteTask(item);
}
}

public void ExecuteTask(TaoBaoAPISource source)
{

try
{
Task<ResponseParam> task_pcs = Task.Factory.StartNew<ResponseParam>(() => { return ExecuteTaskPcs(source); });

Task<ResponseParam> task_twx = Task.Factory.StartNew<ResponseParam>(() => { return ExecuteTaskTwx(source); });

Task.WaitAll(task_pcs, task_twx);

if (!task_pcs.Result.success && task_pcs.Result.msg_code == "PCS" || !task_twx.Result.success && task_twx.Result.msg_code == "TWX")
{
if (task_pcs.Result.success)
{
source.DoWith = 2;
}

if (task_twx.Result.success)
{
source.DoWith = 3;
}

ExecuteDoWith(source);

Console.WriteLine("编号:{0}分发失败,开始重新尝试!", source.ID);
}
else
{
ExecuteBackup(source);

Console.WriteLine("编号:{0}分发成功,已经备份数据!", source.ID);
}
}
catch (Exception ex)
{
if (ex != null)
{
//日志记录异常
LogHelper.Info(ex.Message + "\n" + ex.Source + "\n" + ex.StackTrace, PATH);
//发送短信
SendMessageParam param = new SendMessageParam()
{
Destination = "中国",
Mobile = String.IsNullOrEmpty(ExceptionTel) ? "13728938720" : ExceptionTel,
Message = "分发job出现异常"
};
string req_content = JsonConvert.SerializeObject(param);
ResponseParam response = new SendMessageAPI().Send(req_content);
}

}
}

#region 分发报文调用PCS接口
public ResponseParam ExecuteTaskPcs(TaoBaoAPISource source)
{
Stopwatch watch = new Stopwatch();
watch.Start();

ResponseParam resonse = new ResponseParam();

if (source.DoWith == 2)
{
resonse.success = true;
resonse.msg_code = "PCS";
resonse.msg = string.Format("编号:{0}分发PCS系统成功,不能重复分发!", source.ID);

Console.WriteLine("{0}!耗时:{1} {2} {3}", resonse.msg, 0, "", DateTime.Now);

return resonse;
}

string urlDecode = source.ApiContent.UrlDecode();
string[] pcs_codes = PCS_RECEIVE_CODES.Split('|');
foreach (var code in pcs_codes)
{
if (urlDecode.IndexOf(code) > -1)
{
resonse.success = true;

break;
}
}

if (!resonse.success)
{
resonse.msg_code = "TWX";
resonse.msg = string.Format("编号:{0}不是PCS系统订单!", source.ID);
}
else
{
resonse.msg_code = "PCS";

string result = new HttpHelper().Execute(PCS_API, source.ApiContent);
if (!result.IsNullOrEmpty())
{
resonse.msg = string.Format("编号:{0}分发PCS系统成功", source.ID);
resonse.success = result.IndexOf("true") > -1;
}
else
{
resonse.msg = string.Format("编号:{0}分发PCS系统失败", source.ID);
resonse.success = false;
}
}

watch.Stop();

Console.WriteLine("{0}!耗时:{1} {2} {3}", resonse.msg, watch.ElapsedMilliseconds / 1000.00, "", DateTime.Now);

return resonse;
}
#endregion

#region 分发报文到TWX接口
public ResponseParam ExecuteTaskTwx(TaoBaoAPISource source)
{
Stopwatch watch = new Stopwatch();
watch.Start();

ResponseParam resonse = new ResponseParam();

if (source.DoWith == 3)
{
resonse.success = true;
resonse.msg_code = "TWX";
resonse.msg = string.Format("编号:{0}分发TWX系统成功,不能重复分发!", source.ID);

Console.WriteLine("{0}!耗时:{1} {2} {3}", resonse.msg, 0, "", DateTime.Now);

return resonse;
}

string urlDecode = source.ApiContent.UrlDecode();
string[] twx_codes = TWX_REJECT_CODES.Split('|');
foreach (var code in twx_codes)
{
if (urlDecode.IndexOf(code) > -1)
{
resonse.success = true;

break;
}
}

if (resonse.success)
{
resonse.success = false;
resonse.msg_code = "PCS";
resonse.msg = string.Format("编号:{0}不是TWX系统订单!", source.ID);
}
else
{
resonse.msg_code = "TWX";

string result = new HttpHelper().Execute(TWX_API, source.ApiContent);
if (!result.IsNullOrEmpty())
{
resonse.msg = string.Format("编号:{0}分发TWX系统成功", source.ID);
resonse.success = result.IndexOf("true") > -1;
}
else
{
resonse.msg = string.Format("编号:{0}分发TWX系统失败", source.ID);
resonse.success = false;
}
}

watch.Stop();

Console.WriteLine("{0}!耗时:{1} {2} {3}", resonse.msg, watch.ElapsedMilliseconds / 1000.00, "", DateTime.Now);

return resonse;
}
#endregion

public ResponseParam ExecuteBackup(TaoBaoAPISource source)
{
ResponseParam response = new ResponseParam();

string content = source.ApiContent.UrlDecode();
string tradeOrderId = StringHelper.GetValueByCutStr(ref content, "<tradeOrderId>", "</tradeOrderId>", false);
if (string.IsNullOrEmpty(tradeOrderId))
{
tradeOrderId = StringHelper.GetValueByCutStr(ref content, "<logisticsOrderCode>", "</logisticsOrderCode>", false);
}

string columns = "ID,ApiContent,CreateTime,FinishTime,TradeOrderID";
string values = "@ID,@ApiContent,@CreateTime,@FinishTime,@TradeOrderID";
string strTableName = string.Format("TaoBaoAPISource_Sucess_Log{0}", DateTime.Today.ToString("yyMM"));
string commandText = string.Format(SqlConstants.SQL_INSERT_FORMAT, strTableName, columns, values);
string connectionString = ConfigurationManager.AppSettings["SqlServer0"];

var param = new { ID = source.ID, ApiContent = source.ApiContent, CreateTime = source.CreateTime, FinishTime = DateTime.Now, TradeOrderID = (tradeOrderId ?? "").Trim() };

int effect = DapperSqlHelper.Execute(commandText, param, connectionString);

response.success = effect > 0;
if (response.success)
{
m_objSourceBLL.Delete(source);
}

return response;
}

public void ExecuteDoWith(TaoBaoAPISource source)
{
TaoBaoAPISource update = new TaoBaoAPISource();
update.ID = source.ID;
update.DoWith = source.DoWith;

if (source.DoWith != 0)
{
update.ActionTime = source.ActionTime + 1;
}

m_objSourceBLL.Update(update);
}
}
}

淘海外分发Job 多线程demo的更多相关文章

  1. Java中的多线程Demo

    一.关于Java多线程中的一些概念 1.1 线程基本概念 从JDK1.5开始,Java提供了3中方式来创建.启动多线程: 方式一(不推荐).通过继承Thread类来创建线程类,重写run()方法作为线 ...

  2. Python简单的多线程demo:装逼写法

    用面向对象来写多线程: import threading class MyThread(threading.Thread): def __init__(self, n): super(MyThread ...

  3. Python简单的多线程demo:常用写法

    简单多线程实现:启动50个线程,并计算执行时间. import threading import time def run(n): time.sleep(3) print("task:&qu ...

  4. 多线程demo,订单重复支付

    背景描述,一个商城网站,一个订单支付方案有多个1.金额支付2.积分支付3.工资支付(分期和全额),所以一个订单的方案可能有1:有1.2,或1.2.3 状态,1.订单状态,2,支付状态==>多方案 ...

  5. 有返回值的多线程demo

    package com.jimmy.demo.util; import java.util.HashMap;import java.util.concurrent.*;import java.util ...

  6. 多线程Demo

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  7. pThread多线程demo

    #import "ViewController.h" #import <pthread.h> @interface ViewController () @end @im ...

  8. Java的Socket通信----通过 Socket 实现 TCP 编程之多线程demo(2)

    JAVA Socket简介 所谓socket 通常也称作”套接字“,用于描述IP地址和端口,是一个通信链的句柄.应用程序通常通过”套接字”向网络发出请求或者应答网络请求. import java.io ...

  9. c++11 跨平台多线程demo和qt 静态链接(std::thread有join函数,设置 QMAKE_LFLAGS = -static)

    #include <stdio.h>#include <stdlib.h> #include <chrono> // std::chrono::seconds#in ...

随机推荐

  1. SqlServer SqlBulkCopy批量插入 -- 多张表同时插入(事务)

    这段时间在解决一个多个表需要同时插入大量数据的问题,于是在网上找了下,查到说用SqlBulkCopy效率很高,实验后确实很快,10万条数据只要4秒钟,用ef要用40秒.但是我的还需两张表同时插入,且需 ...

  2. areas表-省市区

    不全,缺少台湾省.香港.澳门:新疆重复了 /* Navicat MySQL Data Transfer Source Server : win7_local Source Server Version ...

  3. 网页中Cache各字段含义

    Pragma 当该字段值为"no-cache"的时候(事实上现在RFC中也仅标明该可选值),会知会客户端不要对该资源读缓存,即每次都得向服务器发一次请求才行. Expires 有了 ...

  4. shiro 密码如何验证?

    Authentication:身份认证/登录,验证用户是不是拥有相应的身份. Authorization:授权,即权限验证,验证某个已认证的用户是否拥有某个权限:即判断用户是否能做事情. 这里我们主要 ...

  5. css3 利用dispaly:flex

    直接上代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UT ...

  6. web Servlet 3.0 新特性之web模块化编程,web-fragment.xml编写及打jar包

    web Servlet 3.0 模块化 原本一个web应用的任何配置都需要在web.xml中进行,因此会使得web.xml变得很混乱,而且灵活性差,因此Servlet 3.0可以将每个Servlet. ...

  7. beego——发行部署

    开发模式 通过bee创建的项目,beego默认情况下是开发模式. 我们可以通过如下的方式改变我们的模式: beego.RunMode = "prod" 或者我们在conf/app. ...

  8. C# 获取计算机cpu 硬盘 网卡信息

    /// <summary>/// 机器码         /// </summary>       public class MachineCode         {     ...

  9. 用74HC165读8个按键状态

    源:用74HC165读8个按键状态 源:74LV165与74HC595 使用 74LV165说明: 74LV165是8位并行负载或串行输入移位寄存器,末级提供互补串行输出(Q7和Q7).并行负载(PL ...

  10. JAVA面试题整理(4)-Netty

    1.BIO.NIO和AIO 2.Netty 的各大组件 3.Netty的线程模型 4.TCP 粘包/拆包的原因及解决方法 5.了解哪几种序列化协议?包括使用场景和如何去选择 6.Netty的零拷贝实现 ...