|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectplanetLabAPI.PlanetLabXmlRpcCaller
public class PlanetLabXmlRpcCaller
This class is the interface to the PlanetLab Central API The API functions are called through xml-rpc calls over an ssl connection
Nested Class Summary | |
---|---|
class |
PlanetLabXmlRpcCaller.MyTypeFactory
This class handles "nil" values returned by the PLC xml rpc server. |
Field Summary | |
---|---|
private java.util.Map<java.lang.String,java.lang.String> |
authMap
|
private org.apache.xmlrpc.client.XmlRpcClient |
client
|
static java.lang.String |
serverPage
|
Constructor Summary | |
---|---|
PlanetLabXmlRpcCaller()
Constructs the object and initializes the XmlRpcClient with the appropriate settings. |
Method Summary | |
---|---|
boolean |
AddNodesToSlice(java.lang.String sliceName,
int[] nodeIds)
adds nodes to a slice see: https://www.planet-lab.org/doc/plc_api#AddSliceToNodes |
boolean |
AddNodesToSlice(java.lang.String sliceName,
java.lang.String[] nodeHostnames)
adds nodes to a slice see: https://www.planet-lab.org/doc/plc_api#AddSliceToNodes |
private void |
checkAuthenticationData()
|
boolean |
DeleteNodesFromSlice(java.lang.String sliceName,
int[] nodeIds)
deletes nodes from a slice see: https://www.planet-lab.org/doc/plc_api#DeleteSliceFromNodes |
java.lang.Object |
execute(java.lang.String function,
java.lang.Object[] params)
executes a xml-rpc |
java.lang.Object[] |
getAllNodes(java.lang.String[] returnFields)
gets the Data of all nodes by calling GetNodes() from PlanetLab Central API see: https://www.planet-lab.org/doc/plc_api#GetNodes |
boolean |
GetNodeDetails(java.lang.String sliceName,
int[] nodeIds)
adds nodes to a slice see: https://www.planet-lab.org/doc/plc_api#AddSliceToNodes |
java.lang.Object[] |
getNodeNetworks(int nodenetworkId,
java.lang.String[] returnFields)
Gets the information about a network interface of a node by calling GetNodeNetworks() from PlanetLab Central API see: https://www.planet-lab.org/doc/plc_api#GetNodeNetworks |
java.lang.Object[] |
getNodesByHostname(java.lang.String[] hostnames,
java.lang.String[] returnFields)
gets the Data of some nodes by calling GetNodes() from PlanetLab Central API see: https://www.planet-lab.org/doc/plc_api#GetNodes |
java.lang.Object[] |
getNodesById(int[] nodeIds,
java.lang.String[] returnFields)
gets the Data of some nodes by calling GetNodes() from PlanetLab Central API see: https://www.planet-lab.org/doc/plc_api#GetNodes |
java.lang.Object[] |
getSitesById(int[] siteIds,
java.lang.String[] returnFields)
gets the Data of some sites by calling GetSites() from PlanetLab Central API see: https://www.planet-lab.org/doc/plc_api#GetSites |
java.util.Map<java.lang.String,java.lang.Object[]> |
getSliceAttribsByName(java.lang.String sliceName,
java.lang.String[] returnFields)
gets the Data of one slice by calling GetSlices() from PlanetLab Central API see: https://www.planet-lab.org/doc/plc_api#GetSlices |
static void |
main(java.lang.String[] args)
The main method can be used for testing the connection to the PLCAPI without the need to start the whole software. |
void |
setAuthenticationData(java.lang.String userName,
java.lang.String password,
java.lang.String role)
Sets the authentication data needed for PLC-API calls. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private org.apache.xmlrpc.client.XmlRpcClient client
public static java.lang.String serverPage
private java.util.Map<java.lang.String,java.lang.String> authMap
Constructor Detail |
---|
public PlanetLabXmlRpcCaller() throws java.net.MalformedURLException
java.net.MalformedURLException
Method Detail |
---|
public void setAuthenticationData(java.lang.String userName, java.lang.String password, java.lang.String role)
userName
- the e-mail address of a planetlab userpassword
- role
- one of admin, pi, user, nodepublic java.lang.Object execute(java.lang.String function, java.lang.Object[] params) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
function
- - name of the function to executeparams
- - parameters to pass the function
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
- - if the authentication data was not set before callprivate void checkAuthenticationData() throws AuthDataNotSetException
AuthDataNotSetException
public java.util.Map<java.lang.String,java.lang.Object[]> getSliceAttribsByName(java.lang.String sliceName, java.lang.String[] returnFields) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
sliceName
- - name of the slice you want some infos ofreturnFields
- - the fields you're interested in
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public java.lang.Object[] getNodesById(int[] nodeIds, java.lang.String[] returnFields) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
nodeIds
- - ids of the nodes you want some infos ofreturnFields
- - the fields you're interested in
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public java.lang.Object[] getNodesByHostname(java.lang.String[] hostnames, java.lang.String[] returnFields) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
hostnames
- - hostnames of the nodes you want some infos ofreturnFields
- - the fields you're interested in
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public java.lang.Object[] getNodeNetworks(int nodenetworkId, java.lang.String[] returnFields) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
nodenetworkId
- - The id of the newtwork interface (can be obtained by calling GetNodes())returnFields
- - the fields you're interested in
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public java.lang.Object[] getAllNodes(java.lang.String[] returnFields) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
returnFields
- - the fields you're interested in
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public java.lang.Object[] getSitesById(int[] siteIds, java.lang.String[] returnFields) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
siteIds
- - ids of the sites you want some infos ofreturnFields
- - the fields you're interested in
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public boolean AddNodesToSlice(java.lang.String sliceName, int[] nodeIds) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
sliceName
- - name of the slice you want the nodes to be added tonodeIds
- - ids of the nodes you want to add
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public boolean AddNodesToSlice(java.lang.String sliceName, java.lang.String[] nodeHostnames) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
sliceName
- - name of the slice you want the nodes to be added tonodeHostnames
- - hostnames of the nodes you want to add
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public boolean DeleteNodesFromSlice(java.lang.String sliceName, int[] nodeIds) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
sliceName
- - name of the slice you want the nodes to be deleted fromnodeIds
- - ids of the nodes you want to delete
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public boolean GetNodeDetails(java.lang.String sliceName, int[] nodeIds) throws org.apache.xmlrpc.XmlRpcException, AuthDataNotSetException
sliceName
- - name of the slice you want the nodes to be added tonodeIds
- - ids of the nodes you want to add
org.apache.xmlrpc.XmlRpcException
AuthDataNotSetException
public static void main(java.lang.String[] args)
args
- - server-address, username and password may be passed.
If not, they will be obtained interactively.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |