sample-broker

Standalone or server-resident sample broker implementation

License

License

GroupId

GroupId

org.powertac
ArtifactId

ArtifactId

sample-broker
Last Version

Last Version

1.7.1
Release Date

Release Date

Type

Type

jar
Description

Description

sample-broker
Standalone or server-resident sample broker implementation
Project URL

Project URL

http://www.powertac.org/
Project Organization

Project Organization

Power TAC
Source Code Management

Source Code Management

https://github.com/powertac/sample-broker/

Download sample-broker

How to add to project

<!-- https://jarcasting.com/artifacts/org.powertac/sample-broker/ -->
<dependency>
    <groupId>org.powertac</groupId>
    <artifactId>sample-broker</artifactId>
    <version>1.7.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.powertac/sample-broker/
implementation 'org.powertac:sample-broker:1.7.1'
// https://jarcasting.com/artifacts/org.powertac/sample-broker/
implementation ("org.powertac:sample-broker:1.7.1")
'org.powertac:sample-broker:jar:1.7.1'
<dependency org="org.powertac" name="sample-broker" rev="1.7.1">
  <artifact name="sample-broker" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.powertac', module='sample-broker', version='1.7.1')
)
libraryDependencies += "org.powertac" % "sample-broker" % "1.7.1"
[org.powertac/sample-broker "1.7.1"]

Dependencies

compile (1)

Group / Artifact Type Version
org.powertac : broker-core jar 1.7.1

test (2)

Group / Artifact Type Version
org.junit.jupiter : junit-jupiter jar 5.5.1
org.mockito : mockito-core jar 2.23.4

Project Modules

There are no modules declared in this project.

Power TAC Sample Broker

The sample broker is intended to help broker developers by providing both a foundation that interfaces correctly with the Power TAC infrastructure, and an example of a working broker agent. It handles all message types and operates in both wholesale and retail markets. It issues a set of tariffs as soon as possible, one for each PowerType detected in the customer records given in the bootstrap dataset. It then trades in the wholesale market using essentially the same strategy as the default broker.

Without changing anything, the current version assumes the server is running on localhost, and is not picky about passwords. You can change the server URL by editing the broker.properties file, or by using your own properties file. Passwords are generally ignored outside a tournament environment.

Import into IDE

Most developers will presumably want to work with the code using an IDE such as STS. The sample-broker package is a maven project, so it works to just do File->Import->Existing Maven Projects and select the sample-broker directory (the directory containing the pom.xml file). You may wish to change the "name" attribute in the pom.xml to match the name of your broker. You can set up a simple "run configuration" to allow you to run it from the IDE. It is an AspectJ/Java app, the main class is org.powertac.samplebroker.core.BrokerMain, and there are no arguments required unless you wish to specify an alternate config file or pass other options (see below).

Run from command line

This is a maven project. You can run the broker from the command line using maven, as

mvn test exec:exec [-Dexec.args="<arguments>"]

where arguments can include:

  • --config config-file.properties specifies an optional properties file that can set username, password, server URL, and other broker properties. If not given, the file broker.properties in the current working directory will be used.
  • --jms-url tcp://host.name:61616 overrides the JMS URL for the sim server. In a tournament setting this value is supplied by the tournament infrastructure, but this option can be handy for local testing.
  • --repeat-count n instructs the broker to run n sessions, completely reloading its context and restarting after each session completes. Default value is 1.
  • --repeat-hours h instructs the broker to attempt to run sessions repeatedly for h hours. This is especially useful in a tournament situation, where the number of games may not be known, but the duration of the tournament can be approximated. If repeat-count is given, this argument will be ignored.
  • --no-ntp if given, tells the broker to not rely on system clock synchronization, but rather to estimate the clock offset between server and broker. Note that this will be an approximation, but should at least get the broker into the correct timeslot.
  • --queue-name name tells the broker to listen on the named queue for messages from the server. This is really only useful for testing, since the queue name defaults to the broker name, and in a tournament situation is provided by the tournament manager upon successful login.
  • --server-queue name tells the broker the name of the JMS input queue for the server. This is also needed only for testing, because the queue name defaults to 'serverInput' and in a tournament situation is provided by the tournament manager upon successful login.

If there are no non-default arguments, and if the broker has already been compiled, then it is enough to simply run the broker as mvn exec:exec.

Note: because of how the exec Maven plugin works, and because the main class is actually in a different module (broker-core), it is possible to execute without compiling. This will result in running stale class files (previously compiled classes possibly from outdated source code) or, if you've not compiled at all yet or recently cleaned the project, a broker that connects to the server but doesn't issue any transactions. So always make sure to tell Maven to do both compile as well as exec:exec!

Prepare an executable jar

Power TAC and other competitive simulations are research tools. A major advantage of the competitive simulation model is the ability to test ideas in a competitive environment. This requires competitors, which means we need to share our broker implementations with each other. Since most teams will be understandably reluctant to share source code, we need a method to share binaries. This package comes with an ability to create an "executable jar" file from source that includes all dependencies, and typically needs only a configuration file to work. You can create an executable jar as

mvn clean package

which will produce a file target/${artifactId}-${version}.jar, corresponding to the artifactId and version tags near the top of the pom.xml. All classpath resources will be included (files in src/main/resources) in addition to the compiled classes and all dependencies. To share your broker, you need to bundle the executable jar with any configuration files needed by your implementation that are not on the classpath (such as broker.properties), and of course a README file that tells others how to use it.

You can then run your broker agent as

java -jar name.jar [args]

Generate javadocs

You can use maven to generate javadocs for this package as

mvn javadoc:javadoc

after which you can find the generated documentation in the directory target/site/apidocs/.

org.powertac

Competitive Simulation of Retail Electric Power Markets

Versions

Version
1.7.1