1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
//******************************************************************************
//
// File: JobSchedulerMessage.java
// Package: edu.rit.pj.cluster
// Unit: Class edu.rit.pj.cluster.JobSchedulerMessage
//
// This Java source file is copyright (C) 2012 by Alan Kaminsky. All rights
// reserved. For further information, contact the author, Alan Kaminsky, at
// ark@cs.rit.edu.
//
// This Java source file is part of the Parallel Java Library ("PJ"). PJ is free
// software; you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// PJ is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// Linking this library statically or dynamically with other modules is making a
// combined work based on this library. Thus, the terms and conditions of the
// GNU General Public License cover the whole combination.
//
// As a special exception, the copyright holders of this library give you
// permission to link this library with independent modules to produce an
// executable, regardless of the license terms of these independent modules, and
// to copy and distribute the resulting executable under terms of your choice,
// provided that you also meet, for each linked independent module, the terms
// and conditions of the license of that module. An independent module is a
// module which is not derived from or based on this library. If you modify this
// library, you may extend this exception to your version of the library, but
// you are not obligated to do so. If you do not wish to do so, delete this
// exception statement from your version.
//
// A copy of the GNU General Public License is provided in the file gpl.txt. You
// may also obtain a copy of the GNU General Public License on the World Wide
// Web at http://www.gnu.org/licenses/gpl.html.
//
//******************************************************************************
package edu.rit.pj.cluster;
import java.io.IOException;
import java.io.Externalizable;
import java.io.ObjectInput;
import java.io.ObjectOutput;
/**
* Class JobSchedulerMessage provides a message sent to a Job Scheduler process
* (interface {@linkplain JobSchedulerRef}) in the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 24-Jan-2012
*/
public abstract class JobSchedulerMessage
extends Message
implements Externalizable
{
// Hidden data members.
private static final long serialVersionUID = -7379945472003527741L;
// Exported constructors.
/**
* Construct a new job scheduler message.
*/
public JobSchedulerMessage()
{
}
/**
* Construct a new job scheduler message with the given message tag.
*
* @param theTag Message tag to use when sending this message.
*/
public JobSchedulerMessage
(int theTag)
{
super (theTag);
}
// Exported operations.
/**
* Construct a new "backend failed" message.
*
* @param theJobFrontend Job frontend that is calling this method.
* @param name Backend node name.
*
* @return "Backend failed" message.
*/
public static JobSchedulerMessage backendFailed
(JobFrontendRef theJobFrontend,
String name)
{
return new BackendFailedMessage (theJobFrontend, name);
}
/**
* Construct a new "cancel job" message.
*
* @param theJobFrontend Job frontend that is calling this method.
* @param errmsg Error message string.
*
* @return "Cancel job" message.
*/
public static JobSchedulerMessage cancelJob
(JobFrontendRef theJobFrontend,
String errmsg)
{
return new CancelJobMessage (theJobFrontend, errmsg);
}
/**
* Construct a new "job finished" message.
*
* @param theJobFrontend Job frontend that is calling this method.
*
* @return "Job finished" message.
*/
public static JobSchedulerMessage jobFinished
(JobFrontendRef theJobFrontend)
{
return new JobFinishedMessage (theJobFrontend);
}
/**
* Construct a new "renew lease" message.
*
* @param theJobFrontend Job frontend that is calling this method.
*
* @return "Renew lease" message.
*/
public static JobSchedulerMessage renewLease
(JobFrontendRef theJobFrontend)
{
return new RenewLeaseMessage (theJobFrontend);
}
/**
* Construct a new "report comment" message.
*
* @param theJobFrontend Job frontend that is calling this method.
* @param rank Process rank.
* @param comment Comment string.
*
* @return "Report comment" message.
*/
public static JobSchedulerMessage reportComment
(JobFrontendRef theJobFrontend,
int rank,
String comment)
{
return new ReportCommentMessage (theJobFrontend, rank, comment);
}
/**
* Construct a new "request job" message.
*
* @param theJobFrontend Job frontend that is calling this method.
* @param username User name.
* @param Nn Number of backend nodes.
* @param Np Number of processes.
* @param Nt Number of CPUs per process. 0 means "all CPUs."
*
* @exception IOException
* Thrown if an I/O error occurred.
*/
public static JobSchedulerMessage requestJob
(JobFrontendRef theJobFrontend,
String username,
int Nn,
int Np,
int Nt)
{
return new RequestJobMessage (theJobFrontend, username, Nn, Np, Nt);
}
/**
* Invoke the method corresponding to this job scheduler message on the
* given Job Scheduler object. The method arguments come from the fields of
* this job scheduler message object.
*
* @param theJobScheduler Job Scheduler on which to invoke the method.
* @param theJobFrontend Job Frontend that is calling the method.
*
* @exception IOException
* Thrown if an I/O error occurred.
*/
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
throw new UnsupportedOperationException();
}
/**
* Write this job scheduler message to the given object output stream.
*
* @param out Object output stream.
*
* @exception IOException
* Thrown if an I/O error occurred.
*/
public void writeExternal
(ObjectOutput out)
throws IOException
{
}
/**
* Read this job scheduler message from the given object input stream.
*
* @param in Object input stream.
*
* @exception IOException
* Thrown if an I/O error occurred.
*/
public void readExternal
(ObjectInput in)
throws IOException
{
}
// Hidden subclasses.
/**
* Class BackendFailedMessage provides the Job Scheduler "backend failed"
* message in the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 13-Oct-2006
*/
private static class BackendFailedMessage
extends JobSchedulerMessage
{
private static final long serialVersionUID = 6495614788809259018L;
private String name;
public BackendFailedMessage()
{
}
public BackendFailedMessage
(JobFrontendRef theJobFrontend,
String name)
{
super (Message.FROM_JOB_FRONTEND);
this.name = name;
}
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
theJobScheduler.backendFailed (theJobFrontend, name);
}
public void writeExternal
(ObjectOutput out)
throws IOException
{
out.writeUTF (name);
}
public void readExternal
(ObjectInput in)
throws IOException
{
name = in.readUTF();
}
}
/**
* Class CancelJobMessage provides the Job Scheduler "cancel job" message in
* the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 12-Oct-2006
*/
private static class CancelJobMessage
extends JobSchedulerMessage
{
private static final long serialVersionUID = 2902818757044365344L;
private String errmsg;
public CancelJobMessage()
{
}
public CancelJobMessage
(JobFrontendRef theJobFrontend,
String errmsg)
{
super (Message.FROM_JOB_FRONTEND);
this.errmsg = errmsg;
}
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
theJobScheduler.cancelJob (theJobFrontend, errmsg);
}
public void writeExternal
(ObjectOutput out)
throws IOException
{
out.writeUTF (errmsg);
}
public void readExternal
(ObjectInput in)
throws IOException
{
errmsg = in.readUTF();
}
}
/**
* Class JobFinishedMessage provides the Job Scheduler "job finished"
* message in the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 13-Oct-2006
*/
private static class JobFinishedMessage
extends JobSchedulerMessage
{
private static final long serialVersionUID = -1179228962545666153L;
public JobFinishedMessage()
{
}
public JobFinishedMessage
(JobFrontendRef theJobFrontend)
{
super (Message.FROM_JOB_FRONTEND);
}
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
theJobScheduler.jobFinished (theJobFrontend);
}
}
/**
* Class RenewLeaseMessage provides the Job Scheduler "renew lease" message
* in the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 12-Oct-2006
*/
private static class RenewLeaseMessage
extends JobSchedulerMessage
{
private static final long serialVersionUID = 8547605668292095227L;
public RenewLeaseMessage()
{
}
public RenewLeaseMessage
(JobFrontendRef theJobFrontend)
{
super (Message.FROM_JOB_FRONTEND);
}
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
theJobScheduler.renewLease (theJobFrontend);
}
}
/**
* Class ReportCommentMessage provides the Job Scheduler "report comment"
* message in the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 24-Jan-2012
*/
private static class ReportCommentMessage
extends JobSchedulerMessage
{
private static final long serialVersionUID = -7431990305653172900L;
private int rank;
private String comment;
public ReportCommentMessage()
{
}
public ReportCommentMessage
(JobFrontendRef theJobFrontend,
int rank,
String comment)
{
super (Message.FROM_JOB_FRONTEND);
this.rank = rank;
this.comment = comment == null ? "" : comment;
}
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
theJobScheduler.reportComment (theJobFrontend, rank, comment);
}
public void writeExternal
(ObjectOutput out)
throws IOException
{
out.writeInt (rank);
out.writeUTF (comment);
}
public void readExternal
(ObjectInput in)
throws IOException
{
rank = in.readInt();
comment = in.readUTF();
}
}
/**
* Class RequestJobMessage provides the Job Scheduler "request job" message
* in the PJ cluster middleware.
*
* @author Alan Kaminsky
* @version 21-May-2008
*/
private static class RequestJobMessage
extends JobSchedulerMessage
{
private static final long serialVersionUID = -6712799261136980645L;
private String username;
private int Nn;
private int Np;
private int Nt;
public RequestJobMessage()
{
}
public RequestJobMessage
(JobFrontendRef theJobFrontend,
String username,
int Nn,
int Np,
int Nt)
{
super (Message.FROM_JOB_FRONTEND);
this.username = username;
this.Nn = Nn;
this.Np = Np;
this.Nt = Nt;
}
public void invoke
(JobSchedulerRef theJobScheduler,
JobFrontendRef theJobFrontend)
throws IOException
{
theJobScheduler.requestJob (theJobFrontend, username, Nn, Np, Nt);
}
public void writeExternal
(ObjectOutput out)
throws IOException
{
out.writeUTF (username);
out.writeInt (Nn);
out.writeInt (Np);
out.writeInt (Nt);
}
public void readExternal
(ObjectInput in)
throws IOException
{
username = in.readUTF();
Nn = in.readInt();
Np = in.readInt();
Nt = in.readInt();
}
}
}
|