blob: 5a93dd12c46ed3b2ceeaa9544b8fb62ac441a9e7 [file] [log] [blame]
alshabibab984662014-12-04 18:56:18 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.service;
Madan Jampani12390c12014-11-12 00:35:56 -080017
Madan Jampani12390c12014-11-12 00:35:56 -080018import java.util.List;
19
Madan Jampanif5d263b2014-11-13 10:04:40 -080020import com.google.common.base.MoreObjects;
Madan Jampani7aad2332014-11-12 01:57:07 -080021import com.google.common.collect.ImmutableList;
22
Madan Jampani23af4fc2014-11-12 00:54:18 -080023/**
24 * Result of a batch write operation.
25 */
Madan Jampani12390c12014-11-12 00:35:56 -080026public class BatchWriteResult {
Madan Jampani23af4fc2014-11-12 00:54:18 -080027
28 private final List<WriteResult> writeResults;
29
30 public BatchWriteResult(List<WriteResult> writeResults) {
Madan Jampani7aad2332014-11-12 01:57:07 -080031 this.writeResults = ImmutableList.copyOf(writeResults);
Madan Jampani23af4fc2014-11-12 00:54:18 -080032 }
33
34 /**
35 * Returns true if this batch write operation was successful.
36 * @return true if successful, false otherwise.
37 */
38 public boolean isSuccessful() {
39 for (WriteResult result : writeResults) {
40 if (result.status() != WriteStatus.OK) {
41 return false;
42 }
43 }
44 return true;
45 }
46
47 /**
48 * Returns the results as a List.
49 * @return list of batch results.
50 */
51 public List<WriteResult> getAsList() {
52 return this.writeResults;
53 }
54
55 /**
56 * Returns the size of this batch.
57 * @return batch size.
58 */
59 public int batchSize() {
60 return writeResults.size();
61 }
Madan Jampanif5d263b2014-11-13 10:04:40 -080062
63 @Override
64 public String toString() {
65 return MoreObjects.toStringHelper(getClass())
66 .add("writeResults", writeResults)
67 .toString();
68 }
Madan Jampani23af4fc2014-11-12 00:54:18 -080069}