Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
16bef1d7a695a5b6a2a41a0fa64b56f962864924
[simgrid.git] / src / java / simgrid / msg / ApplicationHandler.java
1 /*
2  * simgrid.msg.ApplicationHandler.java  1.00 07/05/01
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier           
5  * All right reserved. 
6  *
7  * This program is free software; you can redistribute 
8  * it and/or modify it under the terms of the license 
9  *(GNU LGPL) which comes with this package. 
10  */
11
12 package simgrid.msg;
13
14 import java.util.Vector;
15 import org.xml.sax.*;
16 import org.xml.sax.helpers.*;
17
18 /**
19  * The handler used to parse the deployment file which contains 
20  * the description of the application (simulation).
21  *
22  * @author  Abdelmalek Cherier
23  * @author  Martin Quinson
24  * @version 1.00, 07/05/01
25  * @see Host
26  * @see Process
27  * @see Simulation
28  * @since SimGrid 3.3
29  * @since JDK1.5011 
30  */
31 public final class ApplicationHandler extends DefaultHandler
32 {
33         
34         /* 
35          * This class is used to create the processes descibed in the deployment file.
36          */
37         class ProcessFactory
38         {
39                 /**
40                  * The vector which contains the arguments of the main function 
41                  * of the process object.
42                  */
43                 public Vector args;
44                 
45                 /**
46                  * The name of the host of the process.
47                  */     
48                 private String hostName;
49                 
50                 /**
51                  * The function of the process.
52                  */
53                 private String function;
54                 
55                 /**
56                  * Default constructor.
57                  */
58                 public ProcessFactory(){
59                         this.args = new Vector();
60                         this.hostName = null;
61                         this.function = null;
62                 }
63                 
64                 /**
65                  * This method is called by the start element handler.
66                  * It sets the host and the function of the process to create,
67                  * and clear the vector containing the arguments of the 
68                  * previouse process function if needed.
69                  *
70                  * @host                                The host of the process to create.
71                  * @function                    The function of the process to create.
72                  *
73                  */
74                 public void setProcessIdentity(String hostName, String function){
75                         this.hostName = hostName;
76                         this.function = function;
77                 
78                         if(!args.isEmpty())
79                                 args.clear();
80                 }
81                 
82                 /**
83                  * This method is called by the startElement() handler.
84                  * It stores the argument of the function of the next
85                  * process to create in the vector of arguments.
86                  *
87                  * @arg                                 The argument to add.
88                  *
89                  */
90                 public void registerProcessArg(String arg){
91                         this.args.add(arg);     
92                 }
93         
94                 public void createProcess(){
95                         try {
96                                 
97                         Class cls = Class.forName(this.function);
98                         simgrid.msg.Process process = (simgrid.msg.Process)cls.newInstance();
99                         process.name = process.getName(); //this.function;
100                         process.id = simgrid.msg.Process.nextProcessId++;
101                         Host host = Host.getByName(this.hostName);
102                         Msg.processCreate(process,host);
103                         Vector args = processFactory.args;
104                         int size = args.size();
105                         
106                         for(int index = 0; index < size; index++)
107                                 process.args.add(args.get(index));
108                                 
109                 } catch(JniException e)
110                 {
111                         System.out.println(e.toString());
112                         e.printStackTrace();    
113                  
114                 } catch(NativeException e)
115                 {
116                         System.out.println(e.toString());
117                         e.printStackTrace();
118                 
119                 } catch(HostNotFoundException e) {
120                         System.out.println(e.toString());
121                         e.printStackTrace();
122                         
123                 } catch(ClassNotFoundException e) {
124                         System.out.println(this.function + " class not found\n The attribut function of the element process  of your deployment file\n must correspond to the name of a Msg Proces class)");
125                         e.printStackTrace();
126
127                 } catch(InstantiationException e) {
128                          System.out.println("instantiation exception");
129                          e.printStackTrace();
130                         } catch (IllegalAccessException e) {
131                         System.out.println("illegal access exception");
132                         e.printStackTrace();
133                 } catch (IllegalArgumentException e) {  
134                          System.out.println("illegal argument exception");
135                          e.printStackTrace();
136                 }
137
138         }
139         }
140         
141         /* 
142          * the ProcessFactory object used to create the processes.
143          */
144         private ProcessFactory processFactory;
145     
146     public ApplicationHandler() {
147         super();
148     }
149     /**
150      * instanciates the process factory 
151      */
152     public void startDocument(){
153         this.processFactory = new ProcessFactory();     
154     } 
155     
156     public void characters(char[] caracteres, int debut, int longueur) {} // NOTHING TODO
157     
158    /**
159     * element handlers
160     */
161     public void startElement(String nameSpace, String localName,String qName,Attributes attr) {
162         if(localName.equals("process"))
163             onProcessIdentity(attr);   
164                 else if(localName.equals("argument"))
165             onProcessArg(attr);
166     }
167     
168      /**
169      * process attributs handler.
170      */
171     public void onProcessIdentity(Attributes attr) {
172         processFactory.setProcessIdentity(attr.getValue(0),attr.getValue(1));
173     }
174         
175         /**
176      * process arguments handler.
177      */
178     public void onProcessArg(Attributes attr) {
179         processFactory.registerProcessArg(attr.getValue(0));      
180     }
181     
182     /**
183      * creates the process
184      */
185     public void endElement(String nameSpace, String localName,String qName)  {
186         if(localName.equals("process"))
187 {
188                 processFactory.createProcess();
189         }      
190     }
191      
192     public void endDocument() {} // NOTHING TODO
193 }