mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
80 lines
2.4 KiB
Go
80 lines
2.4 KiB
Go
/*
|
|
Real-time Charging System for Telecom & ISP environments
|
|
Copyright (C) ITsysCOM GmbH
|
|
|
|
This program is free software: you can Storagetribute it and/or modify
|
|
it under the terms of the GNU 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 WITH*out ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
package engine
|
|
|
|
import (
|
|
"github.com/cgrates/cgrates/config"
|
|
"os/exec"
|
|
"path"
|
|
"time"
|
|
)
|
|
|
|
func InitDataDb(cfg *config.CGRConfig) error {
|
|
ratingDb, err := ConfigureRatingStorage(cfg.RatingDBType, cfg.RatingDBHost, cfg.RatingDBPort, cfg.RatingDBName, cfg.RatingDBUser, cfg.RatingDBPass, cfg.DBDataEncoding)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
accountDb, err := ConfigureAccountingStorage(cfg.AccountDBType, cfg.AccountDBHost, cfg.AccountDBPort, cfg.AccountDBName,
|
|
cfg.AccountDBUser, cfg.AccountDBPass, cfg.DBDataEncoding)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, db := range []Storage{ratingDb, accountDb} {
|
|
if err := db.Flush(""); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func InitCdrDb(cfg *config.CGRConfig) error {
|
|
storDb, err := ConfigureLoadStorage(cfg.StorDBType, cfg.StorDBHost, cfg.StorDBPort, cfg.StorDBName, cfg.StorDBUser, cfg.StorDBPass, cfg.DBDataEncoding,
|
|
cfg.StorDBMaxOpenConns, cfg.StorDBMaxIdleConns)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := storDb.Flush(path.Join(cfg.DataFolderPath, "storage", cfg.StorDBType)); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Return reference towards the command started so we can stop it if necessary
|
|
func StartEngine(cfgPath string, waitEngine int) (*exec.Cmd, error) {
|
|
enginePath, err := exec.LookPath("cgr-engine")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
KillEngine(waitEngine)
|
|
engine := exec.Command(enginePath, "-config_dir", cfgPath)
|
|
if err := engine.Start(); err != nil {
|
|
return nil, err
|
|
}
|
|
time.Sleep(time.Duration(waitEngine) * time.Millisecond) // Give time to rater to fire up
|
|
return engine, nil
|
|
}
|
|
|
|
func KillEngine(waitEngine int) error {
|
|
if err := exec.Command("pkill", "cgr-engine").Run(); err != nil {
|
|
return err
|
|
}
|
|
time.Sleep(time.Duration(waitEngine) * time.Millisecond)
|
|
return nil
|
|
}
|