Skip to content

Instantly share code, notes, and snippets.

@drunderscore
Created February 15, 2022 21:21
Show Gist options
  • Save drunderscore/0589426686ab3387aee60e43de54964f to your computer and use it in GitHub Desktop.
Save drunderscore/0589426686ab3387aee60e43de54964f to your computer and use it in GitHub Desktop.
#include <LibCore/EventLoop.h>
#include <LibCore/Stream.h>
#include <LibHTTP/HttpRequest.h>
#include <LibHTTP/HttpsJob.h>
#include <LibMain/Main.h>
ErrorOr<int> serenity_main(Main::Arguments)
{
Core::EventLoop event_loop;
HTTP::HttpRequest request;
request.set_url("https://google.com");
request.set_method(HTTP::HttpRequest::Method::GET);
auto output_stream = TRY(Core::Stream::File::open("fuck.html"sv, Core::Stream::OpenMode::Write));
auto job = TRY(HTTP::HttpsJob::try_create(move(request), *output_stream));
job->on_finish = [](auto success) { outln("oh fuck yeah we finished, success {}", success); };
// Google IP address here
auto socket = TRY(Core::Stream::TCPSocket::connect("142.251.32.110", 443));
outln("ok gonna start");
job->start(*socket);
outln("exec ing");
return event_loop.exec();
}
@drunderscore
Copy link
Author

#0  0x00007ffff71c4d22 in raise () from /usr/lib/libc.so.6
#1  0x00007ffff71ae862 in abort () from /usr/lib/libc.so.6
#2  0x00007ffff71ae747 in __assert_fail_base.cold () from /usr/lib/libc.so.6
#3  0x00007ffff71bd616 in __assert_fail () from /usr/lib/libc.so.6
#4  0x00007ffff7fb3a68 in AK::Variant<bool, AK::Error>::get<bool> (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/Variant.h:364
#5  AK::Variant<bool, AK::Error>::get<bool> (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/Variant.h:364
#6  AK::ErrorOr<bool, AK::Error>::value (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/Error.h:79
#7  operator() (__closure=0x55555557d1c0) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibHTTP/Job.cpp:221
#8  0x00007ffff7fae9c4 in AK::Function<void ()>::operator()() const (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/StdLibExtras.h:48
#9  operator() (__closure=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibHTTP/Job.cpp:144
#10 AK::Function<void()>::CallableWrapper<HTTP::Job::register_on_ready_to_read(AK::Function<void()>)::<lambda()> >::call(void) (this=0x55555557d1a0) at /run/media/james/bruh/Scraper/Build/serenity/AK/Function.h:151
#11 0x00007ffff77a1939 in AK::Function<void ()>::operator()() const (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/StdLibExtras.h:48
#12 Core::Stream::TCPSocket::setup_notifier()::{lambda()#1}::operator()() const (__closure=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibCore/Stream.h:317
#13 AK::Function<void ()>::CallableWrapper<Core::Stream::TCPSocket::setup_notifier()::{lambda()#1}>::call() (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/Function.h:151
#14 0x00007ffff7793bc6 in AK::Function<void ()>::operator()() const (this=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/AK/StdLibExtras.h:48
#15 Core::Notifier::event (this=0x55555557bec0, event=...) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibCore/Notifier.cpp:47
#16 0x00007ffff779506a in Core::Object::dispatch_event (this=this@entry=0x55555557bec0, e=..., stay_within=stay_within@entry=0x0) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibCore/Object.cpp:219
#17 0x00007ffff7785094 in Core::EventLoop::pump (this=0x7fffffffd470, mode=<optimized out>) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibCore/EventLoop.cpp:471
#18 0x00007ffff7785a3a in Core::EventLoop::exec (this=0x7fffffffd470) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibCore/EventLoop.cpp:428
#19 0x000055555555890e in serenity_main () at /run/media/james/bruh/Scraper/scraper.cpp:65
#20 0x00007ffff7fc1191 in main (argc=<optimized out>, argv=0x7fffffffdad8) at /run/media/james/bruh/Scraper/Build/serenity/Userland/Libraries/LibMain/Main.cpp:23

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment