View Javadoc
1   /**
2    * This file Copyright (c) 2015-2016 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.config.registry;
35  
36  import info.magnolia.config.source.ConfigurationSourceType;
37  
38  import lombok.Getter;
39  import lombok.Value;
40  
41  /**
42   * DefinitionMetadataBuilder are used to progressively populate metadata for a {@link DefinitionProvider}. For example,
43   * the name() method could be called several times before a provider is registered in a {@link info.magnolia.config.registry.Registry}.
44   * They are also responsible for determining the referenceId string used by the registries. Implement your own, or use
45   * one of the static factory methods.
46   * @see #usingModuleAndRelativePathAsId()
47   * @see #usingNameAsId()
48   */
49  @Getter
50  public abstract class DefinitionMetadataBuilder {
51      /**
52       * A convenience static factory method which returns a DefinitionMetadataBuilder which generates referenceId using the <module-name>:<relative-location> form.
53       */
54      public static DefinitionMetadataBuilder usingModuleAndRelativePathAsId() {
55          return new ModuleAndRelativePathMetadataBuilder();
56      }
57  
58      /**
59       * A convenience static factory method which returns a DefinitionMetadataBuilder which generates referenceId using the name property.
60       */
61      public static DefinitionMetadataBuilder usingNameAsId() {
62          return new NameMetadataBuilder();
63      }
64  
65      private static class ModuleAndRelativePathMetadataBuilder extends DefinitionMetadataBuilder {
66          @Override
67          protected String buildReferenceId() {
68              return getModule() + ":" + getRelativeLocation();
69          }
70      }
71  
72      private static class NameMetadataBuilder extends DefinitionMetadataBuilder {
73          @Override
74          protected String buildReferenceId() {
75              return getName();
76          }
77      }
78  
79      private DefinitionType type;
80      private String name;
81      private String module;
82      private String location;
83      private String relativeLocation;
84      private ConfigurationSourceType configurationSourceType;
85  
86      protected DefinitionMetadataBuilder() {
87      }
88  
89      public DefinitionMetadataBuilder type(DefinitionType type) {
90          this.type = type;
91          return this;
92      }
93  
94      public DefinitionMetadataBuilder name(String name) {
95          this.name = name;
96          return this;
97      }
98  
99      public DefinitionMetadataBuilder module(String module) {
100         this.module = module;
101         return this;
102     }
103 
104     public DefinitionMetadataBuilder location(String location) {
105         this.location = location;
106         return this;
107     }
108 
109     public DefinitionMetadataBuilder relativeLocation(String relativeLocation) {
110         this.relativeLocation = relativeLocation;
111         return this;
112     }
113 
114     public DefinitionMetadataBuilder configurationSourceType(ConfigurationSourceType configurationSourceType) {
115         this.configurationSourceType = configurationSourceType;
116         return this;
117     }
118 
119     public DefinitionMetadata build() {
120         final String referenceId = buildReferenceId();
121         return new DefinitionMetadataImpl(this.type, referenceId, this.name, this.module, this.location, this.relativeLocation, this.configurationSourceType);
122     }
123 
124     protected abstract String buildReferenceId();
125 
126     /**
127      * Implementation of {@link info.magnolia.config.registry.DefinitionMetadata}.
128      */
129     @Value
130     public static class DefinitionMetadataImpl implements DefinitionMetadata {
131         private final DefinitionType type;
132         private final String referenceId;
133         private final String name;
134         private final String module;
135         private final String location;
136         private final String relativeLocation;
137         private final ConfigurationSourceType configurationSourceType;
138 
139         @Override
140         public String toString() {
141             return String.format("[%s] definition [%s] with reference id: [%s] from module [%s] at [%s]",
142                 type.getName(), name, referenceId, module, relativeLocation);
143         }
144     }
145 
146 }