Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
08ef748c
Commit
08ef748c
authored
9 years ago
by
Rider Linden
Browse files
Options
Downloads
Patches
Plain Diff
Added file upload interface to core HTTP utils.
parent
97033975
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llmessage/llcorehttputil.cpp
+56
-0
56 additions, 0 deletions
indra/llmessage/llcorehttputil.cpp
indra/llmessage/llcorehttputil.h
+30
-0
30 additions, 0 deletions
indra/llmessage/llcorehttputil.h
with
86 additions
and
0 deletions
indra/llmessage/llcorehttputil.cpp
+
56
−
0
View file @
08ef748c
...
...
@@ -36,6 +36,7 @@
#include
"llsdjson.h"
#include
"llsdserialize.h"
#include
"reader.h"
#include
"llvfile.h"
#include
"message.h"
// for getting the port
...
...
@@ -621,6 +622,61 @@ LLSD HttpCoroutineAdapter::postRawAndYield(LLCoros::self & self, LLCore::HttpReq
return
postAndYield_
(
self
,
request
,
url
,
rawbody
,
options
,
headers
,
httpHandler
);
}
// *TODO: This functionality could be moved into the LLCore::Http library itself
// by having the CURL layer read the file directly.
LLSD
HttpCoroutineAdapter
::
postFileAndYield
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
request
,
const
std
::
string
&
url
,
std
::
string
fileName
,
LLCore
::
HttpOptions
::
ptr_t
options
,
LLCore
::
HttpHeaders
::
ptr_t
headers
)
{
LLCore
::
BufferArray
::
ptr_t
fileData
(
new
LLCore
::
BufferArray
,
false
);
// scoping for our streams so that they go away when we no longer need them.
{
LLCore
::
BufferArrayStream
outs
(
fileData
.
get
());
llifstream
ins
(
fileName
.
c_str
(),
std
::
iostream
::
binary
|
std
::
iostream
::
out
);
if
(
ins
.
is_open
())
{
ins
.
seekg
(
0
,
std
::
ios
::
beg
);
ins
>>
std
::
noskipws
;
std
::
copy
(
std
::
istream_iterator
<
U8
>
(
ins
),
std
::
istream_iterator
<
U8
>
(),
std
::
ostream_iterator
<
U8
>
(
outs
));
ins
.
close
();
}
}
return
postAndYield
(
self
,
request
,
url
,
fileData
,
options
,
headers
);
}
// *TODO: This functionality could be moved into the LLCore::Http library itself
// by having the CURL layer read the file directly.
LLSD
HttpCoroutineAdapter
::
postFileAndYield
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
request
,
const
std
::
string
&
url
,
LLUUID
assetId
,
LLAssetType
::
EType
assetType
,
LLCore
::
HttpOptions
::
ptr_t
options
,
LLCore
::
HttpHeaders
::
ptr_t
headers
)
{
LLCore
::
BufferArray
::
ptr_t
fileData
(
new
LLCore
::
BufferArray
,
false
);
// scoping for our streams so that they go away when we no longer need them.
{
LLCore
::
BufferArrayStream
outs
(
fileData
.
get
());
LLVFile
vfile
(
gVFS
,
assetId
,
assetType
,
LLVFile
::
READ
);
S32
fileSize
=
vfile
.
getSize
();
U8
*
fileBuffer
;
fileBuffer
=
new
U8
[
fileSize
];
vfile
.
read
(
fileBuffer
,
fileSize
);
outs
.
write
((
char
*
)
fileBuffer
,
fileSize
);
delete
[]
fileBuffer
;
}
return
postAndYield
(
self
,
request
,
url
,
fileData
,
options
,
headers
);
}
LLSD
HttpCoroutineAdapter
::
postAndYield_
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
&
request
,
const
std
::
string
&
url
,
LLCore
::
BufferArray
::
ptr_t
&
rawbody
,
LLCore
::
HttpOptions
::
ptr_t
&
options
,
LLCore
::
HttpHeaders
::
ptr_t
&
headers
,
...
...
This diff is collapsed.
Click to expand it.
indra/llmessage/llcorehttputil.h
+
30
−
0
View file @
08ef748c
...
...
@@ -43,6 +43,8 @@
#include
"llevents.h"
#include
"llcoros.h"
#include
"lleventcoro.h"
#include
"llassettype.h"
#include
"lluuid.h"
///
/// The base llcorehttp library implements many HTTP idioms
...
...
@@ -355,6 +357,34 @@ class HttpCoroutineAdapter
LLCore
::
HttpOptions
::
ptr_t
(
new
LLCore
::
HttpOptions
(),
false
),
headers
);
}
LLSD
postFileAndYield
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
request
,
const
std
::
string
&
url
,
std
::
string
fileName
,
LLCore
::
HttpOptions
::
ptr_t
options
=
LLCore
::
HttpOptions
::
ptr_t
(
new
LLCore
::
HttpOptions
(),
false
),
LLCore
::
HttpHeaders
::
ptr_t
headers
=
LLCore
::
HttpHeaders
::
ptr_t
(
new
LLCore
::
HttpHeaders
(),
false
));
LLSD
postFileAndYield
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
&
request
,
const
std
::
string
&
url
,
std
::
string
fileName
,
LLCore
::
HttpHeaders
::
ptr_t
&
headers
)
{
return
postFileAndYield
(
self
,
request
,
url
,
fileName
,
LLCore
::
HttpOptions
::
ptr_t
(
new
LLCore
::
HttpOptions
(),
false
),
headers
);
}
LLSD
HttpCoroutineAdapter
::
postFileAndYield
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
request
,
const
std
::
string
&
url
,
LLUUID
assetId
,
LLAssetType
::
EType
assetType
,
LLCore
::
HttpOptions
::
ptr_t
options
=
LLCore
::
HttpOptions
::
ptr_t
(
new
LLCore
::
HttpOptions
(),
false
),
LLCore
::
HttpHeaders
::
ptr_t
headers
=
LLCore
::
HttpHeaders
::
ptr_t
(
new
LLCore
::
HttpHeaders
(),
false
));
LLSD
HttpCoroutineAdapter
::
postFileAndYield
(
LLCoros
::
self
&
self
,
LLCore
::
HttpRequest
::
ptr_t
request
,
const
std
::
string
&
url
,
LLUUID
assetId
,
LLAssetType
::
EType
assetType
,
LLCore
::
HttpHeaders
::
ptr_t
&
headers
)
{
return
postFileAndYield
(
self
,
request
,
url
,
assetId
,
assetType
,
LLCore
::
HttpOptions
::
ptr_t
(
new
LLCore
::
HttpOptions
(),
false
),
headers
);
}
/// Execute a Put transaction on the supplied URL and yield execution of
/// the coroutine until a result is available.
///
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment