 鲜花( 0)  鸡蛋( 0)
|
OSGi是Open Service Gateway Initiative的简称,该组织建立于1999年,是一个非赢利机构,旨在建立一个开放的服务规范,为通过网络向设备提供服务建立开放的标准。& d$ O$ j& w" l9 }! R6 I' S
OSGI 规范包括了构建开放的可交付网络服务的各方面,OSGI规范又包括了以下子规范。 8 x* F! A. S v% H Z$ d: V$ y! |
Framework规范(OSGI核心,提供一个安全的可管理的Java Framework来部署可扩展的Java服务。)
8 s2 u, B( O8 QPackage Admin Service规范(来管理不同的Bundle之间的引用关系。当Bundle更新或者反安装时判断是否有其他的服务正在使用当前的Bundle)
4 K: L1 u9 c' p7 d* P* g) hStart Level规范(定义了启动和停止一个OSGi Service Platform时,不同的Bundles的启动或者停止的先后顺序)5 c! k% W9 V: U* J
Permission Admin Service规范(Bundle是否许可执行另外的Bundle的代码)
" x+ f: \' e: V7 S; @2 ?" `8 f+ PURL Handlers Service规范(怎样注册URL Schema,如何将java.io.InputStream对象转换为特定的Java对象)$ L6 L H6 y, K( l8 y5 }3 g
Log Service规范 (以下略。。。)8 r5 N' `; t/ Y2 t
Configuration Admin Service规范
5 h$ _9 c) s p/ WDevice Access Specification
3 j9 s- y3 B6 aUser Admin Service Specification
. K% F- {, [1 e4 e$ P) b2 A0 c: xIO Connector Service Specification; }; H7 t# M9 F; g/ ~
Http Service Specification
" O$ @" c7 b& W+ ]" L' ~' W9 vPreference Service Specification$ d9 Y- w, @0 d j% `1 E9 z0 |: N
Wire Admin Service Specification
, E" P* z @8 {XML Parser Service Specification
9 T6 o: a" I7 q! y6 \3 SMetatype Specification+ @. d' ]# M9 e2 K# g' e
Service Tracker Specification. z* R1 k7 U2 f+ c
Measurment and State Specification3 @# H; X8 l/ x7 s: g. M5 f% t
Position Specification8 }6 H) e, Y0 _$ n8 W
Execution Environment Specfication9 d, y9 N' o: B) f. K) D6 r7 c R
OSGI Framework
3 S2 ?0 _. C( ZFramework是OSGI Service Platform规范的核心组成部分。它提供了一个通用的、安全可管理的Java framework。通过这个Framework可以支持一种叫做bundles的Service application的部署和扩展。
: ]$ k8 u8 |5 jOSGI兼容设备可以下载并且安装OSGI bundles,也可一当他们不再需要的时候删除。bundles安装后会注册一定数量的Services,并被由同一个Framework下的其他bundles使用。
- K/ a+ z3 g7 D; t/ J; k在一个动态扩展的的 OSGI环境中,Framework管理bundles的安装和更新。同时也管理bundles和Services之间的依赖关系。
! l2 W( T: P AFramework提供给bundle开发者必须的资源来在Java平台上开发,为开发的bundles提供了代码动态加载的功能, 也使得开发者开发、部署一个大规模的Services变的很容易。
2 W: _, ?7 F3 B; B4 r其 次,Framework为Java bundle开发者提供了简明一致的编程模型。简化了开发部署的复杂性。这个编程模型允许开发者将自己的接口规范绑定到OSGI环境中的Service。 The selection of a specific implementation, optimized for a specific need or from a specific vendor, can thus be deferred to run-time.
F/ k: U! `( @- n0 @) J2 Y一个一致的编程模型帮助开发者可以应付一些可估计的危急错误。Framework将会运行在不同的硬件环境上,但一致的接口确保软件组建可以运行在一致的服务接口上。7 L. ?- c4 k& n; D& ~& E3 v9 w3 \
The Bundle Object
A1 M0 a* o" Y9 E( V$ b4 r对于每一个安装在OSGI Service Platform的bundle都有一个与之关联的bundle object。一个bundle对象用来管理bundle的生命周期。这项工作通常由Management Agent来做。
2 y: K- _ b _7 B/ D3 _Bundle State3 N" O% P0 S3 c" m
bundle有以下状态;3 }$ n+ ^$ S4 {9 s5 v
INSTALLED – The bundle has been successfully installed. Native code clauses must have been validated.
; @9 f# p- ]8 P! ?+ Y) x nRESOLVED – All Java classes that the bundle needs are available. This state indicates that the bundle is either ready to be started or has stopped.6 n1 u. Z( U8 w1 Y B4 F$ F
STARTING – The bundle is being started, and the BundleActivato r. start method has been called and has not yet returned.
( R3 x- j* @" ?% S4 k( {: I9 jSTOPPING – The bundle is being stopped, and the BundleActivato r. stop method has been called and has not yet returned.3 y) m0 B5 e3 u2 b$ \( p2 W# Q% S
ACTIVE – The bundle has successfully started and is running.; _3 ^4 g' ]# p, q* N; w5 g
UNINSTALLED – The bundle has been uninstalled. It cannot move into another state.
! Q$ U" B2 Q u9 f1 Y, n# X$ s0 ]eclipse 3.0并没有用OSGI替换掉原来的PlugIn机制。它只是做了与标准兼容的工作:给用户提供了一系列的API来访问,在这个过程中,就必须要做一些改 变(比如plugin registry和loading机制)来同OSGI标准完全兼容。最初的Plugin核心只支持静态的扩展,就是说,如果要改变一个已经存在的Plug 就必须重启core,也就是要退出Eclipse并重启。
! g2 f' h6 k5 f j* H8 ~$ [3 d有很多人问Eclipse为什么要兼容OSGI规范而不是其他的规范呢?
5 C; e; a$ m8 J+ ]* u7 p% \# U3 c在 Eclipse被捐赠出来以前,Eclipse由OTI来开发,其目标是开发一个嵌入式Java软件的开发平台。互联网上现在仍然由很多的连接指向 Visual Age Micro Edition (VAME). 这也是SWT被构思的一个原因,他们想将SWT使用在嵌入式设备中的用户界面。这种渊源关系解释了当时为什么选择OSGI规范。, M7 m' I. W$ f" [8 s
另外一个原因是除了OSGI没有其他的规范。OSGI规范在轻量级服务架构应用方面被广泛的支持。而且OSGI被好多电信业的知名公司和一些其他行业的知名公司所支持。他们需要使用OSGI来同Sun的J2ME来抗衡。 |
|