use of com.alibaba.cobar.manager.dao.xml.CobarDAOImple in project cobar by alibaba.
the class XmlFile method initCobar.
private void initCobar() {
String path = this.xmlPath + System.getProperty("file.separator") + "cobar.xml";
init(path, "cobars");
CobarDAOImple cobarDAO = new CobarDAOImple();
cobarDAO.setXmlFileLoader(xmlFileLoader);
try {
cobarDAO.afterPropertiesSet();
} catch (Exception e) {
logger.error(e.getMessage(), e);
Assert.fail();
}
CobarDO cobar = new CobarDO();
cobar.setClusterId(1);
cobar.setHost("10.20.10.100");
cobar.setName("cobar");
cobar.setPassword("");
cobar.setPort(9066);
cobar.setStatus("Active");
cobar.setTime_diff("no");
cobar.setUser("test");
cobarDAO.addCobar(cobar);
}
use of com.alibaba.cobar.manager.dao.xml.CobarDAOImple in project cobar by alibaba.
the class CobarAccessTest method main.
public static void main(String[] args) throws Exception {
String xmlpath = "./src/main/resources/";
CobarAccesser accesser = new CobarAccesser();
XmlAccesser xmlAccesser = new XmlAccesser();
XMLFileLoaderPath xmlFileLoader = new XMLFileLoaderPath();
xmlFileLoader.setXmlPath(xmlpath);
ClusterDAOImple cluster = new ClusterDAOImple();
cluster.setXmlFileLoader(xmlFileLoader);
cluster.afterPropertiesSet();
CobarDAOImple cobar = new CobarDAOImple();
cobar.setXmlFileLoader(xmlFileLoader);
cobar.afterPropertiesSet();
xmlAccesser.setClusterDAO(cluster);
xmlAccesser.setCobarDAO(cobar);
accesser.setXmlAccesser(xmlAccesser);
AdapterDelegate res = new AdapterDelegate();
accesser.setCobarAdapterDelegate(res);
CobarAdapterDAO perf = accesser.getAccesser(1L);
String version = perf.getVersion();
System.out.println(version);
ServerStatus ss = perf.getServerStatus();
System.out.println(ss.getMaxMemory());
System.out.println(ss.getStatus());
System.out.println(ss.getTotalMemory());
System.out.println(ss.getUptime());
System.out.println(ss.getUsedMemory());
System.out.println(ss.getReloadTime());
System.out.println(ss.getRollbackTime());
List<String> databases = perf.listDataBases();
for (String s : databases) {
System.out.println(s);
}
// perf.reloadConfig();
// perf.rollbackConfig();
// int num = perf.switchDataNode("circe,cndb,dubbo,napoli", 0);
// System.out.println("num: " + num);
// int num = perf.stopHeartbeat("circe,cndb,dubbo,napoli", -10);
// System.out.println("num: " + num);
}
use of com.alibaba.cobar.manager.dao.xml.CobarDAOImple in project cobar by alibaba.
the class CobarDaoTest method initData.
@Before
public void initData() {
Assert.assertNotNull(xmlPath);
xmlFileLoader = new XMLFileLoaderPath();
xmlFileLoader.setXmlPath(xmlPath);
cobarDao = new CobarDAOImple();
cobarDao.setXmlFileLoader(xmlFileLoader);
cobarXmlPath = xmlPath + System.getProperty("file.separator") + "cobar.xml";
XmlFile xmlFile = new XmlFile(cobarXmlPath, "cobars");
try {
xmlFile.init();
} catch (IOException e) {
logger.error(e.getMessage(), e);
Assert.fail();
}
read();
}
Aggregations