2013-05-01 08:46:16 +04:00
|
|
|
/*
|
2013-05-14 08:00:24 +04:00
|
|
|
* OpenSeadragon - TileSource
|
2013-05-01 08:46:16 +04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 CodePlex Foundation
|
2013-05-14 07:32:09 +04:00
|
|
|
* Copyright (C) 2010-2013 OpenSeadragon contributors
|
2013-05-01 08:46:16 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* - Neither the name of CodePlex Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
(function( $ ){
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-11-25 20:48:44 +04:00
|
|
|
* @class TileSource
|
|
|
|
* @classdesc The TileSource contains the most basic implementation required to create a
|
2015-01-03 03:07:11 +03:00
|
|
|
* smooth transition between layers in an image pyramid. It has only a single key
|
|
|
|
* interface that must be implemented to complete its key functionality:
|
2013-08-27 02:47:21 +04:00
|
|
|
* 'getTileUrl'. It also has several optional interfaces that can be
|
|
|
|
* implemented if a new TileSource wishes to support configuration via a simple
|
|
|
|
* object or array ('configure') and if the tile source supports or requires
|
2015-01-03 03:07:11 +03:00
|
|
|
* configuration via retrieval of a document on the network ala AJAX or JSONP,
|
2013-08-27 02:47:21 +04:00
|
|
|
* ('getImageInfo').
|
|
|
|
* <br/>
|
2015-01-03 03:07:11 +03:00
|
|
|
* By default the image pyramid is split into N layers where the image's longest
|
2013-08-27 02:47:21 +04:00
|
|
|
* side in M (in pixels), where N is the smallest integer which satisfies
|
|
|
|
* <strong>2^(N+1) >= M</strong>.
|
2013-11-25 20:48:44 +04:00
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @memberof OpenSeadragon
|
2013-09-25 00:36:13 +04:00
|
|
|
* @extends OpenSeadragon.EventSource
|
2015-01-03 03:07:11 +03:00
|
|
|
* @param {Object} options
|
|
|
|
* You can either specify a URL, or literally define the TileSource (by specifying
|
|
|
|
* width, height, tileSize, tileOverlap, minLevel, and maxLevel). For the former,
|
|
|
|
* the extending class is expected to implement 'getImageInfo' and 'configure'.
|
|
|
|
* For the latter, the construction is assumed to occur through
|
|
|
|
* the extending classes implementation of 'configure'.
|
|
|
|
* @param {String} [options.url]
|
|
|
|
* The URL for the data necessary for this TileSource.
|
|
|
|
* @param {Function} [options.success]
|
|
|
|
* A function to be called upon successful creation.
|
|
|
|
* @param {Boolean} [options.ajaxWithCredentials]
|
|
|
|
* If this TileSource needs to make an AJAX call, this specifies whether to set
|
|
|
|
* the XHR's withCredentials (for accessing secure data).
|
|
|
|
* @param {Number} [options.width]
|
2013-08-27 02:47:21 +04:00
|
|
|
* Width of the source image at max resolution in pixels.
|
2015-01-03 03:07:11 +03:00
|
|
|
* @param {Number} [options.height]
|
|
|
|
* Height of the source image at max resolution in pixels.
|
|
|
|
* @param {Number} [options.tileSize]
|
2013-08-27 02:47:21 +04:00
|
|
|
* The size of the tiles to assumed to make up each pyramid layer in pixels.
|
|
|
|
* Tile size determines the point at which the image pyramid must be
|
|
|
|
* divided into a matrix of smaller images.
|
2015-06-26 21:17:40 +03:00
|
|
|
* Use options.tileWidth and options.tileHeight to support non-square tiles.
|
|
|
|
* @param {Number} [options.tileWidth]
|
|
|
|
* The width of the tiles to assumed to make up each pyramid layer in pixels.
|
|
|
|
* @param {Number} [options.tileHeight]
|
|
|
|
* The height of the tiles to assumed to make up each pyramid layer in pixels.
|
2015-01-03 03:07:11 +03:00
|
|
|
* @param {Number} [options.tileOverlap]
|
2013-08-27 02:47:21 +04:00
|
|
|
* The number of pixels each tile is expected to overlap touching tiles.
|
2015-01-03 03:07:11 +03:00
|
|
|
* @param {Number} [options.minLevel]
|
2013-08-27 02:47:21 +04:00
|
|
|
* The minimum level to attempt to load.
|
2015-01-03 03:07:11 +03:00
|
|
|
* @param {Number} [options.maxLevel]
|
2013-08-27 02:47:21 +04:00
|
|
|
* The maximum level to attempt to load.
|
|
|
|
*/
|
|
|
|
$.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLevel ) {
|
2015-01-03 02:45:46 +03:00
|
|
|
var _this = this;
|
|
|
|
|
|
|
|
var args = arguments,
|
2012-06-05 15:52:00 +04:00
|
|
|
options,
|
|
|
|
i;
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
if( $.isPlainObject( width ) ){
|
|
|
|
options = width;
|
|
|
|
}else{
|
|
|
|
options = {
|
|
|
|
width: args[0],
|
|
|
|
height: args[1],
|
|
|
|
tileSize: args[2],
|
|
|
|
tileOverlap: args[3],
|
|
|
|
minLevel: args[4],
|
|
|
|
maxLevel: args[5]
|
|
|
|
};
|
|
|
|
}
|
2012-06-05 15:52:00 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
//Tile sources supply some events, namely 'ready' when they must be configured
|
2013-12-14 01:11:00 +04:00
|
|
|
//by asynchronously fetching their configuration data.
|
2013-09-25 00:36:13 +04:00
|
|
|
$.EventSource.call( this );
|
2013-08-27 02:47:21 +04:00
|
|
|
|
|
|
|
//we allow options to override anything we dont treat as
|
|
|
|
//required via idiomatic options or which is functionally
|
|
|
|
//set depending on the state of the readiness of this tile
|
|
|
|
//source
|
|
|
|
$.extend( true, this, options );
|
|
|
|
|
2015-01-03 02:45:46 +03:00
|
|
|
if (!this.success) {
|
|
|
|
//Any functions that are passed as arguments are bound to the ready callback
|
|
|
|
for ( i = 0; i < arguments.length; i++ ) {
|
|
|
|
if ( $.isFunction( arguments[ i ] ) ) {
|
|
|
|
this.success = arguments[ i ];
|
|
|
|
//only one callback per constructor
|
|
|
|
break;
|
|
|
|
}
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
}
|
2012-06-05 15:52:00 +04:00
|
|
|
|
2015-01-03 02:45:46 +03:00
|
|
|
if (this.success) {
|
|
|
|
this.addHandler( 'ready', function ( event ) {
|
|
|
|
_this.success( event );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* Ratio of width to height
|
|
|
|
* @member {Number} aspectRatio
|
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Vector storing x and y dimensions ( width and height respectively ).
|
|
|
|
* @member {OpenSeadragon.Point} dimensions
|
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* The size of the image tiles used to compose the image.
|
2015-01-03 02:45:46 +03:00
|
|
|
* Please note that tileSize may be deprecated in a future release.
|
2014-07-29 22:12:05 +04:00
|
|
|
* Instead the getTileSize(level) function should be used.
|
2015-06-29 20:42:09 +03:00
|
|
|
* @member {Number} tileSize
|
2013-11-25 20:48:44 +04:00
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
/**
|
2013-12-14 01:11:00 +04:00
|
|
|
* The overlap in pixels each tile shares with its adjacent neighbors.
|
2013-11-25 20:48:44 +04:00
|
|
|
* @member {Number} tileOverlap
|
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* The minimum pyramid level this tile source supports or should attempt to load.
|
|
|
|
* @member {Number} minLevel
|
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* The maximum pyramid level this tile source supports or should attempt to load.
|
|
|
|
* @member {Number} maxLevel
|
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
/**
|
2015-01-03 02:45:46 +03:00
|
|
|
*
|
2013-11-25 20:48:44 +04:00
|
|
|
* @member {Boolean} ready
|
|
|
|
* @memberof OpenSeadragon.TileSource#
|
|
|
|
*/
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
if( 'string' == $.type( arguments[ 0 ] ) ){
|
2015-01-03 02:45:46 +03:00
|
|
|
this.url = arguments[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.url) {
|
2013-08-27 02:47:21 +04:00
|
|
|
//in case the getImageInfo method is overriden and/or implies an
|
|
|
|
//async mechanism set some safe defaults first
|
|
|
|
this.aspectRatio = 1;
|
|
|
|
this.dimensions = new $.Point( 10, 10 );
|
2015-06-29 20:42:09 +03:00
|
|
|
this.tileSize = 0;
|
2013-08-27 02:47:21 +04:00
|
|
|
this.tileOverlap = 0;
|
|
|
|
this.minLevel = 0;
|
|
|
|
this.maxLevel = 0;
|
|
|
|
this.ready = false;
|
|
|
|
//configuration via url implies the extending class
|
|
|
|
//implements and 'configure'
|
2015-01-03 02:45:46 +03:00
|
|
|
this.getImageInfo( this.url );
|
2013-08-27 02:47:21 +04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
//explicit configuration via positional args in constructor
|
|
|
|
//or the more idiomatic 'options' object
|
|
|
|
this.ready = true;
|
|
|
|
this.aspectRatio = ( options.width && options.height ) ?
|
|
|
|
( options.width / options.height ) : 1;
|
|
|
|
this.dimensions = new $.Point( options.width, options.height );
|
2015-06-26 23:26:09 +03:00
|
|
|
|
2015-06-29 20:42:09 +03:00
|
|
|
this.tileSize = options.tileSize ? options.tileSize : 0;
|
|
|
|
this.tileWidth = options.tileWidth;
|
|
|
|
this.tileHeight = options.tileHeight;
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0;
|
|
|
|
this.minLevel = options.minLevel ? options.minLevel : 0;
|
|
|
|
this.maxLevel = ( undefined !== options.maxLevel && null !== options.maxLevel ) ?
|
2012-08-29 22:46:34 +04:00
|
|
|
options.maxLevel : (
|
2013-08-27 02:47:21 +04:00
|
|
|
( options.width && options.height ) ? Math.ceil(
|
|
|
|
Math.log( Math.max( options.width, options.height ) ) /
|
|
|
|
Math.log( 2 )
|
2012-08-29 22:46:34 +04:00
|
|
|
) : 0
|
|
|
|
);
|
2015-01-03 02:45:46 +03:00
|
|
|
if( this.success && $.isFunction( this.success ) ){
|
|
|
|
this.success( this );
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
}
|
2012-06-05 15:52:00 +04:00
|
|
|
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
};
|
2012-06-05 15:52:00 +04:00
|
|
|
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-11-16 10:19:53 +04:00
|
|
|
$.TileSource.prototype = /** @lends OpenSeadragon.TileSource.prototype */{
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-07-26 03:31:13 +04:00
|
|
|
/**
|
2015-01-03 02:45:46 +03:00
|
|
|
* Return the tileSize for a given level.
|
2014-07-29 22:12:05 +04:00
|
|
|
* Subclasses should override this if tileSizes can be different at different levels
|
|
|
|
* such as in IIIFTileSource. Code should use this function rather than reading
|
|
|
|
* from .tileSize directly. tileSize may be deprecated in a future release.
|
2015-06-29 20:42:09 +03:00
|
|
|
* @deprecated
|
2014-07-26 03:31:13 +04:00
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getTileSize: function( level ) {
|
2015-06-29 20:42:09 +03:00
|
|
|
$.console.error(
|
|
|
|
"[TileSource.getTileSize] is deprecated." +
|
|
|
|
"Use TileSource.getTileWidth() and TileSource.getTileHeight() instead"
|
|
|
|
);
|
2014-07-26 03:31:13 +04:00
|
|
|
return this.tileSize;
|
|
|
|
},
|
2015-06-29 20:42:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the tileWidth for a given level.
|
|
|
|
* Subclasses should override this if tileWidth can be different at different levels
|
|
|
|
* such as in IIIFTileSource. Code should use this function rather than reading
|
|
|
|
* from .tileWidth directly.
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getTileWidth: function( level ) {
|
|
|
|
// If tileWidth was not set, fallback by setting it to tileSize
|
|
|
|
if( this.tileWidth === undefined){
|
|
|
|
this.tileWidth = this.tileSize;
|
|
|
|
}
|
|
|
|
return this.tileWidth;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the tileHeight for a given level.
|
|
|
|
* Subclasses should override this if tileHeight can be different at different levels
|
|
|
|
* such as in IIIFTileSource. Code should use this function rather than reading
|
|
|
|
* from .tileHeight directly.
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getTileHeight: function( level ) {
|
|
|
|
// If tileHeight was not set, fallback by setting it to tileSize
|
|
|
|
if( this.tileHeight === undefined ){
|
|
|
|
this.tileHeight = this.tileSize;
|
|
|
|
}
|
|
|
|
return this.tileHeight;
|
|
|
|
},
|
2014-07-26 03:31:13 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getLevelScale: function( level ) {
|
|
|
|
|
|
|
|
// see https://github.com/openseadragon/openseadragon/issues/22
|
|
|
|
// we use the tilesources implementation of getLevelScale to generate
|
|
|
|
// a memoized re-implementation
|
|
|
|
var levelScaleCache = {},
|
2013-08-27 02:25:57 +04:00
|
|
|
i;
|
2013-08-27 02:47:21 +04:00
|
|
|
for( i = 0; i <= this.maxLevel; i++ ){
|
|
|
|
levelScaleCache[ i ] = 1 / Math.pow(2, this.maxLevel - i);
|
|
|
|
}
|
|
|
|
this.getLevelScale = function( _level ){
|
|
|
|
return levelScaleCache[ _level ];
|
|
|
|
};
|
|
|
|
return this.getLevelScale( level );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getNumTiles: function( level ) {
|
|
|
|
var scale = this.getLevelScale( level ),
|
2015-06-29 20:42:09 +03:00
|
|
|
x = Math.ceil( scale * this.dimensions.x / this.getTileWidth(level) ),
|
|
|
|
y = Math.ceil( scale * this.dimensions.y / this.getTileHeight(level) );
|
2013-08-27 02:47:21 +04:00
|
|
|
|
|
|
|
return new $.Point( x, y );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getPixelRatio: function( level ) {
|
|
|
|
var imageSizeScaled = this.dimensions.times( this.getLevelScale( level ) ),
|
2012-01-24 07:48:45 +04:00
|
|
|
rx = 1.0 / imageSizeScaled.x,
|
|
|
|
ry = 1.0 / imageSizeScaled.y;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
return new $.Point(rx, ry);
|
|
|
|
},
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-03-06 14:51:31 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
*/
|
|
|
|
getClosestLevel: function( rect ) {
|
|
|
|
var i,
|
2014-07-26 03:31:13 +04:00
|
|
|
tilesPerSide,
|
2015-06-29 20:42:09 +03:00
|
|
|
tiles;
|
2015-06-26 21:17:40 +03:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
for( i = this.minLevel; i < this.maxLevel; i++ ){
|
|
|
|
tiles = this.getNumTiles( i );
|
2015-06-26 21:17:40 +03:00
|
|
|
tilesPerSide = new $.Point(
|
2015-06-29 20:42:09 +03:00
|
|
|
Math.floor( rect.x / this.getTileWidth(i) ),
|
|
|
|
Math.floor( rect.y / this.getTileHeight(i) )
|
2015-06-26 21:17:40 +03:00
|
|
|
);
|
|
|
|
|
2015-06-29 20:42:09 +03:00
|
|
|
if( tiles.x + 1 >= tilesPerSide.x || tiles.y + 1 >= tilesPerSide.y ){
|
2013-08-27 02:47:21 +04:00
|
|
|
break;
|
2013-03-06 14:51:31 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
}
|
|
|
|
return Math.max( 0, i - 1 );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
* @param {OpenSeadragon.Point} point
|
|
|
|
*/
|
|
|
|
getTileAtPoint: function( level, point ) {
|
2015-06-26 21:17:40 +03:00
|
|
|
var pixel = point.times( this.dimensions.x ).times( this.getLevelScale(level) ),
|
2015-06-29 20:42:09 +03:00
|
|
|
tx = Math.floor( pixel.x / this.getTileWidth(level) ),
|
|
|
|
ty = Math.floor( pixel.y / this.getTileHeight(level) );
|
2013-08-27 02:47:21 +04:00
|
|
|
|
|
|
|
return new $.Point( tx, ty );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
* @param {Number} x
|
|
|
|
* @param {Number} y
|
|
|
|
*/
|
|
|
|
getTileBounds: function( level, x, y ) {
|
|
|
|
var dimensionsScaled = this.dimensions.times( this.getLevelScale( level ) ),
|
2015-06-29 20:42:09 +03:00
|
|
|
tileWidth = this.getTileWidth(level),
|
|
|
|
tileHeight = this.getTileHeight(level),
|
|
|
|
px = ( x === 0 ) ? 0 : tileWidth * x - this.tileOverlap,
|
|
|
|
py = ( y === 0 ) ? 0 : tileHeight * y - this.tileOverlap,
|
|
|
|
sx = tileWidth + ( x === 0 ? 1 : 2 ) * this.tileOverlap,
|
|
|
|
sy = tileHeight + ( y === 0 ? 1 : 2 ) * this.tileOverlap,
|
2012-01-24 07:48:45 +04:00
|
|
|
scale = 1.0 / dimensionsScaled.x;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
sx = Math.min( sx, dimensionsScaled.x - px );
|
|
|
|
sy = Math.min( sy, dimensionsScaled.y - py );
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
return new $.Rect( px * scale, py * scale, sx * scale, sy * scale );
|
|
|
|
},
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
/**
|
|
|
|
* Responsible for retrieving, and caching the
|
|
|
|
* image metadata pertinent to this TileSources implementation.
|
|
|
|
* @function
|
|
|
|
* @param {String} url
|
|
|
|
* @throws {Error}
|
|
|
|
*/
|
|
|
|
getImageInfo: function( url ) {
|
|
|
|
var _this = this,
|
2012-06-05 15:52:00 +04:00
|
|
|
callbackName,
|
|
|
|
callback,
|
|
|
|
readySource,
|
|
|
|
options,
|
|
|
|
urlParts,
|
|
|
|
filename,
|
2013-06-19 01:55:19 +04:00
|
|
|
lastDot;
|
2012-06-05 15:52:00 +04:00
|
|
|
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
if( url ) {
|
|
|
|
urlParts = url.split( '/' );
|
|
|
|
filename = urlParts[ urlParts.length - 1 ];
|
|
|
|
lastDot = filename.lastIndexOf( '.' );
|
|
|
|
if ( lastDot > -1 ) {
|
|
|
|
urlParts[ urlParts.length - 1 ] = filename.slice( 0, lastDot );
|
2013-06-28 02:10:23 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
}
|
2013-06-28 02:10:23 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
callback = function( data ){
|
2013-09-07 20:08:39 +04:00
|
|
|
if( typeof(data) === "string" ) {
|
2013-09-25 00:54:54 +04:00
|
|
|
data = $.parseXml( data );
|
2013-09-07 20:08:39 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
var $TileSource = $.TileSource.determineType( _this, data, url );
|
|
|
|
if ( !$TileSource ) {
|
2013-11-16 10:19:53 +04:00
|
|
|
/**
|
2013-11-22 00:19:07 +04:00
|
|
|
* Raised when an error occurs loading a TileSource.
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @event open-failed
|
|
|
|
* @memberof OpenSeadragon.TileSource
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.TileSource} eventSource - A reference to the TileSource which raised the event.
|
|
|
|
* @property {String} message
|
|
|
|
* @property {String} source
|
2013-11-18 18:56:32 +04:00
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
2013-11-16 10:19:53 +04:00
|
|
|
*/
|
2013-08-27 02:47:21 +04:00
|
|
|
_this.raiseEvent( 'open-failed', { message: "Unable to load TileSource", source: url } );
|
|
|
|
return;
|
2013-08-27 02:25:57 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
options = $TileSource.prototype.configure.apply( _this, [ data, url ]);
|
2015-01-03 02:45:46 +03:00
|
|
|
if (options.ajaxWithCredentials === undefined) {
|
|
|
|
options.ajaxWithCredentials = _this.ajaxWithCredentials;
|
|
|
|
}
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
readySource = new $TileSource( options );
|
|
|
|
_this.ready = true;
|
2013-11-16 10:19:53 +04:00
|
|
|
/**
|
2013-11-22 00:19:07 +04:00
|
|
|
* Raised when a TileSource is opened and initialized.
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @event ready
|
|
|
|
* @memberof OpenSeadragon.TileSource
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.TileSource} eventSource - A reference to the TileSource which raised the event.
|
|
|
|
* @property {Object} tileSource
|
2013-11-18 18:56:32 +04:00
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
2013-11-16 10:19:53 +04:00
|
|
|
*/
|
2013-10-03 00:09:40 +04:00
|
|
|
_this.raiseEvent( 'ready', { tileSource: readySource } );
|
2013-08-27 02:47:21 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
if( url.match(/\.js$/) ){
|
|
|
|
//TODO: Its not very flexible to require tile sources to end jsonp
|
|
|
|
// request for info with a url that ends with '.js' but for
|
|
|
|
// now it's the only way I see to distinguish uniformly.
|
|
|
|
callbackName = url.split( '/' ).pop().replace('.js','');
|
|
|
|
$.jsonp({
|
|
|
|
url: url,
|
|
|
|
async: false,
|
|
|
|
callbackName: callbackName,
|
|
|
|
callback: callback
|
|
|
|
});
|
|
|
|
} else {
|
2013-12-14 01:11:00 +04:00
|
|
|
// request info via xhr asynchronously.
|
2015-01-03 02:45:46 +03:00
|
|
|
$.makeAjaxRequest( {
|
|
|
|
url: url,
|
|
|
|
withCredentials: this.ajaxWithCredentials,
|
|
|
|
success: function( xhr ) {
|
|
|
|
var data = processResponse( xhr );
|
|
|
|
callback( data );
|
|
|
|
},
|
|
|
|
error: function ( xhr, exc ) {
|
|
|
|
var msg;
|
|
|
|
|
|
|
|
/*
|
|
|
|
IE < 10 will block XHR requests to different origins. Any property access on the request
|
|
|
|
object will raise an exception which we'll attempt to handle by formatting the original
|
|
|
|
exception rather than the second one raised when we try to access xhr.status
|
|
|
|
*/
|
|
|
|
try {
|
|
|
|
msg = "HTTP " + xhr.status + " attempting to load TileSource";
|
|
|
|
} catch ( e ) {
|
|
|
|
var formattedExc;
|
|
|
|
if ( typeof( exc ) == "undefined" || !exc.toString ) {
|
|
|
|
formattedExc = "Unknown error";
|
|
|
|
} else {
|
|
|
|
formattedExc = exc.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
msg = formattedExc + " attempting to load TileSource";
|
2013-08-30 00:15:52 +04:00
|
|
|
}
|
|
|
|
|
2015-01-03 02:45:46 +03:00
|
|
|
/***
|
|
|
|
* Raised when an error occurs loading a TileSource.
|
|
|
|
*
|
|
|
|
* @event open-failed
|
|
|
|
* @memberof OpenSeadragon.TileSource
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.TileSource} eventSource - A reference to the TileSource which raised the event.
|
|
|
|
* @property {String} message
|
|
|
|
* @property {String} source
|
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
|
|
|
*/
|
|
|
|
_this.raiseEvent( 'open-failed', {
|
|
|
|
message: msg,
|
|
|
|
source: url
|
|
|
|
});
|
2013-08-30 00:15:52 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responsible determining if a the particular TileSource supports the
|
|
|
|
* data format ( and allowed to apply logic against the url the data was
|
|
|
|
* loaded from, if any ). Overriding implementations are expected to do
|
|
|
|
* something smart with data and / or url to determine support. Also
|
|
|
|
* understand that iteration order of TileSources is not guarunteed so
|
|
|
|
* please make sure your data or url is expressive enough to ensure a simple
|
|
|
|
* and sufficient mechanisim for clear determination.
|
|
|
|
* @function
|
|
|
|
* @param {String|Object|Array|Document} data
|
|
|
|
* @param {String} url - the url the data was loaded
|
|
|
|
* from if any.
|
|
|
|
* @return {Boolean}
|
|
|
|
*/
|
|
|
|
supports: function( data, url ) {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responsible for parsing and configuring the
|
|
|
|
* image metadata pertinent to this TileSources implementation.
|
|
|
|
* This method is not implemented by this class other than to throw an Error
|
|
|
|
* announcing you have to implement it. Because of the variety of tile
|
|
|
|
* server technologies, and various specifications for building image
|
|
|
|
* pyramids, this method is here to allow easy integration.
|
|
|
|
* @function
|
|
|
|
* @param {String|Object|Array|Document} data
|
|
|
|
* @param {String} url - the url the data was loaded
|
|
|
|
* from if any.
|
|
|
|
* @return {Object} options - A dictionary of keyword arguments sufficient
|
|
|
|
* to configure this tile sources constructor.
|
|
|
|
* @throws {Error}
|
|
|
|
*/
|
|
|
|
configure: function( data, url ) {
|
|
|
|
throw new Error( "Method not implemented." );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responsible for retriving the url which will return an image for the
|
|
|
|
* region speified by the given x, y, and level components.
|
|
|
|
* This method is not implemented by this class other than to throw an Error
|
|
|
|
* announcing you have to implement it. Because of the variety of tile
|
|
|
|
* server technologies, and various specifications for building image
|
|
|
|
* pyramids, this method is here to allow easy integration.
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
* @param {Number} x
|
|
|
|
* @param {Number} y
|
|
|
|
* @throws {Error}
|
|
|
|
*/
|
|
|
|
getTileUrl: function( level, x, y ) {
|
|
|
|
throw new Error( "Method not implemented." );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @param {Number} level
|
|
|
|
* @param {Number} x
|
|
|
|
* @param {Number} y
|
|
|
|
*/
|
|
|
|
tileExists: function( level, x, y ) {
|
|
|
|
var numTiles = this.getNumTiles( level );
|
|
|
|
return level >= this.minLevel &&
|
2011-12-13 16:24:34 +04:00
|
|
|
level <= this.maxLevel &&
|
2013-06-19 21:33:25 +04:00
|
|
|
x >= 0 &&
|
|
|
|
y >= 0 &&
|
|
|
|
x < numTiles.x &&
|
2011-12-13 16:24:34 +04:00
|
|
|
y < numTiles.y;
|
2013-08-27 02:47:21 +04:00
|
|
|
}
|
|
|
|
};
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-06-05 15:52:00 +04:00
|
|
|
|
2013-09-25 00:36:13 +04:00
|
|
|
$.extend( true, $.TileSource.prototype, $.EventSource.prototype );
|
2012-06-05 15:52:00 +04:00
|
|
|
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
/**
|
|
|
|
* Decides whether to try to process the response as xml, json, or hand back
|
|
|
|
* the text
|
2013-11-16 10:19:53 +04:00
|
|
|
* @private
|
2013-08-27 02:47:21 +04:00
|
|
|
* @inner
|
|
|
|
* @function
|
|
|
|
* @param {XMLHttpRequest} xhr - the completed network request
|
|
|
|
*/
|
|
|
|
function processResponse( xhr ){
|
|
|
|
var responseText = xhr.responseText,
|
|
|
|
status = xhr.status,
|
2012-06-05 15:52:00 +04:00
|
|
|
statusText,
|
|
|
|
data;
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
if ( !xhr ) {
|
|
|
|
throw new Error( $.getString( "Errors.Security" ) );
|
|
|
|
} else if ( xhr.status !== 200 && xhr.status !== 0 ) {
|
|
|
|
status = xhr.status;
|
|
|
|
statusText = ( status == 404 ) ?
|
2013-06-19 21:33:25 +04:00
|
|
|
"Not Found" :
|
2012-06-05 15:52:00 +04:00
|
|
|
xhr.statusText;
|
2013-08-27 02:47:21 +04:00
|
|
|
throw new Error( $.getString( "Errors.Status", status, statusText ) );
|
|
|
|
}
|
2012-06-05 15:52:00 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
if( responseText.match(/\s*<.*/) ){
|
|
|
|
try{
|
|
|
|
data = ( xhr.responseXML && xhr.responseXML.documentElement ) ?
|
2013-06-19 21:33:25 +04:00
|
|
|
xhr.responseXML :
|
2013-08-27 02:47:21 +04:00
|
|
|
$.parseXml( responseText );
|
|
|
|
} catch (e){
|
|
|
|
data = xhr.responseText;
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
}else if( responseText.match(/\s*[\{\[].*/) ){
|
|
|
|
/*jshint evil:true*/
|
|
|
|
data = eval( '('+responseText+')' );
|
|
|
|
}else{
|
|
|
|
data = responseText;
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines the TileSource Implementation by introspection of OpenSeadragon
|
|
|
|
* namespace, calling each TileSource implementation of 'isType'
|
2013-11-16 10:19:53 +04:00
|
|
|
* @private
|
2013-08-27 02:47:21 +04:00
|
|
|
* @inner
|
|
|
|
* @function
|
|
|
|
* @param {Object|Array|Document} data - the tile source configuration object
|
|
|
|
* @param {String} url - the url where the tile source configuration object was
|
|
|
|
* loaded from, if any.
|
|
|
|
*/
|
|
|
|
$.TileSource.determineType = function( tileSource, data, url ){
|
|
|
|
var property;
|
|
|
|
for( property in OpenSeadragon ){
|
|
|
|
if( property.match(/.+TileSource$/) &&
|
|
|
|
$.isFunction( OpenSeadragon[ property ] ) &&
|
|
|
|
$.isFunction( OpenSeadragon[ property ].prototype.supports ) &&
|
|
|
|
OpenSeadragon[ property ].prototype.supports.call( tileSource, data, url )
|
|
|
|
){
|
|
|
|
return OpenSeadragon[ property ];
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
2013-08-27 02:47:21 +04:00
|
|
|
}
|
2013-06-28 02:10:23 +04:00
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
$.console.error( "No TileSource was able to open %s %s", url, data );
|
|
|
|
};
|
2012-06-05 15:52:00 +04:00
|
|
|
|
|
|
|
|
2013-08-27 02:47:21 +04:00
|
|
|
}( OpenSeadragon ));
|