KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > juddi > function > GetTModelDetailFunction


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.juddi.function;
17
18 import java.util.Vector JavaDoc;
19
20 import org.apache.commons.logging.Log;
21 import org.apache.commons.logging.LogFactory;
22 import org.apache.juddi.datastore.DataStore;
23 import org.apache.juddi.datastore.DataStoreFactory;
24 import org.apache.juddi.datatype.RegistryObject;
25 import org.apache.juddi.datatype.request.GetTModelDetail;
26 import org.apache.juddi.datatype.response.TModelDetail;
27 import org.apache.juddi.error.InvalidKeyPassedException;
28 import org.apache.juddi.error.RegistryException;
29 import org.apache.juddi.registry.RegistryEngine;
30 import org.apache.juddi.util.Config;
31
32 /**
33  * @author Steve Viens (sviens@apache.org)
34  */

35 public class GetTModelDetailFunction extends AbstractFunction
36 {
37   // private reference to jUDDI Logger
38
private static Log log = LogFactory.getLog(GetTModelDetailFunction.class);
39
40   /**
41    *
42    */

43   public GetTModelDetailFunction(RegistryEngine registry)
44   {
45     super(registry);
46   }
47
48   /**
49    *
50    */

51   public RegistryObject execute(RegistryObject regObject)
52     throws RegistryException
53   {
54     GetTModelDetail request = (GetTModelDetail)regObject;
55     String JavaDoc generic = request.getGeneric();
56     Vector JavaDoc keyVector = request.getTModelKeyVector();
57
58     // aquire a jUDDI datastore instance
59
DataStore dataStore = DataStoreFactory.getDataStore();
60
61     try
62     {
63       dataStore.beginTrans();
64
65       for (int i=0; i<keyVector.size(); i++)
66       {
67         String JavaDoc tModelKey = (String JavaDoc)keyVector.elementAt(i);
68
69         // If the a TModel doesn't exist hrow an InvalidKeyPassedException.
70
if ((tModelKey == null) || (tModelKey.length() == 0) ||
71             (!dataStore.isValidTModelKey(tModelKey)))
72           throw new InvalidKeyPassedException("get_tModelDetail: "+
73               "tModelKey="+tModelKey);
74       }
75
76       Vector JavaDoc tModelVector = new Vector JavaDoc();
77
78       for (int i=0; i<keyVector.size(); i++)
79       {
80         String JavaDoc tModelKey = (String JavaDoc)keyVector.elementAt(i);
81         tModelVector.add(dataStore.fetchTModel(tModelKey));
82       }
83
84       dataStore.commit();
85
86       // create a new TModelDetail and stuff the new tModelVector into it.
87
TModelDetail detail = new TModelDetail();
88       detail.setGeneric(generic);
89       detail.setTModelVector(tModelVector);
90       detail.setOperator(Config.getOperator());
91       return detail;
92     }
93     catch(InvalidKeyPassedException keyex)
94     {
95       try { dataStore.rollback(); } catch(Exception JavaDoc e) { }
96       log.info(keyex.getMessage());
97       throw (RegistryException)keyex;
98     }
99     catch(RegistryException regex)
100     {
101       try { dataStore.rollback(); } catch(Exception JavaDoc e) { }
102       log.error(regex);
103       throw (RegistryException)regex;
104     }
105     catch(Exception JavaDoc ex)
106     {
107       try { dataStore.rollback(); } catch(Exception JavaDoc e) { }
108       log.error(ex);
109       throw new RegistryException(ex);
110     }
111     finally
112     {
113       if (dataStore != null)
114         dataStore.release();
115     }
116   }
117
118
119   /***************************************************************************/
120   /***************************** TEST DRIVER *********************************/
121   /***************************************************************************/
122
123
124   public static void main(String JavaDoc[] args)
125   {
126     // initialize the registry
127
RegistryEngine reg = new RegistryEngine();
128     reg.init();
129
130     try
131     {
132     }
133     catch (Exception JavaDoc ex)
134     {
135       // write execption to the console
136
ex.printStackTrace();
137     }
138     finally
139     {
140       // destroy the registry
141
reg.dispose();
142     }
143   }
144 }
Popular Tags