use of com.alibaba.cobar.manager.dao.xml.XMLFileLoaderPath in project cobar by alibaba.
the class PropertyDaoTest method initData.
@Before
public void initData() {
Assert.assertNotNull(xmlPath);
propertyXmlPath = xmlPath + System.getProperty("file.separator") + "property.xml";
xmlFileLoader = new XMLFileLoaderPath();
xmlFileLoader.setXmlPath(xmlPath);
propertyDao = new PropertyDAOImple();
propertyDao.setXmlFileLoader(xmlFileLoader);
XmlFile xmlFile = new XmlFile(propertyXmlPath, "pro");
try {
xmlFile.init();
} catch (Exception e) {
logger.error(e.getMessage(), e);
Assert.fail();
}
read();
}
use of com.alibaba.cobar.manager.dao.xml.XMLFileLoaderPath in project cobar by alibaba.
the class UserDaoTest method initData.
@Before
public void initData() {
Assert.assertNotNull(xmlPath);
userDao = new UserDAOImple();
xmlFileLoader = new XMLFileLoaderPath();
xmlFileLoader.setXmlPath(xmlPath);
userDao.setXmlFileLoader(xmlFileLoader);
userXmlPath = xmlPath + System.getProperty("file.separator") + "user.xml";
XmlFile xmlFile = new XmlFile(userXmlPath, "users");
try {
xmlFile.init();
} catch (IOException e) {
logger.error(e.getMessage(), e);
Assert.fail();
}
read();
}
use of com.alibaba.cobar.manager.dao.xml.XMLFileLoaderPath 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.XMLFileLoaderPath in project cobar by alibaba.
the class TestXMLFileLoader method main.
public static void main(String[] args) {
XMLFileLoaderPath p = new XMLFileLoaderPath();
System.out.println(p.getFilePath());
}
use of com.alibaba.cobar.manager.dao.xml.XMLFileLoaderPath in project cobar by alibaba.
the class ClusterDaoTest method initData.
@Before
public void initData() {
Assert.assertNotNull(xmlPath);
xmlFileLoader = new XMLFileLoaderPath();
xmlFileLoader.setXmlPath(xmlPath);
clusterDao = new ClusterDAOImple();
clusterDao.setXmlFileLoader(xmlFileLoader);
clusterXmlPath = xmlPath + System.getProperty("file.separator") + "cluster.xml";
XmlFile xmlFile = new XmlFile(clusterXmlPath, "clusters");
try {
xmlFile.init();
} catch (IOException e) {
logger.error(e.getMessage(), e);
Assert.fail();
}
read();
}
Aggregations