|
1 <?php |
|
2 /** |
|
3 * Zend Framework |
|
4 * |
|
5 * LICENSE |
|
6 * |
|
7 * This source file is subject to the new BSD license that is bundled |
|
8 * with this package in the file LICENSE.txt. |
|
9 * It is also available through the world-wide-web at this URL: |
|
10 * http://framework.zend.com/license/new-bsd |
|
11 * If you did not receive a copy of the license and are unable to |
|
12 * obtain it through the world-wide-web, please send an email |
|
13 * to license@zend.com so we can send you a copy immediately. |
|
14 * |
|
15 * @category Zend |
|
16 * @package Zend_Service_WindowsAzure |
|
17 * @subpackage Diagnostics |
|
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
20 * @version $Id$ |
|
21 */ |
|
22 |
|
23 /** |
|
24 * @see Zend_Service_WindowsAzure_Diagnostics_Exception |
|
25 */ |
|
26 require_once 'Zend/Service/WindowsAzure/Diagnostics/Exception.php'; |
|
27 |
|
28 /** |
|
29 * @see Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract |
|
30 */ |
|
31 require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationObjectBaseAbstract.php'; |
|
32 |
|
33 /** |
|
34 * @see Zend_Service_WindowsAzure_Diagnostics_LogLevel |
|
35 */ |
|
36 require_once 'Zend/Service/WindowsAzure/Diagnostics/LogLevel.php'; |
|
37 |
|
38 /** |
|
39 * @category Zend |
|
40 * @package Zend_Service_WindowsAzure |
|
41 * @subpackage Diagnostics |
|
42 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
43 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
44 * |
|
45 * @property int BufferQuotaInMB Buffer quota in MB |
|
46 * @property int ScheduledTransferPeriodInMinutes Scheduled transfer period in minutes |
|
47 * @property string ScheduledTransferLogLevelFilter Scheduled transfer log level filter |
|
48 * @property array Subscriptions Subscriptions |
|
49 */ |
|
50 class Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog |
|
51 extends Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract |
|
52 { |
|
53 /** |
|
54 * Constructor |
|
55 * |
|
56 * @param int $bufferQuotaInMB Buffer quota in MB |
|
57 * @param int $scheduledTransferPeriodInMinutes Scheduled transfer period in minutes |
|
58 * @param string $scheduledTransferLogLevelFilter Scheduled transfer log level filter |
|
59 */ |
|
60 public function __construct($bufferQuotaInMB = 0, $scheduledTransferPeriodInMinutes = 0, $scheduledTransferLogLevelFilter = Zend_Service_WindowsAzure_Diagnostics_LogLevel::UNDEFINED) |
|
61 { |
|
62 $this->_data = array( |
|
63 'bufferquotainmb' => $bufferQuotaInMB, |
|
64 'scheduledtransferperiodinminutes' => $scheduledTransferPeriodInMinutes, |
|
65 'scheduledtransferloglevelfilter' => $scheduledTransferLogLevelFilter, |
|
66 'subscriptions' => array() |
|
67 ); |
|
68 } |
|
69 |
|
70 /** |
|
71 * Add subscription |
|
72 * |
|
73 * @param string $filter Event log filter |
|
74 */ |
|
75 public function addSubscription($filter) |
|
76 { |
|
77 $this->_data['subscriptions'][$filter] = $filter; |
|
78 } |
|
79 |
|
80 /** |
|
81 * Remove subscription |
|
82 * |
|
83 * @param string $filter Event log filter |
|
84 */ |
|
85 public function removeSubscription($filter) |
|
86 { |
|
87 if (isset($this->_data['subscriptions'][$filter])) { |
|
88 unset($this->_data['subscriptions'][$filter]); |
|
89 } |
|
90 } |
|
91 } |