You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ud...@apache.org on 2018/03/16 16:43:01 UTC

[geode] 02/03: Revert "Fixed some breaking compilation"

This is an automated email from the ASF dual-hosted git repository.

udo pushed a commit to branch feature/GEODE-3926_2
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 8b294b3da917b535dae9e40291bffff5f1f29b80
Author: Udo <uk...@pivotal.io>
AuthorDate: Wed Mar 14 16:54:27 2018 -0700

    Revert "Fixed some breaking compilation"
    
    This reverts commit d128894
---
 .../lucene/internal/LuceneIndexFactoryImpl.java    | 79 ++++++++++++++++++++++
 1 file changed, 79 insertions(+)

diff --git a/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexFactoryImpl.java b/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexFactoryImpl.java
new file mode 100644
index 0000000..a326e39
--- /dev/null
+++ b/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexFactoryImpl.java
@@ -0,0 +1,79 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
+ * agreements. See the NOTICE file distributed with this work for additional information regarding
+ * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance with the License. You may obtain a
+ * copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package org.apache.geode.cache.lucene.internal;
+
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.concurrent.ExecutorService;
+
+import org.apache.lucene.analysis.Analyzer;
+import org.apache.lucene.analysis.standard.StandardAnalyzer;
+
+import org.apache.geode.cache.lucene.LuceneIndexFactory;
+import org.apache.geode.cache.lucene.LuceneSerializer;
+
+public class LuceneIndexFactoryImpl implements LuceneIndexFactory {
+  private final LuceneServiceImpl service;
+  private final Map<String, Analyzer> fields = new LinkedHashMap<String, Analyzer>();
+  private LuceneSerializer serializer;
+
+
+  public LuceneIndexFactoryImpl(final LuceneServiceImpl luceneService) {
+    this.service = luceneService;
+  }
+
+  @Override
+  public LuceneIndexFactoryImpl addField(final String name) {
+    return addField(name, new StandardAnalyzer());
+  }
+
+  @Override
+  public LuceneIndexFactoryImpl setFields(final String... fields) {
+    this.fields.clear();
+    for (String field : fields) {
+      addField(field);
+    }
+    return this;
+  }
+
+  @Override
+  public LuceneIndexFactoryImpl addField(final String name, final Analyzer analyzer) {
+    fields.put(name, analyzer);
+    return this;
+  }
+
+  @Override
+  public LuceneIndexFactoryImpl setFields(final Map<String, Analyzer> fieldMap) {
+    this.fields.clear();
+    this.fields.putAll(fieldMap);
+    return this;
+  }
+
+  @Override
+  public void create(final String indexName, final String regionPath) {
+    this.create(indexName, regionPath, false);
+  }
+
+  public void create(final String indexName, final String regionPath,
+      boolean allowOnExistingRegion) {
+    service.createIndex(indexName, regionPath, fields, serializer, allowOnExistingRegion);
+  }
+
+  @Override
+  public LuceneIndexFactoryImpl setLuceneSerializer(LuceneSerializer luceneSerializer) {
+    this.serializer = luceneSerializer;
+    return this;
+  }
+}

-- 
To stop receiving notification emails like this one, please contact
udo@apache.org.