View Javadoc
1   /**
2    * This file Copyright (c) 2018 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.ui.contentapp;
35  
36  import info.magnolia.ui.filter.DataFilter;
37  
38  import java.util.stream.Stream;
39  
40  import com.vaadin.data.provider.ConfigurableFilterDataProvider;
41  import com.vaadin.data.provider.DataProvider;
42  import com.vaadin.data.provider.HierarchicalDataProvider;
43  import com.vaadin.data.provider.HierarchicalQuery;
44  import com.vaadin.data.provider.Query;
45  
46  /**
47   * Filterable wrapper for a data provider of the specified type.
48   * @param <T> item type.
49   */
50  public class FilterableHierarchicalDataProvider<T> extends HierarchicalDataProviderWrapper<T, DataFilter> implements ConfigurableFilterDataProvider<T, DataFilter, DataFilter> {
51  
52      private final DataProvider<T, DataFilter> filteringDataProvider;
53  
54      public static <T> FilterableHierarchicalDataProvider<T> wrap(HierarchicalDataProvider<T, DataFilter> hierarchicalDataProvider, DataProvider<T, DataFilter> filteringDataProvider) {
55          return new FilterableHierarchicalDataProvider<>(hierarchicalDataProvider, filteringDataProvider);
56      }
57  
58      /**
59       * @deprecated since 6.2.4. Use {@link info.magnolia.ui.contentapp.FilterableHierarchicalDataProvider#wrap(com.vaadin.data.provider.HierarchicalDataProvider, com.vaadin.data.provider.DataProvider)} instead.
60       */
61      @Deprecated
62      public static <T> FilterableHierarchicalDataProvider<T> wrap(HierarchicalDataProvider<T, DataFilter> src) {
63          return new FilterableHierarchicalDataProvider<>(src, null);
64      }
65  
66      private FilterableHierarchicalDataProvider(HierarchicalDataProvider<T, DataFilter> dataProvider, DataProvider<T, DataFilter> filteringDataProvider) {
67          super(dataProvider);
68          this.filteringDataProvider = filteringDataProvider;
69      }
70  
71      private DataFilter filter;
72  
73      /**
74       * @deprecated since 6.2.1. Use {@link #setFilter(info.magnolia.ui.filter.DataFilter)} instead.
75       */
76      @Deprecated
77      public void setDataFilter(DataFilter dataFilter) {
78          setFilter(dataFilter);
79      }
80  
81      @Override
82      public void setFilter(DataFilter filter) {
83          this.filter = filter;
84      }
85  
86      @Override
87      public Stream<T> fetch(Query<T, DataFilter> t) {
88          return dataProvider.fetch(new HierarchicalQuery<>(t.getOffset(), t.getLimit(),
89                  t.getSortOrders(), t.getInMemorySorting(), getFilter(t), null));
90      }
91  
92      @Override
93      public Stream<T> fetchChildren(HierarchicalQuery<T, DataFilter> query) {
94          Stream<T> stream;
95          if (isFlatFiltering()) {
96              stream = filteringDataProvider.fetch(createQueryWithFilter(query));
97          } else {
98              stream = super.fetchChildren(query);
99          }
100         if (query.getInMemorySorting() != null) {
101             stream = stream.sorted(query.getInMemorySorting());
102         }
103         return stream;
104     }
105 
106     @Override
107     public int getChildCount(HierarchicalQuery<T, DataFilter> query) {
108         if (isFlatFiltering()) {
109             if (query.getParent() == null) {
110                 return (int) fetchChildren(query).count(); //children just at root level while filtering
111             } else {
112                 return 0; //flat structure, no children
113             }
114         }
115         return super.getChildCount(query);
116     }
117 
118     @Override
119     public DataFilter getFilter(Query<T, DataFilter> query) {
120         return filter;
121     }
122 
123     @Override
124     public boolean hasChildren(T item) {
125         return isFlatFiltering() ? getChildCount(new HierarchicalQuery<>(filter, item)) > 0 : super.hasChildren(item);
126     }
127 
128     private boolean isFlatFiltering() {
129         return filteringDataProvider != null && filter != null && !filter.isEmpty();
130     }
131 }