Presentation is loading. Please wait.

Presentation is loading. Please wait.

B2: Storage and Compatibility John Knight Blackboard, Inc.

Similar presentations


Presentation on theme: "B2: Storage and Compatibility John Knight Blackboard, Inc."— Presentation transcript:

1 B2: Storage and Compatibility John Knight Blackboard, Inc.

2 And now a word from our lawyers. Any statements in this presentation about future expectations, plans and prospects for the Company, including statements about the Company, the Building Blocks Program and other statements containing the words “believes,” “anticipates,” “plans,” “expects,” “will,” and similar expressions, constitute forward-looking statements within the meaning of The Private Securities Litigation Reform Act of 1995. Actual results may differ materially from those indicated by such forward-looking statements as a result of various important factors, including: product development, and other factors discussed in our Registration Statement filed on Form S-1 with the SEC. In addition, the forward- looking statements included in this press release represent the Company’s views as of July 26, 2004. The Company anticipates that subsequent events and developments will cause the Company’s views to change. However, while the Company may elect to update these forward-looking statements at some point in the future, the Company specifically disclaims any obligation to do so. These forward-looking statements should not be relied upon as representing the Company’s views as of any date subsequent to July 26, 2004.

3 Topics Overview Limitations Solutions –Portability –Structured data

4 B2 Storage Overview Building Block data types –Private data Configuration data Operational data (encryption keys, etc.) –Content data –Tool data –Extended attributes

5 B2 Storage Problems Private data –Data that has no relationship to Blackboard entities Custom attributes attached to Blackboard objects Reference data –References to Blackboard objects –Custom attributes referencing an external object

6 Private B2 Storage Stored in a directory specific to the Building Block –E.g., configuration data –Not visible to other Building Blocks –Data not related to Blackboard entities blackboard.platform.plugin.PlugInConfig

7 Accessing Private B2 Storage PlugInConfig pinConfig = new PlugInConfig( VID, HANDLE ); File configDir = pinConfig.getConfigDirectory(); File configFile = new File( configDir, “configuration.properties” );

8 Extended Data User and Course support arbitrary name/value pairs, called “registries” Package blackboard.data.registry Loader/persister entities Values are portable (i.e., moved in Content Exchange and copy) –Copy settings may affect the outcome Values are “public” – visible to other Building Blocks

9 Extended User Data User user = ctx.getUser(); //load user registry UserRegistryEntry entry = UserRegistryEntryDbLoader.Default.getInstance().loadByKeyAndUserId( “key”, user.getId() ); String value = entry.getValue(); entry.setValue( “value” ); //store registry value entry.persist();

10 Extended Course Data Course course = ctx.getCourse(); //load user registry CourseRegistryEntry entry = CourseRegistryEntryDbLoader.Default.getInstance().loadByKeyAndCourseId( “key”, course.getId() ); String value = entry.getValue(); entry.setValue( “value” ); //store registry value entry.persist();

11 Content Storage Centralized storage for the bulk of the data that makes up a course Organized by course, then content Database component –Single row, fixed fields –Hierarchical File system component –Private area per content item

12 Content Storage – B2 View No “registry” of arbitrary attributes No indexed, semi-structured storage (e.g., XML data type) File system “blindly” processed by Content Exchange, Course Copy –E.g., SCORM support is implemented as a Building Block. The manifest, etc., are stored in the Content item’s private directory. –“Attached” files also get a database record and are “rendered” by the content list page –Not all files are “attached”

13 Content Storage Database Record“Attached” File

14 Content Storage Attached files are files with ContentFile records in the database To display a “private” file, a ContentFile record is not required –Just the URL –Useful for creating data files that are referenced by client-side viewers (e.g., applets)

15 Content Storage – CX and Copy By storing “custom” data in the file system component, the data will get picked up by Content Exchange and Course Copy Data moved as-is, with no transformations As a rule, avoid hard-coding references –Use template variables

16 Template Variables Portable placeholders for referencing Blackboard object data Dynamically expand at render time, using Context information No copy/export processing required

17 Template Syntax @X@object.attribute@X@ The object/attribute names are taken from the Perl syntax, since that’s where the bulk of the variable expansion originally occurred.

18 Referencing an Uploaded File For example: – Expands to: –

19 Must Have Templates content.url – expands to private directory for a particular content item course.url – expands to root course directory user.user_id – expands to the login name for the current user course.course_id – expands to the unique, string identifier for the current course

20 Template Expansion Or expanded programmatically… BbSession sess = BbServiceManager.getSessionManager().getSession( request ); String encoded = sess.encodeTemplateUrl( request, “@X@course.url@X@” ); Can be expanded at render time…

21 Tool Storage No pre-defined storage location –Ad hoc; no central “repository” –Custom per-tool Some db storage, some file storage Example: Discussion Board Without B2 database extensibility mechanism, nowhere to put tool data Custom storage required

22 Storage Options Property files XML Data Third party storage engines

23 Property Files Easy to read; easy to write –Built into the Java platform –User editable as a fallback Drawbacks –Name/value pairs can be limiting –I18N limitations (hard-coded ISO-8859-1)

24 Property Files FileInputStream fis = new FileInputStream( “block.properties” ); Properties props = new Properties(); props.load( fis ); String param = props.get(“plugin.param.show-trace” ); #a property plugin.param.show-trace=true Property File: Consumer Code:

25 XML Files Reasonably Complex Structure Available libraries Additional complexity –JAXB? –W3 DOM? –SAX? –DOM4J?

26 Third Party Storage Engines Arbitrary capabilities and flexibility Some very easy to use Some, not so much Possible gotchas (system permissions, etc.)

27 Third Party Storage Examples Sleepycat Software Berkeley DB Java Edition –Works in web application –Requires file system access Lucene –Text indexing –Unstructured data

28 Berkeley DB Example Java implementation of Berkeley DB Name/value pairs, but with primary and secondary indexes –Create reasonably complex data structures File-based storage –When written into B2 private storage, no custom permissions required

29 Berkeley DB Example //create environment on first access EnvironmentConfig envConfig.setAllowCreate( true ); Environment environment = new Environment( plugInConfig.getConfigDirectory(), envConfig ); //create database on first access DatabaseConfig dbConfig.setAllowCreate( true ); //we want multiple values for each record dbConfig.setAllowDuplicates( true ); Database db = environment.openDatabase( null, dbId, _dbConfig );

30 Berkeley DB Example User user = ctx.getUser(); DatabaseEntry keyEntry = new DatabaseEntry( user.getUserName().getBytes() ); DatabaseEntry valEntry = new DatabaseEntry(); //create new record valEntry.setData( value.getBytes() ); db.put( null, keyEntry, valEntry );

31 Outstanding Storage Issues Data reconciliation on copy/move –Updating an embedded Id –Updating external references No hooks for integration yet –Course Copy hooks—reference updates –Content Exchange hooks—transformations to and from packaged data

32 Migration For most plugins, not an issue Subset of R5 to R6 data is migrated (content only) Building Blocks required substantial modifications anyway

33 Course Copy Processes registry entries –Course –User Copies all content files, regardless of whether they’re registered as “attachments” Identical rules in Content Exchange

34 Looking Ahead Course Copy integration –Post-processing handlers (See System Admin  Logs  System Tasks Status) –Coarse-grained notification of a course copy event Content Exchange integration –Transform data dynamically during the packaging/unpackaging operation

35 Common Practice Per-User data, attach via the Registry Keep private data private –B2 data, store in private file store –Encrypt sensitive registry values (e.g., external system password), keep the key in B2 file store

36 Common Practice Tool data –Use a storage engine for complex data structures –Existing, external databases can be used Requires careful investigation of security issues Difficult to implement in a portable way Content data –Use portable references where possible General –Store “reference” data for sanity checks, e.g., store the original course id with a record. You can check the current course to know if the data has been copied, etc., and take appropriate action

37 Conclusion Know the limitations Understand where and how data can be read and stored (not just by your code) There are good solutions that work within the (current) confines of the system –Better ones to come!

38 Thank You Demos to Follow >


Download ppt "B2: Storage and Compatibility John Knight Blackboard, Inc."

Similar presentations


Ads by Google