Browse Source
* [Feature] add state history for process instance (#97) * add state history for process instance * upsertProcessInstance * remove unuse method * fix UT Co-authored-by: caishunfeng <534328519@qq.com>3.1.0-release
caishunfeng
2 years ago
committed by
GitHub
22 changed files with 253 additions and 124 deletions
@ -0,0 +1,35 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.apache.dolphinscheduler.dao.repository; |
||||
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessInstance; |
||||
|
||||
|
||||
public interface ProcessInstanceDao { |
||||
|
||||
public int insertProcessInstance(ProcessInstance processInstance); |
||||
|
||||
public int updateProcessInstance(ProcessInstance processInstance); |
||||
|
||||
/** |
||||
* insert or update work process instance to database |
||||
* |
||||
* @param processInstance processInstance |
||||
*/ |
||||
public int upsertProcessInstance(ProcessInstance processInstance); |
||||
} |
@ -0,0 +1,55 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.apache.dolphinscheduler.dao.repository.impl; |
||||
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessInstance; |
||||
import org.apache.dolphinscheduler.dao.mapper.ProcessInstanceMapper; |
||||
import org.apache.dolphinscheduler.dao.repository.ProcessInstanceDao; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
import lombok.NonNull; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
|
||||
@Slf4j |
||||
@Repository |
||||
public class ProcessInstanceDaoImpl implements ProcessInstanceDao { |
||||
|
||||
@Autowired |
||||
private ProcessInstanceMapper processInstanceMapper; |
||||
|
||||
@Override |
||||
public int insertProcessInstance(ProcessInstance processInstance) { |
||||
return processInstanceMapper.insert(processInstance); |
||||
} |
||||
|
||||
@Override |
||||
public int updateProcessInstance(ProcessInstance processInstance) { |
||||
return processInstanceMapper.updateById(processInstance); |
||||
} |
||||
|
||||
@Override |
||||
public int upsertProcessInstance(@NonNull ProcessInstance processInstance) { |
||||
if (processInstance.getId() != 0) { |
||||
return updateProcessInstance(processInstance); |
||||
} else { |
||||
return insertProcessInstance(processInstance); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue