package com.jbirdvegas.mgerrit.objects;
import android.content.Context;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.jbirdvegas.mgerrit.R;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
/*
* Copyright (C) 2013 Android Open Kang Project (AOKP)
* Author: Evan Conway (P4R4N01D), 2013
*
* Licensed 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.
*/
/**
* Wrapper for a list of changed files. Provides methods to work with the list of changed files,
* delegating most of the work to the underlying FileInfo object.
*/
public class FileInfoList {
// This list of changed files
@SerializedName(CommitInfo.KEY_CHANGED_FILES)
List<FileInfo> mList;
private FileInfoList(List<FileInfo> fileList) {
this.mList = fileList;
}
public List<FileInfo> getFiles() {
return mList;
}
public static FileInfoList deserialize(JsonObject object) {
List<FileInfo> newList = new ArrayList<>();
Set<Map.Entry<String, JsonElement>> entries = object.entrySet();
for (Map.Entry<String, JsonElement> entry : entries) {
newList.add(FileInfo.deserialise(entry.getValue().getAsJsonObject(), entry.getKey()));
}
return new FileInfoList(newList);
}
public static FileInfoList setDraftNotice(Context context) {
String draftNotice = context.getString(R.string.current_revision_is_draft_message);
List<FileInfo> list = new ArrayList<>();
list.add(new FileInfo(draftNotice));
return new FileInfoList(list);
}
@Override
public String toString() {
return "FileInfoList{" +
"mList=" + mList +
'}';
}
}