bump the version
[dmaap/messagerouter/msgrtr.git] / src / test / java / org / onap / dmaap / mr / cambria / embed / ZooKeeperLocal.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21  package org.onap.dmaap.mr.cambria.embed;
22
23 import java.io.FileNotFoundException;
24 import java.io.IOException;
25 import java.util.Properties;
26  
27 import org.apache.zookeeper.server.ServerConfig;
28 import org.apache.zookeeper.server.ZooKeeperServerMain;
29 import org.apache.zookeeper.server.quorum.QuorumPeerConfig;
30  
31 public class ZooKeeperLocal {
32         
33         ZooKeeperServerMain zooKeeperServer;
34         
35         public ZooKeeperLocal(Properties zkProperties) throws FileNotFoundException, IOException{
36                 QuorumPeerConfig quorumConfiguration = new QuorumPeerConfig();
37                 try {
38                     quorumConfiguration.parseProperties(zkProperties);
39                 } catch(Exception e) {
40                     throw new RuntimeException(e);
41                 }
42  
43                 zooKeeperServer = new ZooKeeperServerMain();
44                 final ServerConfig configuration = new ServerConfig();
45                 configuration.readFrom(quorumConfiguration);
46                 
47                 
48                 new Thread() {
49                     public void run() {
50                         try {
51                             zooKeeperServer.runFromConfig(configuration);
52                         } catch (IOException e) {
53                             System.out.println("ZooKeeper Failed");
54                             e.printStackTrace(System.err);
55                         }
56                     }
57                 }.start();
58         }
59 }