1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
|
/*
==============================================================================
This file is part of the JUCE framework.
Copyright (c) Raw Material Software Limited
JUCE is an open source framework subject to commercial or open source
licensing.
By downloading, installing, or using the JUCE framework, or combining the
JUCE framework with any other source code, object code, content or any other
copyrightable work, you agree to the terms of the JUCE End User Licence
Agreement, and all incorporated terms including the JUCE Privacy Policy and
the JUCE Website Terms of Service, as applicable, which will bind you. If you
do not agree to the terms of these agreements, we will not license the JUCE
framework to you, and you must discontinue the installation or download
process and cease use of the JUCE framework.
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
Or:
You may also use this code under the terms of the AGPLv3:
https://www.gnu.org/licenses/agpl-3.0.en.html
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
==============================================================================
*/
namespace juce
{
struct FallbackDownloadTask final : public URL::DownloadTask,
public Thread
{
FallbackDownloadTask (std::unique_ptr<FileOutputStream> outputStreamToUse,
size_t bufferSizeToUse,
std::unique_ptr<WebInputStream> streamToUse,
URL::DownloadTask::Listener* listenerToUse)
: Thread (SystemStats::getJUCEVersion() + ": DownloadTask thread"),
fileStream (std::move (outputStreamToUse)),
stream (std::move (streamToUse)),
bufferSize (bufferSizeToUse),
buffer (bufferSize),
listener (listenerToUse)
{
jassert (fileStream != nullptr);
jassert (stream != nullptr);
targetLocation = fileStream->getFile();
contentLength = stream->getTotalLength();
httpCode = stream->getStatusCode();
startThread();
}
~FallbackDownloadTask() override
{
signalThreadShouldExit();
stream->cancel();
waitForThreadToExit (-1);
}
//==============================================================================
void run() override
{
while (! (stream->isExhausted() || stream->isError() || threadShouldExit()))
{
if (listener != nullptr)
listener->progress (this, downloaded, contentLength);
auto max = (int) jmin ((int64) bufferSize, contentLength < 0 ? std::numeric_limits<int64>::max()
: static_cast<int64> (contentLength - downloaded));
auto actual = stream->read (buffer.get(), max);
if (actual < 0 || threadShouldExit() || stream->isError())
break;
if (! fileStream->write (buffer.get(), static_cast<size_t> (actual)))
{
error = true;
break;
}
downloaded += actual;
if (downloaded == contentLength)
break;
}
fileStream.reset();
if (threadShouldExit() || stream->isError())
error = true;
if (contentLength > 0 && downloaded < contentLength)
error = true;
finished = true;
if (listener != nullptr && ! threadShouldExit())
listener->finished (this, ! error);
}
//==============================================================================
std::unique_ptr<FileOutputStream> fileStream;
const std::unique_ptr<WebInputStream> stream;
const size_t bufferSize;
HeapBlock<char> buffer;
URL::DownloadTask::Listener* const listener;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (FallbackDownloadTask)
};
void URL::DownloadTaskListener::progress (DownloadTask*, int64, int64) {}
//==============================================================================
std::unique_ptr<URL::DownloadTask> URL::DownloadTask::createFallbackDownloader (const URL& urlToUse,
const File& targetFileToUse,
const DownloadTaskOptions& options)
{
const size_t bufferSize = 0x8000;
targetFileToUse.deleteFile();
if (auto outputStream = targetFileToUse.createOutputStream (bufferSize))
{
auto stream = std::make_unique<WebInputStream> (urlToUse, options.usePost);
stream->withExtraHeaders (options.extraHeaders);
if (stream->connect (nullptr))
return std::make_unique<FallbackDownloadTask> (std::move (outputStream),
bufferSize,
std::move (stream),
options.listener);
}
return nullptr;
}
URL::DownloadTask::DownloadTask() {}
URL::DownloadTask::~DownloadTask() {}
//==============================================================================
URL::URL() {}
URL::URL (const String& u) : url (u)
{
init();
}
URL::URL (File localFile)
{
if (localFile == File())
return;
#if JUCE_WINDOWS
bool isUncPath = localFile.getFullPathName().startsWith ("\\\\");
#endif
while (! localFile.isRoot())
{
url = "/" + addEscapeChars (localFile.getFileName(), false) + url;
localFile = localFile.getParentDirectory();
}
url = addEscapeChars (localFile.getFileName(), false) + url;
#if JUCE_WINDOWS
if (isUncPath)
{
url = url.fromFirstOccurrenceOf ("/", false, false);
}
else
#endif
{
if (! url.startsWithChar (L'/'))
url = "/" + url;
}
url = "file://" + url;
jassert (isWellFormed());
}
void URL::init()
{
auto i = url.indexOfChar ('#');
if (i >= 0)
{
anchor = removeEscapeChars (url.substring (i + 1));
url = url.upToFirstOccurrenceOf ("#", false, false);
}
i = url.indexOfChar ('?');
if (i >= 0)
{
do
{
auto nextAmp = url.indexOfChar (i + 1, '&');
auto equalsPos = url.indexOfChar (i + 1, '=');
if (nextAmp < 0)
{
addParameter (removeEscapeChars (equalsPos < 0 ? url.substring (i + 1) : url.substring (i + 1, equalsPos)),
equalsPos < 0 ? String() : removeEscapeChars (url.substring (equalsPos + 1)));
}
else if (nextAmp > 0 && equalsPos < nextAmp)
{
addParameter (removeEscapeChars (equalsPos < 0 ? url.substring (i + 1, nextAmp) : url.substring (i + 1, equalsPos)),
equalsPos < 0 ? String() : removeEscapeChars (url.substring (equalsPos + 1, nextAmp)));
}
i = nextAmp;
}
while (i >= 0);
url = url.upToFirstOccurrenceOf ("?", false, false);
}
}
URL::URL (const String& u, int) : url (u) {}
URL URL::createWithoutParsing (const String& u)
{
return URL (u, 0);
}
bool URL::operator== (const URL& other) const
{
return url == other.url
&& postData == other.postData
&& parameterNames == other.parameterNames
&& parameterValues == other.parameterValues
&& filesToUpload == other.filesToUpload;
}
bool URL::operator!= (const URL& other) const
{
return ! operator== (other);
}
namespace URLHelpers
{
static String getMangledParameters (const URL& url)
{
jassert (url.getParameterNames().size() == url.getParameterValues().size());
String p;
for (int i = 0; i < url.getParameterNames().size(); ++i)
{
if (i > 0)
p << '&';
auto val = url.getParameterValues()[i];
p << URL::addEscapeChars (url.getParameterNames()[i], true);
if (val.isNotEmpty())
p << '=' << URL::addEscapeChars (val, true);
}
return p;
}
static int findEndOfScheme (const String& url)
{
int i = 0;
while (CharacterFunctions::isLetterOrDigit (url[i])
|| url[i] == '+' || url[i] == '-' || url[i] == '.')
++i;
return url.substring (i).startsWith ("://") ? i + 1 : 0;
}
static int findStartOfNetLocation (const String& url)
{
int start = findEndOfScheme (url);
while (url[start] == '/')
++start;
return start;
}
static int findStartOfPath (const String& url)
{
return url.indexOfChar (findStartOfNetLocation (url), '/') + 1;
}
static void concatenatePaths (String& path, const String& suffix)
{
if (! path.endsWithChar ('/'))
path << '/';
if (suffix.startsWithChar ('/'))
path += suffix.substring (1);
else
path += suffix;
}
static String removeLastPathSection (const String& url)
{
auto startOfPath = findStartOfPath (url);
auto lastSlash = url.lastIndexOfChar ('/');
if (lastSlash > startOfPath && lastSlash == url.length() - 1)
return removeLastPathSection (url.dropLastCharacters (1));
if (lastSlash < 0)
return url;
return url.substring (0, std::max (startOfPath, lastSlash));
}
}
void URL::addParameter (const String& name, const String& value)
{
parameterNames.add (name);
parameterValues.add (value);
}
String URL::toString (bool includeGetParameters) const
{
if (includeGetParameters)
return url + getQueryString();
return url;
}
bool URL::isEmpty() const noexcept
{
return url.isEmpty();
}
bool URL::isWellFormed() const
{
//xxx TODO
return url.isNotEmpty();
}
String URL::getDomain() const
{
return getDomainInternal (false);
}
String URL::getSubPath (bool includeGetParameters) const
{
auto startOfPath = URLHelpers::findStartOfPath (url);
auto subPath = startOfPath <= 0 ? String()
: url.substring (startOfPath);
if (includeGetParameters)
subPath += getQueryString();
return subPath;
}
String URL::getQueryString() const
{
String result;
if (parameterNames.size() > 0)
result += "?" + URLHelpers::getMangledParameters (*this);
if (anchor.isNotEmpty())
result += getAnchorString();
return result;
}
String URL::getAnchorString() const
{
if (anchor.isNotEmpty())
return "#" + URL::addEscapeChars (anchor, true);
return {};
}
String URL::getScheme() const
{
return url.substring (0, URLHelpers::findEndOfScheme (url) - 1);
}
#if ! JUCE_ANDROID
bool URL::isLocalFile() const
{
return getScheme() == "file";
}
File URL::getLocalFile() const
{
return fileFromFileSchemeURL (*this);
}
String URL::getFileName() const
{
return toString (false).fromLastOccurrenceOf ("/", false, true);
}
#endif
URL::ParameterHandling URL::toHandling (bool usePostData)
{
return usePostData ? ParameterHandling::inPostData : ParameterHandling::inAddress;
}
File URL::fileFromFileSchemeURL (const URL& fileURL)
{
if (! fileURL.isLocalFile())
{
jassertfalse;
return {};
}
auto path = removeEscapeChars (fileURL.getDomainInternal (true)).replace ("+", "%2B");
#if JUCE_WINDOWS
bool isUncPath = (! fileURL.url.startsWith ("file:///"));
#else
path = File::getSeparatorString() + path;
#endif
auto urlElements = StringArray::fromTokens (fileURL.getSubPath(), "/", "");
for (auto urlElement : urlElements)
path += File::getSeparatorString() + removeEscapeChars (urlElement.replace ("+", "%2B"));
#if JUCE_WINDOWS
if (isUncPath)
path = "\\\\" + path;
#endif
return path;
}
int URL::getPort() const
{
auto colonPos = url.indexOfChar (URLHelpers::findStartOfNetLocation (url), ':');
return colonPos > 0 ? url.substring (colonPos + 1).getIntValue() : 0;
}
String URL::getOrigin() const
{
const auto schemeAndDomain = getScheme() + "://" + getDomain();
const auto colonPos = url.indexOfChar (URLHelpers::findStartOfNetLocation (url), ':');
if (colonPos > 0)
return schemeAndDomain + ":" + String { getPort() };
return schemeAndDomain;
}
URL URL::withNewDomainAndPath (const String& newURL) const
{
URL u (*this);
u.url = newURL;
return u;
}
URL URL::withNewSubPath (const String& newPath) const
{
URL u (*this);
auto startOfPath = URLHelpers::findStartOfPath (url);
if (startOfPath > 0)
u.url = url.substring (0, startOfPath);
URLHelpers::concatenatePaths (u.url, newPath);
return u;
}
URL URL::getParentURL() const
{
URL u (*this);
u.url = URLHelpers::removeLastPathSection (u.url);
return u;
}
URL URL::getChildURL (const String& subPath) const
{
URL u (*this);
URLHelpers::concatenatePaths (u.url, subPath);
return u;
}
bool URL::hasBodyDataToSend() const
{
return filesToUpload.size() > 0 || ! postData.isEmpty();
}
void URL::createHeadersAndPostData (String& headers,
MemoryBlock& postDataToWrite,
bool addParametersToBody) const
{
MemoryOutputStream data (postDataToWrite, false);
if (filesToUpload.size() > 0)
{
// (this doesn't currently support mixing custom post-data with uploads..)
jassert (postData.isEmpty());
auto boundary = String::toHexString (Random::getSystemRandom().nextInt64());
headers << "Content-Type: multipart/form-data; boundary=" << boundary << "\r\n";
data << "--" << boundary;
for (int i = 0; i < parameterNames.size(); ++i)
{
data << "\r\nContent-Disposition: form-data; name=\"" << parameterNames[i]
<< "\"\r\n\r\n" << parameterValues[i]
<< "\r\n--" << boundary;
}
for (auto* f : filesToUpload)
{
data << "\r\nContent-Disposition: form-data; name=\"" << f->parameterName
<< "\"; filename=\"" << f->filename << "\"\r\n";
if (f->mimeType.isNotEmpty())
data << "Content-Type: " << f->mimeType << "\r\n";
data << "Content-Transfer-Encoding: binary\r\n\r\n";
if (f->data != nullptr)
data << *f->data;
else
data << f->file;
data << "\r\n--" << boundary;
}
data << "--\r\n";
}
else
{
if (addParametersToBody)
data << URLHelpers::getMangledParameters (*this);
data << postData;
// if the user-supplied headers didn't contain a content-type, add one now..
if (! headers.containsIgnoreCase ("Content-Type"))
headers << "Content-Type: application/x-www-form-urlencoded\r\n";
headers << "Content-length: " << (int) data.getDataSize() << "\r\n";
}
}
//==============================================================================
bool URL::isProbablyAWebsiteURL (const String& possibleURL)
{
for (auto* protocol : { "http:", "https:", "ftp:" })
if (possibleURL.startsWithIgnoreCase (protocol))
return true;
if (possibleURL.containsChar ('@') || possibleURL.containsChar (' '))
return false;
auto topLevelDomain = possibleURL.upToFirstOccurrenceOf ("/", false, false)
.fromLastOccurrenceOf (".", false, false);
return topLevelDomain.isNotEmpty() && topLevelDomain.length() <= 3;
}
bool URL::isProbablyAnEmailAddress (const String& possibleEmailAddress)
{
auto atSign = possibleEmailAddress.indexOfChar ('@');
return atSign > 0
&& possibleEmailAddress.lastIndexOfChar ('.') > (atSign + 1)
&& ! possibleEmailAddress.endsWithChar ('.');
}
String URL::getDomainInternal (bool ignorePort) const
{
auto start = URLHelpers::findStartOfNetLocation (url);
auto end1 = url.indexOfChar (start, '/');
auto end2 = ignorePort ? -1 : url.indexOfChar (start, ':');
auto end = (end1 < 0 && end2 < 0) ? std::numeric_limits<int>::max()
: ((end1 < 0 || end2 < 0) ? jmax (end1, end2)
: jmin (end1, end2));
return url.substring (start, end);
}
#if JUCE_IOS
URL::Bookmark::Bookmark (void* bookmarkToUse) : data (bookmarkToUse)
{
}
URL::Bookmark::~Bookmark()
{
[(NSData*) data release];
}
void setURLBookmark (URL& u, void* bookmark)
{
u.bookmark = new URL::Bookmark (bookmark);
}
void* getURLBookmark (URL& u)
{
if (u.bookmark.get() == nullptr)
return nullptr;
return u.bookmark.get()->data;
}
template <typename Stream> struct iOSFileStreamWrapperFlush { static void flush (Stream*) {} };
template <> struct iOSFileStreamWrapperFlush<FileOutputStream> { static void flush (OutputStream* o) { o->flush(); } };
template <typename Stream>
class iOSFileStreamWrapper final : public Stream
{
public:
iOSFileStreamWrapper (URL& urlToUse)
: Stream (getLocalFileAccess (urlToUse)),
url (urlToUse)
{}
~iOSFileStreamWrapper()
{
iOSFileStreamWrapperFlush<Stream>::flush (this);
if (NSData* bookmark = (NSData*) getURLBookmark (url))
{
BOOL isBookmarkStale = false;
NSError* error = nil;
auto nsURL = [NSURL URLByResolvingBookmarkData: bookmark
options: 0
relativeToURL: nil
bookmarkDataIsStale: &isBookmarkStale
error: &error];
if (error == nil)
{
if (isBookmarkStale)
updateStaleBookmark (nsURL, url);
[nsURL stopAccessingSecurityScopedResource];
}
else
{
[[maybe_unused]] auto desc = [error localizedDescription];
jassertfalse;
}
}
}
private:
URL url;
bool securityAccessSucceeded = false;
File getLocalFileAccess (URL& urlToUse)
{
if (NSData* bookmark = (NSData*) getURLBookmark (urlToUse))
{
BOOL isBookmarkStale = false;
NSError* error = nil;
auto nsURL = [NSURL URLByResolvingBookmarkData: bookmark
options: 0
relativeToURL: nil
bookmarkDataIsStale: &isBookmarkStale
error: &error];
if (error == nil)
{
securityAccessSucceeded = [nsURL startAccessingSecurityScopedResource];
if (isBookmarkStale)
updateStaleBookmark (nsURL, urlToUse);
return urlToUse.getLocalFile();
}
[[maybe_unused]] auto desc = [error localizedDescription];
jassertfalse;
}
return urlToUse.getLocalFile();
}
void updateStaleBookmark (NSURL* nsURL, URL& juceUrl)
{
NSError* error = nil;
NSData* bookmark = [nsURL bookmarkDataWithOptions: NSURLBookmarkCreationSuitableForBookmarkFile
includingResourceValuesForKeys: nil
relativeToURL: nil
error: &error];
if (error == nil)
setURLBookmark (juceUrl, (void*) bookmark);
else
jassertfalse;
}
};
#endif
//==============================================================================
template <typename Member, typename Item>
static URL::InputStreamOptions with (URL::InputStreamOptions options, Member&& member, Item&& item)
{
options.*member = std::forward<Item> (item);
return options;
}
URL::InputStreamOptions::InputStreamOptions (ParameterHandling handling) : parameterHandling (handling) {}
URL::InputStreamOptions URL::InputStreamOptions::withProgressCallback (std::function<bool (int, int)> cb) const
{
return with (*this, &InputStreamOptions::progressCallback, std::move (cb));
}
URL::InputStreamOptions URL::InputStreamOptions::withExtraHeaders (const String& headers) const
{
return with (*this, &InputStreamOptions::extraHeaders, headers);
}
URL::InputStreamOptions URL::InputStreamOptions::withConnectionTimeoutMs (int timeout) const
{
return with (*this, &InputStreamOptions::connectionTimeOutMs, timeout);
}
URL::InputStreamOptions URL::InputStreamOptions::withResponseHeaders (StringPairArray* headers) const
{
return with (*this, &InputStreamOptions::responseHeaders, headers);
}
URL::InputStreamOptions URL::InputStreamOptions::withStatusCode (int* status) const
{
return with (*this, &InputStreamOptions::statusCode, status);
}
URL::InputStreamOptions URL::InputStreamOptions::withNumRedirectsToFollow (int numRedirects) const
{
return with (*this, &InputStreamOptions::numRedirectsToFollow, numRedirects);
}
URL::InputStreamOptions URL::InputStreamOptions::withHttpRequestCmd (const String& cmd) const
{
return with (*this, &InputStreamOptions::httpRequestCmd, cmd);
}
//==============================================================================
std::unique_ptr<InputStream> URL::createInputStream (const InputStreamOptions& options) const
{
if (isLocalFile())
{
#if JUCE_IOS
// We may need to refresh the embedded bookmark.
return std::make_unique<iOSFileStreamWrapper<FileInputStream>> (const_cast<URL&> (*this));
#else
return getLocalFile().createInputStream();
#endif
}
auto webInputStream = [&]
{
const auto usePost = options.getParameterHandling() == ParameterHandling::inPostData;
auto stream = std::make_unique<WebInputStream> (*this, usePost);
auto extraHeaders = options.getExtraHeaders();
if (extraHeaders.isNotEmpty())
stream->withExtraHeaders (extraHeaders);
auto timeout = options.getConnectionTimeoutMs();
if (timeout != 0)
stream->withConnectionTimeout (timeout);
auto requestCmd = options.getHttpRequestCmd();
if (requestCmd.isNotEmpty())
stream->withCustomRequestCommand (requestCmd);
stream->withNumRedirectsToFollow (options.getNumRedirectsToFollow());
return stream;
}();
struct ProgressCallbackCaller final : public WebInputStream::Listener
{
ProgressCallbackCaller (std::function<bool (int, int)> progressCallbackToUse)
: callback (std::move (progressCallbackToUse))
{
}
bool postDataSendProgress (WebInputStream&, int bytesSent, int totalBytes) override
{
return callback (bytesSent, totalBytes);
}
std::function<bool (int, int)> callback;
};
auto callbackCaller = [&options]() -> std::unique_ptr<ProgressCallbackCaller>
{
if (auto progressCallback = options.getProgressCallback())
return std::make_unique<ProgressCallbackCaller> (progressCallback);
return {};
}();
auto success = webInputStream->connect (callbackCaller.get());
if (auto* status = options.getStatusCode())
*status = webInputStream->getStatusCode();
if (auto* responseHeaders = options.getResponseHeaders())
*responseHeaders = webInputStream->getResponseHeaders();
if (! success || webInputStream->isError())
return nullptr;
// std::move() needed here for older compilers
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wredundant-move")
return std::move (webInputStream);
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
}
std::unique_ptr<OutputStream> URL::createOutputStream() const
{
#if JUCE_ANDROID
if (auto stream = AndroidDocument::fromDocument (*this).createOutputStream())
return stream;
#endif
if (isLocalFile())
{
#if JUCE_IOS
// We may need to refresh the embedded bookmark.
return std::make_unique<iOSFileStreamWrapper<FileOutputStream>> (const_cast<URL&> (*this));
#else
return std::make_unique<FileOutputStream> (getLocalFile());
#endif
}
return nullptr;
}
//==============================================================================
bool URL::readEntireBinaryStream (MemoryBlock& destData, bool usePostCommand) const
{
const std::unique_ptr<InputStream> in (isLocalFile() ? getLocalFile().createInputStream()
: createInputStream (InputStreamOptions (toHandling (usePostCommand))));
if (in != nullptr)
{
in->readIntoMemoryBlock (destData);
return true;
}
return false;
}
String URL::readEntireTextStream (bool usePostCommand) const
{
const std::unique_ptr<InputStream> in (isLocalFile() ? getLocalFile().createInputStream()
: createInputStream (InputStreamOptions (toHandling (usePostCommand))));
if (in != nullptr)
return in->readEntireStreamAsString();
return {};
}
std::unique_ptr<XmlElement> URL::readEntireXmlStream (bool usePostCommand) const
{
return parseXML (readEntireTextStream (usePostCommand));
}
//==============================================================================
URL URL::withParameter (const String& parameterName,
const String& parameterValue) const
{
auto u = *this;
u.addParameter (parameterName, parameterValue);
return u;
}
URL URL::withParameters (const StringPairArray& parametersToAdd) const
{
auto u = *this;
for (int i = 0; i < parametersToAdd.size(); ++i)
u.addParameter (parametersToAdd.getAllKeys()[i],
parametersToAdd.getAllValues()[i]);
return u;
}
URL URL::withAnchor (const String& anchorToAdd) const
{
auto u = *this;
u.anchor = anchorToAdd;
return u;
}
URL URL::withPOSTData (const String& newPostData) const
{
return withPOSTData (MemoryBlock (newPostData.toRawUTF8(), newPostData.getNumBytesAsUTF8()));
}
URL URL::withPOSTData (const MemoryBlock& newPostData) const
{
auto u = *this;
u.postData = newPostData;
return u;
}
URL::Upload::Upload (const String& param, const String& name,
const String& mime, const File& f, MemoryBlock* mb)
: parameterName (param), filename (name), mimeType (mime), file (f), data (mb)
{
jassert (mimeType.isNotEmpty()); // You need to supply a mime type!
}
URL URL::withUpload (Upload* const f) const
{
auto u = *this;
for (int i = u.filesToUpload.size(); --i >= 0;)
if (u.filesToUpload.getObjectPointerUnchecked (i)->parameterName == f->parameterName)
u.filesToUpload.remove (i);
u.filesToUpload.add (f);
return u;
}
URL URL::withFileToUpload (const String& parameterName, const File& fileToUpload,
const String& mimeType) const
{
return withUpload (new Upload (parameterName, fileToUpload.getFileName(),
mimeType, fileToUpload, nullptr));
}
URL URL::withDataToUpload (const String& parameterName, const String& filename,
const MemoryBlock& fileContentToUpload, const String& mimeType) const
{
return withUpload (new Upload (parameterName, filename, mimeType, File(),
new MemoryBlock (fileContentToUpload)));
}
//==============================================================================
String URL::removeEscapeChars (const String& s)
{
auto result = s.replaceCharacter ('+', ' ');
if (! result.containsChar ('%'))
return result;
// We need to operate on the string as raw UTF8 chars, and then recombine them into unicode
// after all the replacements have been made, so that multi-byte chars are handled.
Array<char> utf8 (result.toRawUTF8(), (int) result.getNumBytesAsUTF8());
for (int i = 0; i < utf8.size(); ++i)
{
if (utf8.getUnchecked (i) == '%')
{
auto hexDigit1 = CharacterFunctions::getHexDigitValue ((juce_wchar) (uint8) utf8 [i + 1]);
auto hexDigit2 = CharacterFunctions::getHexDigitValue ((juce_wchar) (uint8) utf8 [i + 2]);
if (hexDigit1 >= 0 && hexDigit2 >= 0)
{
utf8.set (i, (char) ((hexDigit1 << 4) + hexDigit2));
utf8.removeRange (i + 1, 2);
}
}
}
return String::fromUTF8 (utf8.getRawDataPointer(), utf8.size());
}
String URL::addEscapeChars (const String& s, bool isParameter, bool roundBracketsAreLegal)
{
String legalChars (isParameter ? "_-.~"
: ",$_-.*!'");
if (roundBracketsAreLegal)
legalChars += "()";
Array<char> utf8 (s.toRawUTF8(), (int) s.getNumBytesAsUTF8());
for (int i = 0; i < utf8.size(); ++i)
{
auto c = utf8.getUnchecked (i);
if (! (CharacterFunctions::isLetterOrDigit (c)
|| legalChars.containsChar ((juce_wchar) c)))
{
utf8.set (i, '%');
utf8.insert (++i, "0123456789ABCDEF" [((uint8) c) >> 4]);
utf8.insert (++i, "0123456789ABCDEF" [c & 15]);
}
}
return String::fromUTF8 (utf8.getRawDataPointer(), utf8.size());
}
//==============================================================================
bool URL::launchInDefaultBrowser() const
{
auto u = toString (true);
if (u.containsChar ('@') && ! u.containsChar (':'))
u = "mailto:" + u;
return Process::openDocument (u, {});
}
//==============================================================================
std::unique_ptr<InputStream> URL::createInputStream (bool usePostCommand,
OpenStreamProgressCallback* cb,
void* context,
String headers,
int timeOutMs,
StringPairArray* responseHeaders,
int* statusCode,
int numRedirectsToFollow,
String httpRequestCmd) const
{
std::function<bool (int, int)> callback;
if (cb != nullptr)
callback = [context, cb] (int sent, int total) { return cb (context, sent, total); };
return createInputStream (InputStreamOptions (toHandling (usePostCommand))
.withProgressCallback (std::move (callback))
.withExtraHeaders (headers)
.withConnectionTimeoutMs (timeOutMs)
.withResponseHeaders (responseHeaders)
.withStatusCode (statusCode)
.withNumRedirectsToFollow (numRedirectsToFollow)
.withHttpRequestCmd (httpRequestCmd));
}
std::unique_ptr<URL::DownloadTask> URL::downloadToFile (const File& targetLocation,
String extraHeaders,
DownloadTask::Listener* listener,
bool usePostCommand)
{
auto options = DownloadTaskOptions().withExtraHeaders (std::move (extraHeaders))
.withListener (listener)
.withUsePost (usePostCommand);
return downloadToFile (targetLocation, std::move (options));
}
} // namespace juce
|