How to use send method of growl class

Best Atoum code snippet using growl.send

Growl.php

Source:Growl.php Github

copy

Full Screen

...31 'info' => -2,32 'debug' => -233 );34 /**35 * The Growl protocol version used to send messages.36 */37 const PROTOCOL_VERSION = 1;38 /**39 * There are two types of messages sent to Growl: one to register applications, and one to send40 * notifications. This type registers the application with Growl's settings.41 */42 const TYPE_REG = 0;43 /**44 * This message type is for sending notifications to Growl.45 */46 const TYPE_NOTIFY = 1;47 /**48 * Holds the connection resource used to send messages to Growl.49 *50 * @var resource51 */52 protected $_connection = null;53 /**54 * Flag indicating whether the logger has successfully registered with the Growl server.55 * Registration only needs to happen once, but may fail for several reasons, including inability56 * to connect to the server, or the server requires a password which has not been specified.57 *58 * @var boolean59 */60 protected $_registered = false;61 /**62 * Allow the Growl connection resource to be auto-configured from constructor parameters.63 *64 * @var array65 */66 protected $_autoConfig = array('connection', 'registered');67 /**68 * Constructor. Growl logger constructor. Accepts an array of settings which are merged69 * with the default settings and used to create the connection and handle notifications.70 *71 * @see lithium\analysis\Logger::write()72 * @param array $config The settings to configure the logger. Available settings are as follows:73 * - `'name`' _string_: The name of the application as it should appear in Growl's74 * system settings. Defaults to the directory name containing your application.75 * - `'host'` _string_: The Growl host with which to communicate, usually your76 * local machine. Use this setting to send notifications to another machine on77 * the network. Defaults to `'127.0.0.1'`.78 * - `'port'` _integer_: Port of the host machine. Defaults to the standard Growl79 * port, `9887`.80 * - `'password'` _string_: Only required if the host machine requires a password.81 * If notification or registration fails, check this against the host machine's82 * Growl settings.83 * - '`protocol'` _string_: Protocol to use when opening socket communication to84 * Growl. Defaults to `'udp'`.85 * - `'title'` _string_: The default title to display when showing Growl messages.86 * The default value is the same as `'name'`, but can be changed on a per-message87 * basis by specifying a `'title'` key in the `$options` parameter of88 * `Logger::write()`.89 * - `'notification'` _array_: A list of message types you wish to register with90 * Growl to be able to send. Defaults to `array('Errors', 'Messages')`.91 * @return void92 */93 public function __construct(array $config = array()) {94 $name = basename(Libraries::get(true, 'path'));95 $defaults = compact('name') + array(96 'host' => '127.0.0.1',97 'port' => 9887,98 'password' => null,99 'protocol' => 'udp',100 'title' => Inflector::humanize($name),101 'notifications' => array('Errors', 'Messages'),102 'registered' => false103 );104 parent::__construct($config + $defaults);105 }106 /**107 * Writes `$message` to a new Growl notification.108 *109 * @param string $priority The `Logger`-based priority of the message. This value is mapped110 * to a Growl-specific priority value if possible.111 * @param string $message Message to be shown.112 * @param array $options Any options that are passed to the `notify()` method. See the113 * `$options` parameter of `notify()`.114 * @return \Closure Function returning boolean `true` on successful write, `false` otherwise.115 */116 public function write($priority, $message, array $options = array()) {117 $_self =& $this;118 $_priorities = $this->_priorities;119 return function($self, $params) use (&$_self, $_priorities) {120 $priority = 0;121 $options = $params['options'];122 if (isset($options['priority']) && isset($_priorities[$options['priority']])) {123 $priority = $_priorities[$options['priority']];124 }125 return $_self->notify($params['message'], compact('priority') + $options);126 };127 }128 /**129 * Posts a new notification to the Growl server.130 *131 * @param string $description Message to be displayed.132 * @param array $options Options consists of:133 * -'title': The title of the displayed notification. Displays the134 * name of the application's parent folder by default.135 * @return boolean Always returns `true`.136 */137 public function notify($description = '', $options = array()) {138 $this->_register();139 $defaults = array('sticky' => false, 'priority' => 0, 'type' => 'Messages');140 $options += $defaults + array('title' => $this->_config['title']);141 $type = $options['type'];142 $title = $options['title'];143 $message = compact('type', 'title', 'description') + array('app' => $this->_config['name']);144 $message = array_map('utf8_encode', $message);145 $flags = ($options['priority'] & 7) * 2;146 $flags = ($options['priority'] < 0) ? $flags |= 8 : $flags;147 $flags = ($options['sticky']) ? $flags | 256 : $flags;148 $params = array('c2n5', static::PROTOCOL_VERSION, static::TYPE_NOTIFY, $flags);149 $lengths = array_map('strlen', $message);150 $data = call_user_func_array('pack', array_merge($params, $lengths));151 $data .= join('', $message);152 $data .= pack('H32', md5($data . $this->_config['password']));153 $this->_send($data);154 return true;155 }156 /**157 * Growl server connection registration and initialization.158 *159 * @return boolean True160 */161 protected function _register() {162 if ($this->_registered) {163 return true;164 }165 $ct = count($this->_config['notifications']);166 $app = utf8_encode($this->_config['name']);167 $nameEnc = $defaultEnc = '';168 foreach ($this->_config['notifications'] as $i => $name) {169 $name = utf8_encode($name);170 $nameEnc .= pack('n', strlen($name)) . $name;171 $defaultEnc .= pack('c', $i);172 }173 $data = pack('c2nc2', static::PROTOCOL_VERSION, static::TYPE_REG, strlen($app), $ct, $ct);174 $data .= $app . $nameEnc . $defaultEnc;175 $checksum = pack('H32', md5($data . $this->_config['password']));176 $data .= $checksum;177 $this->_send($data);178 return $this->_registered = true;179 }180 /**181 * Creates a connection to the Growl server using the protocol, host and port configurations182 * specified in the constructor.183 *184 * @return resource Returns a connection resource created by `fsockopen()`.185 */186 protected function _connection() {187 if ($this->_connection) {188 return $this->_connection;189 }190 $host = "{$this->_config['protocol']}://{$this->_config['host']}";191 if ($this->_connection = fsockopen($host, $this->_config['port'], $message, $code)) {192 return $this->_connection;193 }194 throw new NetworkException("Growl connection failed: (`{$code}`) `{$message}`.");195 }196 /**197 * Sends binary data to the Growl server.198 *199 * @throws NetworkException Throws an exception if the server connection could not be written200 * to.201 * @param string $data The raw binary data to send to the Growl server.202 * @return boolean Always returns `true`.203 */204 protected function _send($data) {205 if (fwrite($this->_connection(), $data, strlen($data)) === false) {206 throw new NetworkException('Could not send registration to Growl Server.');207 }208 return true;209 }210 /**211 * Destructor. Closes and releases the socket connection to Growl.212 *213 * @return void214 */215 public function __destruct() {216 if (is_resource($this->_connection)) {217 fclose($this->_connection);218 unset($this->_connection);219 }220 }...

Full Screen

Full Screen

send

Using AI Code Generation

copy

Full Screen

1$growl = new Growl();2$growl->send('Hello World');3$growl = new Growl();4$growl->send('Hello World');5$growl = new Growl();6$growl->send('Hello World');

Full Screen

Full Screen

send

Using AI Code Generation

copy

Full Screen

1$growl = new Growl();2$growl->send("message", "title", "icon", "sticky");3$growl = new Growl();4$growl->send("message", "title", "icon", "sticky");5$growl = new Growl();6$growl->send("message", "title", "icon", "sticky");7$growl = new Growl();8$growl->send("message", "title", "icon", "sticky");9$growl = new Growl();10$growl->send("message", "title", "icon", "sticky");11$growl = new Growl();12$growl->send("message", "title", "icon", "sticky");13$growl = new Growl();14$growl->send("message", "title", "icon", "sticky");15$growl = new Growl();16$growl->send("message", "title", "icon", "sticky");17$growl = new Growl();18$growl->send("message", "title", "icon", "sticky");19$growl = new Growl();20$growl->send("message", "title", "icon", "sticky");21$growl = new Growl();22$growl->send("message", "title", "icon", "sticky");23$growl = new Growl();24$growl->send("message", "title", "icon", "sticky");

Full Screen

Full Screen

send

Using AI Code Generation

copy

Full Screen

1$growl = new Growl();2$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);3$growl = new Growl();4$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);5$growl = new Growl();6$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);7$growl = new Growl();8$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);9$growl = new Growl();10$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);11$growl = new Growl();12$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);13$growl = new Growl();14$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);15$growl = new Growl();16$growl->send('Hello World', 'Prowl', 'Prowl', 1, 1, 1, 1, 1);17$growl = new Growl();18$growl->send('Hello World', '

Full Screen

Full Screen

send

Using AI Code Generation

copy

Full Screen

1$growl = new Growl();2$growl->send($title,$message,$icon);3$growl->send($title,$message,$icon,'application name');4$growl->send($title,$message,$icon,array('application name 1','application name 2'));5$growl->send($title,$message,$icon,'application name','icon path');6$growl->send($title,$message,$icon,array('application name 1','application name 2'),'icon path');7$growl->send($title,$message,$icon,'application name','icon path',true);8$growl->send($title,$message,$icon,array('application name 1','application name 2'),'icon path',true);

Full Screen

Full Screen

send

Using AI Code Generation

copy

Full Screen

1$growl = new Growl();2$growl->send('Hello World');3$growl = new Growl();4$growl->receive();5$growl = new Growl();6$growl->send('Hello World');7$growl->receive();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Atoum automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Trigger send code on LambdaTest Cloud Grid

Execute automation tests with send on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.

Test now for Free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful