zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.codingapi.tx.control.service.impl;
 
import com.alibaba.fastjson.JSONObject;
import com.codingapi.tx.compensate.service.CompensateService;
import com.codingapi.tx.control.service.IActionService;
import com.codingapi.tx.framework.utils.SerializerUtils;
import com.codingapi.tx.model.TransactionInvocation;
import com.lorne.core.framework.utils.encode.Base64Utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * 通知补偿
 * create by lorne on 2017/11/13
 */
@Service(value = "c")
public class ActionCServiceImpl implements IActionService {
 
 
    private Logger logger = LoggerFactory.getLogger(ActionCServiceImpl.class);
 
 
    @Autowired
    private CompensateService compensateService;
 
    @Override
    public String execute(JSONObject resObj, String json) {
 
        String cmd = resObj.toJSONString();
 
        logger.debug("accept compensate data ->" + cmd);
 
 
        String data = resObj.getString("d");
 
        String groupId = resObj.getString("g");
 
        int startState = resObj.getInteger("ss");
 
        byte[] bytes = Base64Utils.decode(data);
 
        TransactionInvocation invocation = SerializerUtils.parserTransactionInvocation(bytes);
 
        if (invocation != null) {
            logger.info("compensate method ->" + invocation.getMethodStr());
 
            boolean res = compensateService.invoke(invocation, groupId,startState);
 
            logger.info("compensate res ->" + res);
 
            if (res) {
                return "1";
            } else {
                return "0";
            }
        }
 
        return "-1";
    }
 
 
}