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. AttributeError: 'NoneType' object has no attribute 'append'

    大多数是这个原因: gongzi = [] for p in [1,2,3]: gongzi = gongzi.append(p) #改为如下即可 gongzi = [] for p in [1,2, ...

  2. PostgreSQL学习手册-模式Schema(转)

    原文:http://www.cnblogs.com/stephen-liu74/archive/2012/04/25/2291526.html 一个数据库包含一个或多个命名的模式,模式又包含表.模式还 ...

  3. SKBUFFER详解

    纯属转载,不敢侵犯别人产权!! 一. SKB_BUFF的基本概念1. 一个完整的skb buff组成(1) struct sk_buff--用于维护socket buffer状态和描述信息(2) he ...

  4. Scala函数特性

    通常情况下,函数的參数是传值參数:即參数的值在它被传递给函数之前被确定.可是,假设我们须要编写一个接收參数不希望立即计算.直到调用函数内的表达式才进行真正的计算的函数. 对于这样的情况.Scala提供 ...

  5. Powerdesigner显示列名

    设置要修改的列 点击ok即可.

  6. nodejs获取参数的方法

    1 获取get的querystring参数 GET /test?name=fred&tel=0926xxx572 let aa = req.param("name"); l ...

  7. phpstudy2016 redis扩展 windows

    第一步,查看环境的信息. 第二步,根据线程是否安全.架构32位或64位下载redis扩展. http://pecl.php.net/package-stats.php 第三步,php_redis.dl ...

  8. 我与前端之间不得不说的三天两夜之html基础

    HTML 初识 分类 cs模式 client-server bs模式 Browser-server web服务本质 from socket import * def main(): service=s ...

  9. 处理函数和数组声明[条款17]---《C++必知必会》

    指向函数的指针声明和指向数组的指针声明容易混淆,原因在于函数和数组修饰符的优先级比指针修饰符的优先级高,因此通常需要使用圆括号. int *f1( );//一个返回值为 int* 的函数 int ( ...

  10. ubuntu 16.4安装卸载apache+php+mysql

    1.安装apache sudo apt-get update sudo apt-get install apache2 2.安装php5.6 添加PPA源:add-apt-repository ppa ...