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

scouter.server.db.StatusWR.scala Maven / Gradle / Ivy

There is a newer version: 2.20.0
Show newest version
/*
*  Copyright 2015 the original author or authors. 
 *  @https://github.com/scouter-project/scouter
 *
 *  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 scouter.server.db;
import scouter.lang.pack.StatusPack
import scouter.io.DataOutputX
import scouter.server.Logger
import scouter.server.db.status.StatusIndex
import scouter.server.db.status.StatusWriter
import scouter.util.DateUtil
import scouter.util.FileUtil
import scouter.util.IClose
import scouter.util.RequestQueue
import java.io.File
import scouter.server.util.ThreadScala
import scouter.server.util.OftenAction
object StatusWR {
    val status = "status";
    val queue = new RequestQueue[StatusPack](DBCtr.MAX_QUE_SIZE);
    ThreadScala.start("scouter.server.db.StatusWR") {
        var currentDateUnit = 0L
        while (DBCtr.running) {
            val p = queue.get();
            try {
                if (currentDateUnit != DateUtil.getDateUnit(p.time)) {
                    currentDateUnit = DateUtil.getDateUnit(p.time);
                    close();
                    open(DateUtil.yyyymmdd(p.time));
                }
                if (index == null) {
                    OftenAction.act("StatusWR", 10) {
                        queue.clear();
                        currentDateUnit = 0;
                    }
                    Logger.println("S135", 10, "can't open db");
                } else {
                    val b = new DataOutputX().writePack(p).toByteArray()
                    val location = writer.write(b);
                    index.add(p.time, location);
                }
            } catch {
                case t: Throwable => t.printStackTrace();
            }
        }
        close()
    }
    def add(p: StatusPack) {
        val ok = queue.put(p);
        if (ok == false) {
            Logger.println("S136", 10, "queue exceeded!!");
        }
    }
    var index: StatusIndex = null
    var writer: StatusWriter = null
    def close() {
        FileUtil.close(index);
        FileUtil.close(writer);
        index = null;
        writer = null;
    }
    def open(date: String) {
        try {
            val path = getDBPath(date);
            val f = new File(path);
            if (f.exists() == false)
                f.mkdirs();
            val file = path + "/" + status;
            index = StatusIndex.open(file);
            writer = StatusWriter.open(file);
        } catch {
            case e: Throwable => {
                e.printStackTrace();
                close();
            }
        }
    }
    def getDBPath(date: String): String = {
        val sb = new StringBuffer();
        sb.append(DBCtr.getRootPath());
        sb.append("/").append(date).append("/").append(status);
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy