Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio
Commits
9853d53e
Commit
9853d53e
authored
Jun 10, 2014
by
Xiaowu Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix big data storage problem
parent
f976d3de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
50 deletions
+44
-50
src/jio.storage/indexeddbstorage.js
src/jio.storage/indexeddbstorage.js
+44
-50
No files found.
src/jio.storage/indexeddbstorage.js
View file @
9853d53e
...
@@ -595,64 +595,58 @@
...
@@ -595,64 +595,58 @@
transaction
,
transaction
,
global_db
,
global_db
,
BlobInfo
,
BlobInfo
,
digest
,
readResult
;
readResult
;
new
RSVP
.
Queue
()
jIO
.
util
.
readBlobAsArrayBuffer
(
metadata
.
_blob
)
.
push
(
jIO
.
util
.
readBlobAsText
(
metadata
.
_blob
).
.
then
(
function
(
event
)
{
then
(
function
(
e
)
{
readResult
=
event
.
target
.
result
;
digest
=
jIO
.
util
.
makeBinaryStringDigest
(
e
.
target
.
result
);
//xxx
BlobInfo
=
{
readResult
=
e
.
target
.
result
;
"
content_type
"
:
metadata
.
_blob
.
type
,
BlobInfo
=
{
"
length
"
:
metadata
.
_blob
.
size
"
content_type
"
:
metadata
.
_blob
.
type
,
};
"
digest
"
:
digest
,
new
RSVP
.
Queue
()
"
length
"
:
metadata
.
_blob
.
size
};
},
function
()
{
command
.
error
(
"
conflict
"
,
"
broken blob
"
,
"
Cannot read data to put
"
);
}))
.
push
(
function
()
{
.
push
(
function
()
{
return
openIndexedDB
(
jio_storage
.
_database_name
);
return
openIndexedDB
(
jio_storage
.
_database_name
);
})
})
.
push
(
function
(
db
)
{
.
push
(
function
(
db
)
{
global_db
=
db
;
global_db
=
db
;
transaction
=
db
.
transaction
([
"
attachment
"
,
transaction
=
db
.
transaction
([
"
attachment
"
,
"
blob
"
],
"
readwrite
"
);
"
blob
"
],
"
readwrite
"
);
return
promiseResearch
(
transaction
,
metadata
.
_id
,
"
attachment
"
,
"
_id
"
);
return
promiseResearch
(
transaction
,
})
metadata
.
_id
,
"
attachment
"
,
"
_id
"
);
})
.
push
(
function
(
researchResult
)
{
.
push
(
function
(
researchResult
)
{
if
(
researchResult
.
result
===
undefined
)
{
if
(
researchResult
.
result
===
undefined
)
{
throw
({
"
status
"
:
404
,
"
reason
"
:
"
Not Found
"
,
throw
({
"
status
"
:
404
,
"
reason
"
:
"
Not Found
"
,
"
message
"
:
"
indexeddbStorage unable to put attachment
"
});
"
message
"
:
"
indexeddbStorage unable to put attachment
"
});
}
}
//update attachment
//update attachment
researchResult
.
result
.
_attachment
=
researchResult
.
result
.
_attachment
researchResult
.
result
.
_attachment
=
researchResult
.
||
{};
result
.
_attachment
||
{};
researchResult
.
result
.
_attachment
[
metadata
.
_attachment
]
=
researchResult
.
result
.
_attachment
[
metadata
.
_attachment
]
=
(
BlobInfo
===
undefined
)
?
"
BlobInfo
"
:
BlobInfo
;
(
BlobInfo
===
undefined
)
?
"
BlobInfo
"
:
BlobInfo
;
return
putIndexedDB
(
researchResult
.
store
,
researchResult
.
result
);
return
putIndexedDB
(
researchResult
.
store
,
researchResult
.
result
);
})
})
.
push
(
function
()
{
.
push
(
function
()
{
//put in blob
//put in blob
var
store
=
transaction
.
objectStore
(
"
blob
"
);
var
store
=
transaction
.
objectStore
(
"
blob
"
);
return
putIndexedDB
(
store
,
{
"
_id
"
:
metadata
.
_id
,
return
putIndexedDB
(
store
,
{
"
_id
"
:
metadata
.
_id
,
"
_attachment
"
:
metadata
.
_attachment
,
"
_attachment
"
:
metadata
.
_attachment
,
"
blob
"
:
metadata
.
_blob
},
readResult
);
"
blob
"
:
metadata
.
_blob
},
readResult
);
})
}).
push
(
function
()
{
.
push
(
function
()
{
return
{
"
status
"
:
204
};
return
({
"
digest
"
:
digest
});
//xxx
})
})
.
push
(
undefined
,
function
(
error
)
{
.
push
(
undefined
,
function
(
error
)
{
// Check if transaction is ongoing, if so, abort it
// Check if transaction is ongoing, if so, abort it
if
(
transaction
!==
undefined
)
{
if
(
transaction
!==
undefined
)
{
transaction
.
abort
();
transaction
.
abort
();
}
}
if
(
global_db
!==
undefined
)
{
if
(
global_db
!==
undefined
)
{
global_db
.
close
();
global_db
.
close
();
}
}
throw
error
;
throw
error
;
})
})
.
push
(
command
.
success
,
command
.
error
,
command
.
notify
);
.
push
(
command
.
success
,
command
.
error
,
command
.
notify
);
});
};
};
...
@@ -688,7 +682,7 @@
...
@@ -688,7 +682,7 @@
})
})
.
push
(
function
(
result
)
{
.
push
(
function
(
result
)
{
//get data
//get data
if
(
typeof
result
.
blob
===
"
string
"
)
{
if
(
result
.
blob
.
byteLength
!==
undefined
)
{
result
.
blob
=
new
Blob
([
result
.
blob
],
result
.
blob
=
new
Blob
([
result
.
blob
],
{
type
:
"
text/plain
"
});
{
type
:
"
text/plain
"
});
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment