All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.json.util.CycleDetectionStrategy Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright 2002-2009 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 com.feilong.lib.json.util;

import com.feilong.lib.json.JSONArray;
import com.feilong.lib.json.JSONObject;

/**
 * Base class for cycle detection in a hierarchy.
 * 
 * 

* The JSON spec forbides cycles in a hierarchy and most parsers will raise and error when a cycle is detected. This class defines a * contract for handling * those cycles and two base implementations: *

* *
    *
  • STRICT - will throw a JSONException if a cycle is found.
  • *
  • LENIENT - will return an empty array or null object if a cycle is found.
  • *
* * @author Andres Almiray */ public abstract class CycleDetectionStrategy{ public static final JSONArray IGNORE_PROPERTY_ARR = new JSONArray(); public static final JSONObject IGNORE_PROPERTY_OBJ = new JSONObject(); //--------------------------------------------------------------- /** 宽容 Returns empty array and null object 排除,避免循环引用 There is a cycle in the hierarchy! Returns empty array and null object. */ public static final CycleDetectionStrategy LENIENT = new LenientCycleDetectionStrategy(); /** * Returns a special object (IGNORE_PROPERTY_OBJ) that indicates the entire property should be ignored */ public static final CycleDetectionStrategy NOPROP = new LenientNoRefCycleDetectionStrategy(); //--------------------------------------------------------------- /** * Handle a repeated reference
* Must return a valid JSONArray or null. * * @param reference * the repeated reference. * @return JSONArray */ public abstract JSONArray handleRepeatedReferenceAsArray(Object reference); /** * Handle a repeated reference
* Must return a valid JSONObject or null. * * @param reference * the repeated reference. * @return JSONObject */ public abstract JSONObject handleRepeatedReferenceAsObject(Object reference); //--------------------------------------------------------------- private static final class LenientCycleDetectionStrategy extends CycleDetectionStrategy{ @Override public JSONArray handleRepeatedReferenceAsArray(Object reference){ return new JSONArray(); } @Override public JSONObject handleRepeatedReferenceAsObject(Object reference){ return new JSONObject(true); } } /** * A cycle detection strategy that prevents any mention of the possible * conflict from appearing. * * @author small */ private static final class LenientNoRefCycleDetectionStrategy extends CycleDetectionStrategy{ @Override public JSONArray handleRepeatedReferenceAsArray(Object reference){ return IGNORE_PROPERTY_ARR; } @Override public JSONObject handleRepeatedReferenceAsObject(Object reference){ return IGNORE_PROPERTY_OBJ; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy