org.search.system.models.MongoInstance.java Source code

Java tutorial

Introduction

Here is the source code for org.search.system.models.MongoInstance.java

Source

/*
MIT License
    
Copyright (c) 2016-2017 Daniil Matkov
    
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
 */

package org.search.system.models;

import com.mongodb.CommandResult;
import com.mongodb.DB;
import com.mongodb.MongoClient;
import org.search.system.interfaces.DatabaseInstance;

/** Class holding information about MongoDb instance
 * @author Daniil Matkov
 */
public class MongoInstance implements DatabaseInstance {

    private String host;

    private int port;

    public MongoInstance(String host, int port) {
        this.host = host;
        this.port = port;
    }

    public String getHost() {
        return host;
    }

    public int getPort() {
        return port;
    }

    public int getSize() {
        int size;
        MongoClient mongo = new MongoClient(host, port);
        DB synonyms = mongo.getDB("synonyms");
        DB pages = mongo.getDB("pages");
        CommandResult result = synonyms.getStats();
        size = (int) result.get("objects");
        result = pages.getStats();
        size += (int) result.get("objects");
        mongo.close();
        return size;
    }
}