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

org.restcomm.connect.dao.mybatis.MybatisGatewaysDao Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show newest version
/*
 * TeleStax, Open Source Cloud Communications
 * Copyright 2011-2014, Telestax Inc and individual contributors
 * by the @authors tag.
 *
 * This program is free software: you can redistribute it and/or modify
 * under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see 
 *
 */
package org.restcomm.connect.dao.mybatis;

import java.net.URI;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;

import org.joda.time.DateTime;

import org.restcomm.connect.dao.DaoUtils;
import org.restcomm.connect.dao.GatewaysDao;
import org.restcomm.connect.dao.entities.Gateway;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;

/**
 * @author [email protected] (Thomas Quintana)
 */
@ThreadSafe
public final class MybatisGatewaysDao implements GatewaysDao {
    private static final String namespace = "org.mobicents.servlet.sip.restcomm.dao.GatewaysDao.";
    private final SqlSessionFactory sessions;

    public MybatisGatewaysDao(final SqlSessionFactory sessions) {
        super();
        this.sessions = sessions;
    }

    @Override
    public void addGateway(final Gateway gateway) {
        final SqlSession session = sessions.openSession();
        try {
            session.insert(namespace + "addGateway", toMap(gateway));
            session.commit();
        } finally {
            session.close();
        }
    }

    @Override
    public Gateway getGateway(final Sid sid) {
        final SqlSession session = sessions.openSession();
        try {
            final Map result = session.selectOne(namespace + "getGateway", sid.toString());
            if (result != null) {
                return toGateway(result);
            } else {
                return null;
            }
        } finally {
            session.close();
        }
    }

    @Override
    public List getGateways() {
        final SqlSession session = sessions.openSession();
        try {
            final List> results = session.selectList(namespace + "getGateways");
            final List gateways = new ArrayList();
            if (results != null && !results.isEmpty()) {
                for (final Map result : results) {
                    gateways.add(toGateway(result));
                }
            }
            return gateways;
        } finally {
            session.close();
        }
    }

    @Override
    public void removeGateway(final Sid sid) {
        final SqlSession session = sessions.openSession();
        try {
            session.delete(namespace + "removeGateway", sid.toString());
            session.commit();
        } finally {
            session.close();
        }
    }

    @Override
    public void updateGateway(final Gateway gateway) {
        final SqlSession session = sessions.openSession();
        try {
            session.update(namespace + "updateGateway", toMap(gateway));
            session.commit();
        } finally {
            session.close();
        }
    }

    private Gateway toGateway(final Map map) {
        final Sid sid = DaoUtils.readSid(map.get("sid"));
        final DateTime dateCreated = DaoUtils.readDateTime(map.get("date_created"));
        final DateTime dateUpdated = DaoUtils.readDateTime(map.get("date_updated"));
        final String friendlName = DaoUtils.readString(map.get("friendly_name"));
        final String password = DaoUtils.readString(map.get("password"));
        final String proxy = DaoUtils.readString(map.get("proxy"));
        final Boolean register = DaoUtils.readBoolean(map.get("register"));
        final String userAgent = DaoUtils.readString(map.get("user_name"));
        final Integer timeToLive = DaoUtils.readInteger(map.get("ttl"));
        final URI uri = DaoUtils.readUri(map.get("uri"));
        return new Gateway(sid, dateCreated, dateUpdated, friendlName, password, proxy, register, userAgent, timeToLive, uri);
    }

    private Map toMap(final Gateway gateway) {
        final Map map = new HashMap();
        map.put("sid", DaoUtils.writeSid(gateway.getSid()));
        map.put("date_created", DaoUtils.writeDateTime(gateway.getDateCreated()));
        map.put("date_updated", DaoUtils.writeDateTime(gateway.getDateUpdated()));
        map.put("friendly_name", gateway.getFriendlyName());
        map.put("password", gateway.getPassword());
        map.put("proxy", gateway.getProxy());
        map.put("register", gateway.register());
        map.put("user_name", gateway.getUserName());
        map.put("ttl", gateway.getTimeToLive());
        map.put("uri", DaoUtils.writeUri(gateway.getUri()));
        return map;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy