Line data Source code
1 : // Copyright (C) 2020 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.cache.serialize.entities; 16 : 17 : import static com.google.common.base.Strings.emptyToNull; 18 : import static com.google.common.base.Strings.nullToEmpty; 19 : 20 : import com.google.gerrit.entities.StoredCommentLinkInfo; 21 : import com.google.gerrit.server.cache.proto.Cache; 22 : import java.util.Optional; 23 : 24 : /** Helper to (de)serialize values for caches. */ 25 : public class StoredCommentLinkInfoSerializer { 26 : public static StoredCommentLinkInfo deserialize(Cache.StoredCommentLinkInfoProto proto) { 27 1 : return StoredCommentLinkInfo.builder(proto.getName()) 28 1 : .setMatch(emptyToNull(proto.getMatch())) 29 1 : .setLink(emptyToNull(proto.getLink())) 30 1 : .setPrefix(emptyToNull(proto.getPrefix())) 31 1 : .setSuffix(emptyToNull(proto.getSuffix())) 32 1 : .setText(emptyToNull(proto.getText())) 33 1 : .setEnabled(proto.getEnabled()) 34 1 : .setOverrideOnly(proto.getOverrideOnly()) 35 1 : .build(); 36 : } 37 : 38 : public static Cache.StoredCommentLinkInfoProto serialize(StoredCommentLinkInfo autoValue) { 39 1 : return Cache.StoredCommentLinkInfoProto.newBuilder() 40 1 : .setName(autoValue.getName()) 41 1 : .setMatch(nullToEmpty(autoValue.getMatch())) 42 1 : .setLink(nullToEmpty(autoValue.getLink())) 43 1 : .setPrefix(nullToEmpty(autoValue.getPrefix())) 44 1 : .setSuffix(nullToEmpty(autoValue.getSuffix())) 45 1 : .setText(nullToEmpty(autoValue.getText())) 46 1 : .setEnabled(Optional.ofNullable(autoValue.getEnabled()).orElse(true)) 47 1 : .setOverrideOnly(autoValue.getOverrideOnly()) 48 1 : .build(); 49 : } 50 : 51 : private StoredCommentLinkInfoSerializer() {} 52 : }