View Javadoc

1   /*-
2    * #%L
3    * prolobjectlink-jpi-tuprolog
4    * %%
5    * Copyright (C) 2020 - 2021 Prolobjectlink Project
6    * %%
7    * This program is free software: you can redistribute it and/or modify
8    * it under the terms of the GNU Lesser General Public License as
9    * published by the Free Software Foundation, either version 2.1 of the
10   * License, or (at your option) any later version.
11   * 
12   * This program is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   * GNU General Lesser Public License for more details.
16   * 
17   * You should have received a copy of the GNU General Lesser Public
18   * License along with this program.  If not, see
19   * <http://www.gnu.org/licenses/lgpl-2.1.html>.
20   * #L%
21   */
22  package io.github.prolobjectlink.prolog.tuprolog;
23  
24  import static io.github.prolobjectlink.prolog.PrologTermType.OBJECT_TYPE;
25  
26  import alice.tuprolog.Struct;
27  import alice.tuprolog.Term;
28  import alice.tuprolog.lib.InvalidObjectIdException;
29  import alice.tuprolog.lib.OOLibrary;
30  import io.github.prolobjectlink.prolog.PrologError;
31  import io.github.prolobjectlink.prolog.PrologProvider;
32  import io.github.prolobjectlink.prolog.PrologReference;
33  import io.github.prolobjectlink.prolog.PrologTerm;
34  
35  public class TuPrologReference extends TuPrologTerm implements PrologReference {
36  
37  	private static final OOLibrary OO_LIBRARY = new OOLibrary();
38  
39  	TuPrologReference(PrologProvider provider, Term reference) {
40  		super(OBJECT_TYPE, provider, reference);
41  	}
42  
43  	TuPrologReference(PrologProvider provider, Object reference) {
44  		super(OBJECT_TYPE, provider, set(reference));
45  	}
46  
47  	public Class<?> getReferenceType() {
48  		return getObject().getClass();
49  	}
50  
51  	public int getArity() {
52  		Struct object = (Struct) value;
53  		return object.getArity();
54  	}
55  
56  	public String getFunctor() {
57  		Struct object = (Struct) value;
58  		return object.getName();
59  	}
60  
61  	public PrologTerm[] getArguments() {
62  		return new PrologTerm[0];
63  	}
64  
65  	public Object getObject() {
66  		return get((Struct) value);
67  	}
68  
69  	static Struct set(Object reference) {
70  		return OO_LIBRARY.register(reference);
71  	}
72  
73  	static Object get(Struct id) {
74  		try {
75  			return OO_LIBRARY.getRegisteredObject(id);
76  		} catch (InvalidObjectIdException e) {
77  			throw new PrologError(e.getMessage(), e);
78  		}
79  	}
80  
81  }