/* * Copyright 2007 Yusuke Yamamoto * * 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 twitter4j.internal.json; import twitter4j.ResponseList; import twitter4j.TwitterException; import twitter4j.api.HelpResources; import twitter4j.conf.Configuration; import twitter4j.internal.http.HttpResponse; import twitter4j.internal.org.json.JSONArray; import twitter4j.internal.org.json.JSONException; import twitter4j.internal.org.json.JSONObject; /** * @author Yusuke Yamamoto - yusuke at mac.com * @since Twitter4J 2.2.3 */ public class LanguageJSONImpl implements HelpResources.Language { private String name; private String code; private String status; LanguageJSONImpl(JSONObject json) throws TwitterException { super(); init(json); } private void init(JSONObject json) throws TwitterException { try { name = json.getString("name"); code = json.getString("code"); status = json.getString(("status")); } catch (JSONException jsone) { throw new TwitterException(jsone.getMessage() + ":" + json.toString(), jsone); } } @Override public String getName() { return name; } @Override public String getCode() { return code; } @Override public String getStatus() { return status; } static ResponseList<HelpResources.Language> createLanguageList(HttpResponse res, Configuration conf) throws TwitterException { return createLanguageList(res.asJSONArray(), res, conf); } /*package*/ static ResponseList<HelpResources.Language> createLanguageList(JSONArray list, HttpResponse res , Configuration conf) throws TwitterException { if (conf.isJSONStoreEnabled()) { DataObjectFactoryUtil.clearThreadLocalMap(); } try { int size = list.length(); ResponseList<HelpResources.Language> languages = new ResponseListImpl<HelpResources.Language>(size, res); for (int i = 0; i < size; i++) { JSONObject json = list.getJSONObject(i); HelpResources.Language language = new LanguageJSONImpl(json); languages.add(language); if (conf.isJSONStoreEnabled()) { DataObjectFactoryUtil.registerJSONObject(language, json); } } if (conf.isJSONStoreEnabled()) { DataObjectFactoryUtil.registerJSONObject(languages, list); } return languages; } catch (JSONException jsone) { throw new TwitterException(jsone); } catch (TwitterException te) { throw te; } } }