/gemfire-core/src/main/java/com/gemstone/gemfire/distributed/Locator.java

https://gitlab.com/kidaa/incubator-geode · Java · 543 lines · 155 code · 39 blank · 349 comment · 8 complexity · 404d1eecb1c013f7431736320c2ffda1 MD5 · raw file

  1. /*=========================================================================
  2. * Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
  3. * This product is protected by U.S. and international copyright
  4. * and intellectual property laws. Pivotal products are covered by
  5. * one or more patents listed at http://www.pivotal.io/patents.
  6. *=========================================================================
  7. */
  8. package com.gemstone.gemfire.distributed;
  9. import java.io.File;
  10. import java.io.IOException;
  11. import java.net.InetAddress;
  12. import java.util.*;
  13. import java.util.concurrent.ConcurrentMap;
  14. import com.gemstone.gemfire.distributed.internal.InternalLocator;
  15. import com.gemstone.gemfire.internal.SocketCreator;
  16. import com.gemstone.gemfire.internal.i18n.LocalizedStrings;
  17. /**
  18. * Represents a distribution locator server that provides discovery information
  19. * to members and clients of a GemFire distributed system. In most GemFire
  20. * distributed cache architectures, distribution locators are run in their own
  21. * process. A stand-alone locator process is managed using
  22. * {@linkplain com.gemstone.gemfire.admin.DistributionLocator administration
  23. * API} or the <code>gemfire</code> command line utility:
  24. *
  25. * <PRE>
  26. * $ gemfire start-locator
  27. * </PRE>
  28. *
  29. * The stand-alone locator configuration provides high-availability of
  30. * membership information.
  31. *
  32. * <P>
  33. *
  34. * This class allows a GemFire application VM to host a distribution locator.
  35. * Such a configuration minimizes the number of processes that are required to
  36. * run GemFire. However, hosting distribution locators is not generally
  37. * recommended because if the application VM exits, the primary membership list
  38. * for the distributed system would be lost and it would not be possible for new
  39. * applications to connect to the distributed system.
  40. *
  41. * <P>
  42. *
  43. * <b>NOTE:</b> In this release of the product locators log membership views and
  44. * cache server status in a locatorXXXviews.log file, where XXX is the locator's port.
  45. * This is a rolling log
  46. * capped in size at 5mb. In order to log cache server status the locator will
  47. * enable server-location, so the locator must be started with a DistributedSystem
  48. * or be started so that it creates a DistributedSystem. This means that it is
  49. * not possible in this release to use APIs to start a locator and <i>then</i>
  50. * start a DistributedSystem.
  51. *
  52. * <P>
  53. *
  54. * @author Bruce Schuchardt
  55. * @since 4.0
  56. */
  57. public abstract class Locator {
  58. ///////////////////// Instance Fields /////////////////////
  59. /** The file to which this locator logs */
  60. protected File logFile;
  61. /** The port on which this locator listens */
  62. protected int port;
  63. /** The bind address for this locator */
  64. protected InetAddress bindAddress;
  65. /**
  66. * the hostname to give to clients so they can connect to this locator.
  67. * @since 5.7
  68. */
  69. protected String hostnameForClients;
  70. protected static boolean loadSharedConfig = false;
  71. ////////////////////// Static Methods //////////////////////
  72. /**
  73. * Starts a new distribution locator host by this VM. The locator's
  74. * listening sockets will bind to all network addresses. The locator
  75. * will look for a gemfire.properties file, or equivalent system
  76. * properties to fill in the gaps in its configuration. If you are
  77. * using multicast communications, the locator should be configured
  78. * with the same settings that your applications will use.
  79. * <p>The locator will not start a distributed system. The locator
  80. * will provide peer location services only.
  81. *
  82. * @param port
  83. * The port on which the locator will listen for membership
  84. * information requests from new members
  85. * @param logFile
  86. * The file to which the locator logs information. The
  87. * directory that contains the log file is used as the output
  88. * directory of the locator (see <code>-dir</code> option to
  89. * the <code>gemfire</code> command).
  90. *
  91. * @throws IllegalArgumentException
  92. * If <code>port</code> is not in the range 0 to 65536
  93. * @throws com.gemstone.gemfire.SystemIsRunningException
  94. * If another locator is already running in
  95. * <code>outputDir</code>
  96. * @throws com.gemstone.gemfire.GemFireIOException
  97. * If the directory containing the <code>logFile</code> does
  98. * not exist or cannot be written to
  99. * @throws IOException
  100. * If the locator cannot be started
  101. * @deprecated as of 7.0 use startLocatorAndDS instead.
  102. */
  103. public static Locator startLocator(int port, File logFile)
  104. throws IOException {
  105. return startLocator(port, logFile, false, (InetAddress)null, (Properties)null, true, false, null);
  106. }
  107. /**
  108. * Starts a new distribution locator host by this VM, and an admin distributed
  109. * system controlled by the locator. The locator's listening sockets will bind
  110. * to all network addresses. The locator will use the given properties to
  111. * start an AdminDistributedSystem.
  112. * <p>
  113. * The locator starts a AdminDistributedSystem configured with the given
  114. * properties to provide the system with a long-running process that can be
  115. * relied on for stable membership information. The locator will provide provide
  116. * peer and cache server location services.
  117. *
  118. * @since 5.0
  119. *
  120. * @param port
  121. * The port on which the locator will listen for membership
  122. * information requests from new members
  123. * @param logFile
  124. * The file to which the locator logs information. The
  125. * directory that contains the log file is used as the output
  126. * directory of the locator (see <code>-dir</code> option to
  127. * the <code>gemfire</code> command).
  128. * @param distributedSystemProperties
  129. * The properties used to configure the locator's distributed
  130. * system. If there are multiple locators in the system, this
  131. * should note them in the "locators" setting. If The
  132. * distributed system is using multicast, the "mcast-port"
  133. * should also be set.
  134. *
  135. * @throws IllegalArgumentException
  136. * If <code>port</code> is not in the range 0 to 65536
  137. * @throws com.gemstone.gemfire.SystemIsRunningException
  138. * If another locator is already running in
  139. * <code>outputDir</code>
  140. * @throws com.gemstone.gemfire.GemFireIOException
  141. * If the directory containing the <code>logFile</code> does
  142. * not exist or cannot be written to
  143. * @throws IOException
  144. * If the locator cannot be started
  145. */
  146. public static Locator startLocatorAndDS(int port, File logFile, Properties distributedSystemProperties)
  147. throws IOException {
  148. return startLocator(port, logFile, (InetAddress)null, distributedSystemProperties, true, true, null);
  149. }
  150. /**
  151. * Starts a new distribution locator host by this VM. The locator
  152. * will look for a gemfire.properties file, or equivalent system
  153. * properties to fill in the gaps in its configuration.
  154. * <p>The locator will not start a distributed system. The locator
  155. * will provice peer location services only.
  156. *
  157. * @param port
  158. * The port on which the locator will listen for membership
  159. * information requests from new members
  160. * @param logFile
  161. * The file to which the locator logs information. The
  162. * directory that contains the log file is used as the output
  163. * directory of the locator (see <code>-dir</code> option to
  164. * the <code>gemfire</code> command).
  165. * @param bindAddress
  166. * The IP address to which the locator's socket binds
  167. *
  168. * @throws IllegalArgumentException
  169. * If <code>port</code> is not in the range 0 to 65536
  170. * @throws com.gemstone.gemfire.SystemIsRunningException
  171. * If another locator is already running in
  172. * <code>outputDir</code>
  173. * @throws com.gemstone.gemfire.GemFireIOException
  174. * If the directory containing the <code>logFile</code> does
  175. * not exist or cannot be written to
  176. * @throws IOException
  177. * If the locator cannot be started
  178. * @deprecated as of 7.0 use startLocatorAndDS instead.
  179. */
  180. public static Locator startLocator(int port, File logFile,
  181. InetAddress bindAddress)
  182. throws IOException {
  183. return startLocator(port, logFile, false, bindAddress, (Properties)null, true, false, null);
  184. }
  185. /**
  186. * Starts a new distribution locator host by this VM that binds to the given
  187. * network address.
  188. * <p>The locator starts a AdminDistributedSystem configured with the given
  189. * properties to provide the system with
  190. * a long-running process that can be relied on for stable membership
  191. * information. The locator will provide provide
  192. * peer and cache server location services.
  193. *
  194. * @since 5.0
  195. *
  196. * @param port
  197. * The port on which the locator will listen for membership
  198. * information requests from new members
  199. * @param logFile
  200. * The file to which the locator logs information. The
  201. * directory that contains the log file is used as the output
  202. * directory of the locator (see <code>-dir</code> option to
  203. * the <code>gemfire</code> command).
  204. * @param bindAddress
  205. * The IP address to which the locator's socket binds
  206. * @param dsProperties
  207. * The properties used to configure the locator's DistributedSystem.
  208. * If there are multiple locators, the "locators" property should
  209. * be set. If multicast is being used, the "mcast-port" property
  210. * should be set.
  211. *
  212. * @throws IllegalArgumentException
  213. * If <code>port</code> is not in the range 0 to 65536
  214. * @throws com.gemstone.gemfire.SystemIsRunningException
  215. * If another locator is already running in
  216. * <code>outputDir</code>
  217. * @throws com.gemstone.gemfire.GemFireIOException
  218. * If the directory containing the <code>logFile</code> does
  219. * not exist or cannot be written to
  220. * @throws IOException
  221. * If the locator cannot be started
  222. */
  223. public static Locator startLocatorAndDS(
  224. int port,
  225. File logFile,
  226. InetAddress bindAddress,
  227. java.util.Properties dsProperties
  228. )
  229. throws IOException
  230. {
  231. return startLocator(port, logFile, bindAddress, dsProperties, true, true, null);
  232. }
  233. /**
  234. * Starts a new distribution locator host by this VM that binds to the given
  235. * network address.
  236. * <p>The locator starts a AdminDistributedSystem configured with the given
  237. * properties to provide the system with
  238. * a long-running process that can be relied on for stable membership
  239. * information. The locator will provide provide
  240. * peer and cache server location services.
  241. *
  242. * @since 5.7
  243. *
  244. * @param port
  245. * The port on which the locator will listen for membership
  246. * information requests from new members
  247. * @param logFile
  248. * The file to which the locator logs information. The
  249. * directory that contains the log file is used as the output
  250. * directory of the locator (see <code>-dir</code> option to
  251. * the <code>gemfire</code> command).
  252. * @param bindAddress
  253. * The IP address to which the locator's socket binds
  254. * @param dsProperties
  255. * The properties used to configure the locator's DistributedSystem.
  256. * If there are multiple locators, the "locators" property should
  257. * be set. If multicast is being used, the "mcast-port" property
  258. * should be set.
  259. * @param peerLocator
  260. * True if the locator should provide membership information to
  261. * peers in the distributed system.
  262. * @param serverLocator
  263. * True if the locator should provide information about cache
  264. * servers to clients connecting to the distributed system.
  265. * @param hostnameForClients
  266. * the name to give to clients for connecting to this locator
  267. *
  268. * @throws IllegalArgumentException
  269. * If <code>port</code> is not in the range 0 to 65536
  270. * or <code>peerLocator</code> and <code> serverLocator</code>
  271. * are both false.
  272. * @throws com.gemstone.gemfire.SystemIsRunningException
  273. * If another locator is already running in
  274. * <code>outputDir</code>
  275. * @throws com.gemstone.gemfire.GemFireIOException
  276. * If the directory containing the <code>logFile</code> does
  277. * not exist or cannot be written to
  278. * @throws IOException
  279. * If the locator cannot be started
  280. *
  281. * @since 5.7
  282. */
  283. public static Locator startLocatorAndDS(
  284. int port,
  285. File logFile,
  286. InetAddress bindAddress,
  287. java.util.Properties dsProperties,
  288. boolean peerLocator,
  289. boolean serverLocator,
  290. String hostnameForClients
  291. )
  292. throws IOException
  293. {
  294. return startLocator(port, logFile, bindAddress, dsProperties, peerLocator, serverLocator, hostnameForClients);
  295. }
  296. /** all Locator methods that start locators should use this method to
  297. * start the locator and its distributed system
  298. */
  299. private static Locator startLocator(
  300. int port,
  301. File logFile,
  302. InetAddress bindAddress,
  303. java.util.Properties dsProperties,
  304. boolean peerLocator,
  305. boolean serverLocator,
  306. String hostnameForClients
  307. )
  308. throws IOException
  309. {
  310. return InternalLocator.startLocator(port,
  311. logFile,
  312. null,
  313. null,
  314. null,
  315. bindAddress,
  316. dsProperties,
  317. peerLocator,
  318. serverLocator,
  319. hostnameForClients, loadSharedConfig);
  320. }
  321. /**
  322. * @deprecated as of 7.0 use startLocator(int, File, InetAddress, java.util.Properties, peerLocator, serverLocator, hostnameForClients) instead.
  323. */
  324. private static Locator startLocator(
  325. int port,
  326. File logFile,
  327. boolean startDistributedSystem,
  328. InetAddress bindAddress,
  329. java.util.Properties dsProperties,
  330. boolean peerLocator,
  331. boolean serverLocator,
  332. String hostnameForClients
  333. )
  334. throws IOException
  335. {
  336. return InternalLocator.startLocator(port,
  337. logFile,
  338. null,
  339. null,
  340. null,
  341. bindAddress,
  342. startDistributedSystem,
  343. dsProperties,
  344. peerLocator,
  345. serverLocator,
  346. hostnameForClients, loadSharedConfig);
  347. }
  348. /**
  349. * Returns an unmodifiable <code>List</code> of all of the
  350. * <code>Locator</code>s that are hosted by this VM.
  351. * @deprecated as of 7.0 use {@link #getLocator} instead
  352. */
  353. public static List<Locator> getLocators() {
  354. Locator result = getLocator();
  355. if (result == null) {
  356. return Collections.emptyList();
  357. } else {
  358. return Collections.singletonList(result);
  359. }
  360. }
  361. /**
  362. * Returns the locator if it exists in this JVM.
  363. * Otherwise returns null.
  364. * @return the locator that exists in this JVM; null if no locator.
  365. * @since 7.0
  366. */
  367. public static Locator getLocator() {
  368. return InternalLocator.getLocator();
  369. }
  370. /**
  371. * Examine the size of the collection of locators running in this VM
  372. * @return the number of locators running in this VM
  373. * @deprecated as of 7.0 use {@link #hasLocator} instead.
  374. */
  375. public static boolean hasLocators() {
  376. return hasLocator();
  377. }
  378. /**
  379. * Returns true if a locator exists in this JVM.
  380. *
  381. * @return true if a locator exists in this JVM.
  382. * @since 7.0
  383. */
  384. public static boolean hasLocator() {
  385. return InternalLocator.hasLocator();
  386. }
  387. ///////////////////// Instance Methods /////////////////////
  388. /**
  389. * Returns the port on which this locator runs
  390. */
  391. public int getPort() {
  392. return this.port;
  393. }
  394. /**
  395. * Returns the distributed system started by this locator, if any
  396. */
  397. public abstract DistributedSystem getDistributedSystem();
  398. /**
  399. * Returns the log file to which this locator's output is written
  400. */
  401. public File getLogFile() {
  402. return this.logFile;
  403. }
  404. /**
  405. * Returns the IP address to which this locator's listening socket
  406. * is bound.
  407. */
  408. public InetAddress getBindAddress() {
  409. return this.bindAddress;
  410. }
  411. /**
  412. * Returns the hostname that will be given to clients so that they can
  413. * connect to this locator. Returns <code>null</code> if clients should
  414. * use the bind address.
  415. * @since 5.7
  416. */
  417. public String getHostnameForClients() {
  418. String result = this.hostnameForClients;
  419. if (result != null && result.equals("")) {
  420. result = null;
  421. }
  422. return result;
  423. }
  424. /**
  425. * Indicates whether the locator provides peer location services
  426. * to members
  427. * @return if peer location is enabled
  428. */
  429. public abstract boolean isPeerLocator();
  430. /**
  431. * Indicates whether the locator provides server location services
  432. * to clients
  433. * @return if server location is enabled
  434. */
  435. public abstract boolean isServerLocator();
  436. /**
  437. * Stops this distribution locator.
  438. */
  439. public abstract void stop();
  440. /**
  441. * Returns a brief description of this <code>Locator</code>
  442. */
  443. @Override
  444. public String toString() {
  445. return LocalizedStrings.DistributionLocator_DISTRIBUTION_LOCATOR_ON_0
  446. .toLocalizedString(asString());
  447. }
  448. /**
  449. * Get the string representation of this <code>Locator</code> in host[port]
  450. * format.
  451. */
  452. public String asString() {
  453. Object ba = this.bindAddress;
  454. if (ba == null) {
  455. try {
  456. ba = SocketCreator.getHostName(SocketCreator.getLocalHost());
  457. } catch (java.net.UnknownHostException uh) {
  458. }
  459. }
  460. StringBuilder locatorString = new StringBuilder(String.valueOf(ba));
  461. locatorString.append('[').append(this.port).append(']');
  462. return locatorString.toString();
  463. }
  464. /**
  465. * Starts a distribution locator from the command line.
  466. * <p>
  467. * This method of starting the locator is provided as an
  468. * alternative to the <i>gemfire start-locator</i> command to give
  469. * you complete control over the java virtual machine's configuration.
  470. * <p>
  471. * The <i>gemfire stop-locator</i> command can be used to stop
  472. * a locator that is started with this class.
  473. * <p>
  474. * java com.gemstone.gemfire.distributed.Locator port [bind-address] [gemfire-properties-file] [peer] [server]
  475. * <p>
  476. * port - the tcp/ip port that the locator should listen on. This is the
  477. * port number that applications will refer to in their <i>locators</i> property
  478. * in gemfire.properties
  479. * <p>
  480. * bind-address - the tcp/ip address that the locator should bind to. This
  481. * can be missing or be an empty string, which causes the locator to listen
  482. * on all host addresses.
  483. * <p>
  484. * gemfire-properties-file - the location of a gemfire.properties file to be
  485. * used in configuring the locator's distributed system. This can be missing
  486. * or be an empty string, which will cause the locator to use the default
  487. * search for gemfire.properties.
  488. * <p>
  489. * peer - true to start the peer locator service, false to disable it.
  490. * If unspecified, default to true.
  491. * <p>
  492. * server - true to start the cache server locator service, false to disable it.
  493. * If unspecified, defaults to true.
  494. * <p>
  495. * hostname-for-clients - the ip address or host name that clients will be told
  496. * to use to connect to this locator.
  497. * If unspecified, defaults to the bind-address.
  498. *
  499. * @since 5.0
  500. */
  501. public static void main(String args[]) {
  502. com.gemstone.gemfire.internal.DistributionLocator.main(args);
  503. }
  504. }