net.ymate.platform.configuration.IConfigFileParser Maven / Gradle / Ivy
/*
* Copyright 2007-2017 the original author or authors.
*
* 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.
*/
package net.ymate.platform.configuration;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.apache.commons.lang.StringUtils;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* @author 刘镇 ([email protected]) on 2017/7/31 上午12:02
* @version 1.0
*/
public interface IConfigFileParser {
String DEFAULT_CATEGORY_NAME = "default";
String TAG_NAME_ROOT = "properties";
String TAG_NAME_CATEGORY = "category";
String TAG_NAME_PROPERTY = "property";
String TAG_NAME_ITEM = "item";
String TAG_NAME_VALUE = "value";
String TAG_NAME_CATEGORIES = "categories";
String TAG_NAME_ATTRIBUTES = "attributes";
//
IConfigFileParser load(boolean sorted);
void writeTo(File targetFile) throws IOException;
void writeTo(OutputStream outputStream) throws IOException;
Attribute getAttribute(String key);
Map getAttributes();
Category getDefaultCategory();
Category getCategory(String name);
Map getCategories();
JSONObject toJSON();
class Category {
private String name;
private Map attributeMap;
private Map propertyMap;
private boolean __sorted;
public Category(String name, List attributes, List properties, boolean sorted) {
this.name = name;
this.__sorted = sorted;
this.attributeMap = new HashMap();
if (__sorted) {
this.propertyMap = new LinkedHashMap();
} else {
this.propertyMap = new HashMap();
}
if (attributes != null) {
for (Attribute _attr : attributes) {
this.attributeMap.put(_attr.getKey(), _attr);
}
}
if (properties != null) {
for (Property _prop : properties) {
this.propertyMap.put(_prop.getName(), _prop);
}
}
}
public String getName() {
return name;
}
public Attribute getAttribute(String key) {
return this.attributeMap.get(key);
}
public String getAttribute(String key, String defaultValue) {
Attribute _attr = this.attributeMap.get(key);
if (_attr != null) {
return _attr.getValue(defaultValue);
}
return defaultValue;
}
public Map getAttributeMap() {
return attributeMap;
}
public Property getProperty(String name) {
return this.propertyMap.get(name);
}
public Map getPropertyMap() {
return propertyMap;
}
public JSONObject toJSON() {
JSONObject _jsonO = new JSONObject(__sorted);
_jsonO.put("name", name);
JSONObject _jsonATTR = new JSONObject();
for (Attribute _attr : attributeMap.values()) {
_jsonATTR.put(_attr.getKey(), _attr.getValue());
}
_jsonO.put("attributes", _jsonATTR);
JSONArray _jsonArrayPROP = new JSONArray();
for (Property _prop : propertyMap.values()) {
_jsonArrayPROP.add(_prop.toJSON());
}
_jsonO.put("properties", _jsonArrayPROP);
return _jsonO;
}
}
class Property {
private String name;
private String content;
private Map attributeMap;
public Property(String name, String content, List attributes) {
this.name = name;
this.content = content;
this.attributeMap = new HashMap();
if (attributes != null) {
for (Attribute _attr : attributes) {
this.attributeMap.put(_attr.getKey(), _attr);
}
}
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return content;
}
public Attribute getAttribute(String key) {
return this.attributeMap.get(key);
}
public String getAttribute(String key, String defaultValue) {
Attribute _attr = this.attributeMap.get(key);
if (_attr != null) {
return _attr.getValue(defaultValue);
}
return defaultValue;
}
public Map getAttributeMap() {
return attributeMap;
}
public JSONObject toJSON() {
JSONObject _jsonO = new JSONObject();
_jsonO.put("name", name);
_jsonO.put("content", content);
//
JSONObject _jsonAttrs = new JSONObject();
for (Attribute _attr : attributeMap.values()) {
_attr.appendTo(_jsonAttrs);
}
_jsonO.put(TAG_NAME_ATTRIBUTES, _jsonAttrs);
return _jsonO;
}
}
class Attribute {
private String key;
private String value;
public Attribute(String key, String value) {
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public void setValue(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public String getValue(String defaultValue) {
return StringUtils.defaultIfBlank(value, defaultValue);
}
public JSONObject toJSON() {
JSONObject _jsonO = new JSONObject();
_jsonO.put(key, value);
return _jsonO;
}
public void appendTo(JSONObject jsonObject) {
jsonObject.put(key, value);
}
}
}