1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/grid/thumnailLoader.service.ts

166 lines
4.2 KiB
TypeScript
Raw Normal View History

2016-06-17 06:05:31 +08:00
///<reference path="../../../browser.d.ts"/>
import {Injectable} from "@angular/core";
import {GridPhoto} from "./GridPhoto";
2016-06-17 17:25:15 +08:00
import {Config} from "../../config/Config";
2016-06-17 06:05:31 +08:00
export enum ThumbnailLoadingPriority{
high, medium, low
}
2016-06-17 06:05:31 +08:00
@Injectable()
export class ThumbnailLoaderService {
que:Array<ThumbnailTask> = [];
2016-06-17 17:25:15 +08:00
runningRequests:number = 0;
2016-06-17 06:05:31 +08:00
constructor() {
}
2016-06-24 04:25:16 +08:00
removeTasks() {
this.que = [];
}
removeTask(taskEntry:ThumbnailTaskEntity) {
for (let i = 0; i < this.que.length; i++) {
let index = this.que[i].taskEntities.indexOf(taskEntry);
if (index == -1) {
this.que[i].taskEntities.splice(index, 1);
if (this.que[i].taskEntities.length == 0) {
this.que.splice(i, 1);
}
return;
}
}
}
loadImage(gridPhoto:GridPhoto, priority:ThumbnailLoadingPriority, listener:ThumbnailLoadingListener):ThumbnailTaskEntity {
2016-06-17 17:25:15 +08:00
let tmp:ThumbnailTask = null;
2016-06-24 04:25:16 +08:00
//is image already qued?
2016-06-17 17:25:15 +08:00
for (let i = 0; i < this.que.length; i++) {
if (this.que[i].gridPhoto.getThumbnailPath() == gridPhoto.getThumbnailPath()) {
tmp = this.que[i];
break;
2016-06-17 06:05:31 +08:00
}
2016-06-17 17:25:15 +08:00
}
let thumbnailTaskEntity = {priority: priority, listener: listener};
2016-06-24 04:25:16 +08:00
//add to previous
2016-06-17 17:25:15 +08:00
if (tmp != null) {
tmp.taskEntities.push(thumbnailTaskEntity);
2016-06-24 04:25:16 +08:00
if (tmp.inProgress == true) {
listener.onStartedLoading();
2016-06-24 04:25:16 +08:00
}
} else {//create new task
2016-06-17 17:25:15 +08:00
this.que.push({
gridPhoto: gridPhoto,
2016-06-24 04:25:16 +08:00
inProgress: false,
taskEntities: [thumbnailTaskEntity]
2016-06-17 17:25:15 +08:00
});
}
setImmediate(this.run);
return thumbnailTaskEntity;
}
private getNextTask():ThumbnailTask {
if (this.que.length === 0) {
return null;
}
for (let i = 0; i < this.que.length; i++) {
for (let j = 0; j < this.que[i].taskEntities.length; j++) {
if (this.que[i].taskEntities[j].priority === ThumbnailLoadingPriority.high) {
return this.que[i];
}
}
}
for (let i = 0; i < this.que.length; i++) {
for (let j = 0; j < this.que[i].taskEntities.length; j++) {
if (this.que[i].taskEntities[j].priority === ThumbnailLoadingPriority.medium) {
return this.que[i];
}
}
}
2016-06-17 06:05:31 +08:00
return this.que[0];
2016-06-17 06:05:31 +08:00
}
private taskReady(task:ThumbnailTask) {
let i = this.que.indexOf(task);
if (i == -1) {
if (task.taskEntities.length !== 0) {
console.error("ThumbnailLoader: can't find task to remove");
}
return;
}
this.que.splice(i, 1);
}
2016-06-17 06:05:31 +08:00
run = () => {
2016-06-17 17:25:15 +08:00
if (this.que.length === 0 || this.runningRequests >= Config.Client.concurrentThumbnailGenerations) {
2016-06-17 06:05:31 +08:00
return;
}
let task = this.getNextTask();
if (task === null) {
return;
}
2016-06-17 17:25:15 +08:00
this.runningRequests++;
task.taskEntities.forEach(te=>te.listener.onStartedLoading());
2016-06-24 04:25:16 +08:00
task.inProgress = true;
2016-06-17 06:05:31 +08:00
let curImg = new Image();
2016-06-17 17:25:15 +08:00
curImg.src = task.gridPhoto.getThumbnailPath();
2016-06-24 04:25:16 +08:00
curImg.onload = () => {
2016-06-17 17:25:15 +08:00
task.gridPhoto.thumbnailLoaded();
task.taskEntities.forEach(te=>te.listener.onLoad());
2016-06-24 04:25:16 +08:00
this.taskReady(task);
2016-06-17 17:25:15 +08:00
this.runningRequests--;
2016-06-17 06:05:31 +08:00
this.run();
};
2016-06-24 04:25:16 +08:00
curImg.onerror = (error) => {
task.taskEntities.forEach(te=>te.listener.onError(error));
2016-06-24 04:25:16 +08:00
this.taskReady(task);
2016-06-17 17:25:15 +08:00
this.runningRequests--;
2016-06-17 06:05:31 +08:00
this.run();
};
};
}
2016-06-17 06:05:31 +08:00
export interface ThumbnailLoadingListener {
onStartedLoading:()=>void;
onLoad:()=>void;
onError:(error)=>void;
}
export interface ThumbnailTaskEntity {
priority:ThumbnailLoadingPriority;
listener:ThumbnailLoadingListener;
2016-06-17 06:05:31 +08:00
}
interface ThumbnailTask {
2016-06-17 17:25:15 +08:00
gridPhoto:GridPhoto;
2016-06-24 04:25:16 +08:00
inProgress:boolean;
taskEntities:Array<ThumbnailTaskEntity>;
2016-06-17 06:05:31 +08:00
}