Source Code Cross Referenced for RSSMetricsServiceProvider.java in  » Science » Cougaar12_4 » org » cougaar » core » qos » rss » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Science » Cougaar12_4 » org.cougaar.core.qos.rss 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * <copyright>
003:         *  
004:         *  Copyright 1997-2004 BBNT Solutions, LLC
005:         *  under sponsorship of the Defense Advanced Research Projects
006:         *  Agency (DARPA).
007:         * 
008:         *  You can redistribute this software and/or modify it under the
009:         *  terms of the Cougaar Open Source License as published on the
010:         *  Cougaar Open Source Website (www.cougaar.org).
011:         * 
012:         *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
013:         *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
014:         *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
015:         *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
016:         *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
017:         *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
018:         *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
019:         *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
020:         *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
021:         *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
022:         *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
023:         *  
024:         * </copyright>
025:         */
026:
027:        package org.cougaar.core.qos.rss;
028:
029:        import org.cougaar.core.agent.Agent;
030:        import org.cougaar.core.component.ComponentDescription;
031:        import org.cougaar.core.component.ComponentDescriptions;
032:        import org.cougaar.core.component.ContainerSupport;
033:        import org.cougaar.core.component.ServiceBroker;
034:        import org.cougaar.core.component.ServiceProvider;
035:        import org.cougaar.core.node.ComponentInitializerService;
036:        import org.cougaar.core.node.NodeControlService;
037:        import org.cougaar.core.node.NodeIdentificationService;
038:        import org.cougaar.core.qos.metrics.DataFeedRegistrationService;
039:        import org.cougaar.core.qos.metrics.MetricsService;
040:        import org.cougaar.core.qos.metrics.MetricsUpdateService;
041:        import org.cougaar.core.thread.ThreadServiceProvider;
042:        import org.cougaar.qos.qrs.RSSUtils;
043:
044:        /**
045:         * This Component/Container provides the RSS-based implementation of the
046:         * MetricsService and MetricsUpdateService, and instantiates the
047:         * implementations, RSSMetricsServiceImpl and RSSMetricsUpdateServiceImpl
048:         * respectively, as child Components.
049:         * 
050:         * @see MetricsService
051:         * @see MetricsUpdateService
052:         * @see RSSMetricsServiceImpl
053:         * @see RSSMetricsUpdateServiceImpl
054:         */
055:        public final class RSSMetricsServiceProvider extends ContainerSupport
056:                implements  ServiceProvider {
057:            private MetricsService retriever;
058:            private MetricsUpdateService updater;
059:            private DataFeedRegistrationService registrar;
060:
061:            private void makeUpdaterService() {
062:                updater = new RSSMetricsUpdateServiceImpl();
063:                add(updater);
064:            }
065:
066:            private void makeRetrieverService() {
067:                retriever = new RSSMetricsServiceImpl();
068:                add(retriever);
069:                registrar = (DataFeedRegistrationService) retriever;
070:            }
071:
072:            // This is done before child-components are created
073:            public void loadHighPriorityComponents() {
074:                super .loadHighPriorityComponents();
075:                ServiceBroker sb = getServiceBroker();
076:                NodeControlService ncs = sb.getService(this ,
077:                        NodeControlService.class, null);
078:                ServiceBroker rootsb = ncs.getRootServiceBroker();
079:
080:                // DataFeeds could need a thread service
081:                // JAZ needs a ComponentDescription?
082:                ThreadServiceProvider tsp = new ThreadServiceProvider();
083:                tsp.setParameter("name=Metrics");
084:                add(tsp);
085:
086:                // Make a Timer available to RSS and TEC
087:                //
088:                // We must do this before we load our subcomponents, otherwise RSSUtils
089:                // will spawn a default (non-ThreadService-backed) timer thread
090:                RSSUtils
091:                        .setScheduler(new CougaarTimer(getChildServiceBroker()));
092:
093:                // Childern Components need Registration Service
094:                // but the Registration need the MetricServiceImplementation
095:                // make Metric Updater Service
096:                makeUpdaterService();
097:                rootsb.addService(MetricsUpdateService.class, this );
098:                // make Metric Service and Feed registration service
099:                makeRetrieverService();
100:                rootsb.addService(MetricsService.class, this );
101:                // register registration service
102:                sb.addService(DataFeedRegistrationService.class, this );
103:            }
104:
105:            // Service Provider API
106:
107:            public Object getService(ServiceBroker sb, Object requestor,
108:                    Class<?> serviceClass) {
109:                if (serviceClass == MetricsService.class) {
110:                    return retriever;
111:                } else if (serviceClass == MetricsUpdateService.class) {
112:                    return updater;
113:                } else if (serviceClass == DataFeedRegistrationService.class) {
114:                    return registrar;
115:                } else {
116:                    return null;
117:                }
118:            }
119:
120:            public void releaseService(ServiceBroker sb, Object requestor,
121:                    Class<?> serviceClass, Object service) {
122:            }
123:
124:            // Container API
125:
126:            protected ComponentDescriptions findInitialComponentDescriptions() {
127:                ServiceBroker sb = getServiceBroker();
128:                ComponentInitializerService cis = sb.getService(this ,
129:                        ComponentInitializerService.class, null);
130:                NodeIdentificationService nis = sb.getService(this ,
131:                        NodeIdentificationService.class, null);
132:                try {
133:                    String cp = specifyContainmentPoint();
134:                    String id = nis.getMessageAddress().toString();
135:                    ComponentDescription[] descs = cis
136:                            .getComponentDescriptions(id, cp);
137:                    // Want only items _below_. Could filter (not doing so now)
138:                    return new ComponentDescriptions(descs);
139:                } catch (ComponentInitializerService.InitializerException cise) {
140:                    cise.printStackTrace();
141:                    return null;
142:                } finally {
143:                    sb.releaseService(this , ComponentInitializerService.class,
144:                            cis);
145:                    sb.releaseService(this , NodeIdentificationService.class,
146:                            nis);
147:                }
148:            }
149:
150:            protected String specifyContainmentPoint() {
151:                return Agent.INSERTION_POINT + ".MetricsServices";
152:            }
153:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.