blob: 1fa1d3297c1b83d2e6301f1057b66e0678990b8b [file] [log] [blame]
Richard S. Hallaf656a02009-06-11 16:07:20 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package aQute.cpeg;
20
21
22import org.osgi.framework.*;
23import org.osgi.service.command.*;
24
25
26public class Procedural {
27
28 public Object _if( CommandSession session, Function condition, Function ifTrue, Function ifFalse ) throws Exception {
29 Object result = condition.execute(session, null);
30 if ( isTrue(result)) {
31 return ifTrue.execute(session, null);
32 } else {
33 if ( ifFalse != null )
34 return ifFalse.execute(session,null);
35 }
36 return null;
37 }
38
39 public Object _new(String name, Bundle bundle) throws Exception {
40 if ( bundle == null)
41 return Class.forName(name).newInstance();
42 else {
43 return bundle.loadClass(name).newInstance();
44 }
45 }
46
47 private boolean isTrue(Object result) {
48 if ( result == null)
49 return false;
50
51 if ( result instanceof String && ((String)result).equals(""))
52 return false;
53
54 if ( result instanceof Boolean )
55 return ((Boolean)result).booleanValue();
56
57 return true;
58 }
59}