twitter4j.ControlStreamInfo.java Source code

Java tutorial

Introduction

Here is the source code for twitter4j.ControlStreamInfo.java

Source

/*
 * Copyright 2007 Yusuke Yamamoto
 * Copyright (C) 2012 Twitter, Inc.
 *
 * 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;

import twitter4j.internal.org.json.JSONArray;
import twitter4j.internal.org.json.JSONException;
import twitter4j.internal.org.json.JSONObject;

import java.io.Serializable;
import java.util.Arrays;

import static twitter4j.internal.json.z_T4JInternalParseUtil.getBoolean;
import static twitter4j.internal.json.z_T4JInternalParseUtil.getRawString;

/**
 * @author Yusuke Yamamoto - yusuke at twitter.com
 * @since Twitter4J 2.2.6
 */
public final class ControlStreamInfo implements Serializable {
    private static final long serialVersionUID = -6761659771734942177L;
    private final StreamController.User[] users;
    private final boolean includeFollowingsActivity;
    private final boolean includeUserChanges;
    private final String replies;
    private final String with;
    private transient final StreamController controller;

    /*package*/ ControlStreamInfo(StreamController controller, JSONObject json) throws TwitterException {
        this.controller = controller;
        try {
            JSONObject info = json.getJSONObject("info");
            includeFollowingsActivity = getBoolean("include_followings_activity", info);
            includeUserChanges = getBoolean("include_user_changes", info);
            replies = getRawString("replies", info);
            with = getRawString("with", info);
            JSONArray usersJSON = info.getJSONArray("users");
            users = new StreamController.User[usersJSON.length()];
            for (int i = 0; i < usersJSON.length(); i++) {
                users[i] = this.controller.createUser(usersJSON.getJSONObject(i));
            }

        } catch (JSONException e) {
            throw new TwitterException(e);
        }

    }

    public StreamController.User[] getUsers() {
        return users;
    }

    public boolean isIncludeFollowingsActivity() {
        return includeFollowingsActivity;
    }

    public boolean isIncludeUserChanges() {
        return includeUserChanges;
    }

    public String isReplies() {
        return replies;
    }

    public String isWith() {
        return with;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;

        ControlStreamInfo that = (ControlStreamInfo) o;

        if (includeFollowingsActivity != that.includeFollowingsActivity)
            return false;
        if (includeUserChanges != that.includeUserChanges)
            return false;
        if (replies != null ? !replies.equals(that.replies) : that.replies != null)
            return false;
        if (!Arrays.equals(users, that.users))
            return false;
        if (with != null ? !with.equals(that.with) : that.with != null)
            return false;

        return true;
    }

    @Override
    public int hashCode() {
        int result = users != null ? Arrays.hashCode(users) : 0;
        result = 31 * result + (includeFollowingsActivity ? 1 : 0);
        result = 31 * result + (includeUserChanges ? 1 : 0);
        result = 31 * result + (replies != null ? replies.hashCode() : 0);
        result = 31 * result + (with != null ? with.hashCode() : 0);
        return result;
    }

    @Override
    public String toString() {
        return "ControlStreamInfo{" + "users=" + (users == null ? null : Arrays.asList(users))
                + ", includeFollowingsActivity=" + includeFollowingsActivity + ", includeUserChanges="
                + includeUserChanges + ", replies='" + replies + '\'' + ", with='" + with + '\'' + '}';
    }
}