View Javadoc
1   /**
2    * Redistribution and use of this software and associated documentation ("Software"), with or
3    * without modification, are permitted provided that the following conditions are met:
4    *
5    * 1. Redistributions of source code must retain copyright statements and notices. Redistributions
6    * must also contain a copy of this document.
7    *
8    * 2. Redistributions in binary form must reproduce the above copyright notice, this list of
9    * conditions and the following disclaimer in the documentation and/or other materials provided with
10   * the distribution.
11   *
12   * 3. The name "Exolab" must not be used to endorse or promote products derived from this Software
13   * without prior written permission of Intalio, Inc. For written permission, please contact
14   * info@exolab.org.
15   *
16   * 4. Products derived from this Software may not be called "Exolab" nor may "Exolab" appear in
17   * their names without prior written permission of Intalio, Inc. Exolab is a registered trademark of
18   * Intalio, Inc.
19   *
20   * 5. Due credit should be given to the Exolab Project (http://www.exolab.org/).
21   *
22   * THIS SOFTWARE IS PROVIDED BY INTALIO, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR
23   * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
24   * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTALIO, INC. OR ITS
25   * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27   * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28   * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
29   * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30   *
31   * Copyright 1999 (C) Intalio, Inc. All Rights Reserved.
32   *
33   * $Id$
34   */
35  
36  package org.exolab.castor.dsml.jndi;
37  
38  import javax.naming.NamingException;
39  import javax.naming.NameNotFoundException;
40  import javax.naming.NamingEnumeration;
41  import javax.naming.directory.SearchControls;
42  import javax.naming.directory.DirContext;
43  import javax.naming.directory.SearchResult;
44  
45  import org.xml.sax.DocumentHandler;
46  import org.xml.sax.SAXException;
47  import org.castor.core.util.Messages;
48  import org.exolab.castor.dsml.Consumer;
49  import org.exolab.castor.dsml.Exporter;
50  import org.exolab.castor.dsml.SearchDescriptor;
51  import org.exolab.castor.dsml.ImportExportException;
52  
53  /**
54   * @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
55   * @version $Revision$ $Date: 2006-04-10 16:39:24 -0600 (Mon, 10 Apr 2006) $
56   */
57  public class JNDIExporter extends Exporter {
58    private DirContext _ctx;
59  
60    public JNDIExporter(final DirContext ctx) {
61      _ctx = ctx;
62    }
63  
64    protected Consumer createConsumer() {
65      return new JNDIConsumer();
66    }
67  
68    public void export(final DocumentHandler docHandler, final boolean serverSchema,
69        final boolean importPolicy) throws ImportExportException {
70      NamingEnumeration<SearchResult> enumeration;
71      String filter;
72      JNDIProducer producer;
73      SearchControls searchCtrl;
74  
75      if (getSearchDescriptor() == null) {
76        throw new IllegalStateException(Messages.message("dsml.searchDescriptorRequired"));
77      }
78  
79      filter = getSearchDescriptor().getFilter();
80      if (filter == null) {
81        filter = "()";
82      }
83      try {
84        searchCtrl = new SearchControls();
85        searchCtrl.setReturningAttributes(getSearchDescriptor().getReturnAttrs());
86        switch (getSearchDescriptor().getScope()) {
87          case SearchDescriptor.Scope.BASE:
88            searchCtrl.setSearchScope(SearchControls.OBJECT_SCOPE);
89            break;
90          case SearchDescriptor.Scope.ONE_LEVEL:
91            searchCtrl.setSearchScope(SearchControls.ONELEVEL_SCOPE);
92            break;
93          case SearchDescriptor.Scope.SUB_TREE:
94            searchCtrl.setSearchScope(SearchControls.SUBTREE_SCOPE);
95            break;
96          default:
97            break;
98        }
99        enumeration = _ctx.search(getSearchDescriptor().getBaseDN(), filter, searchCtrl);
100     } catch (NameNotFoundException except) {
101       enumeration = null;
102     } catch (NamingException except) {
103       throw new ImportExportException(except);
104     }
105 
106     try {
107       producer = new JNDIProducer(docHandler, false);
108       producer.startDocument();
109       if (enumeration != null) {
110         producer.produce(enumeration);
111       }
112       if (importPolicy && getImportDescriptor() != null) {
113         producer.produce(getImportDescriptor());
114       }
115       producer.endDocument();
116     } catch (SAXException except) {
117       throw new ImportExportException(except);
118     }
119   }
120 }