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
|
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
extern crate geckoservo;
extern crate abridged_certs;
#[cfg(feature = "cubeb-remoting")]
extern crate audioipc2_client;
#[cfg(feature = "cubeb-remoting")]
extern crate audioipc2_server;
extern crate authrs_bridge;
#[cfg(feature = "bitsdownload")]
extern crate bitsdownload;
#[cfg(feature = "moz_places")]
extern crate bookmark_sync;
extern crate buildid_reader_ffi;
extern crate cascade_bloom_filter;
extern crate cert_storage;
extern crate chardetng_c;
extern crate cosec;
extern crate crypto_hash;
#[cfg(feature = "cubeb_coreaudio_rust")]
extern crate cubeb_coreaudio;
#[cfg(feature = "cubeb_pulse_rust")]
extern crate cubeb_pulse;
extern crate data_storage;
extern crate dom_fragmentdirectives;
extern crate encoding_glue;
extern crate fog_control;
extern crate gecko_profiler;
extern crate gkrust_utils;
extern crate http_sfv;
extern crate idna_glue;
extern crate ipdl_utils;
extern crate jog;
extern crate jsrust_shared;
extern crate kvstore;
extern crate mapped_hyph;
extern crate mozurl;
extern crate mp4parse_capi;
extern crate netwerk_helper;
extern crate nserror;
extern crate nsstring;
extern crate prefs_parser;
extern crate processtools;
#[cfg(feature = "gecko_profiler")]
extern crate profiler_helper;
extern crate rsdparsa_capi;
extern crate signature_cache;
extern crate static_prefs;
extern crate storage;
extern crate webrender_bindings;
extern crate xpcom;
extern crate audio_thread_priority;
#[cfg(not(target_os = "android"))]
extern crate webext_storage;
#[cfg(feature = "webrtc")]
extern crate mdns_service;
extern crate neqo_glue;
extern crate wgpu_bindings;
extern crate aa_stroke;
extern crate qcms;
extern crate wpf_gpu_raster;
extern crate unic_langid;
extern crate unic_langid_ffi;
extern crate fluent_langneg;
extern crate fluent_langneg_ffi;
extern crate fluent;
extern crate fluent_ffi;
extern crate oxilangtag_ffi;
extern crate unicode_bidi_ffi;
extern crate rure;
extern crate fluent_fallback;
extern crate l10nregistry_ffi;
extern crate localization_ffi;
extern crate ipcclientcerts;
extern crate trust_anchors;
#[cfg(any(
target_os = "android",
target_os = "macos",
target_os = "ios",
all(target_os = "windows", not(target_arch = "aarch64"))
))]
extern crate osclientcerts;
#[cfg(not(target_os = "android"))]
extern crate gkrust_uniffi_components;
#[cfg(all(feature = "uniffi_fixtures", not(target_os = "android")))]
extern crate uniffi_bindgen_gecko_js_test_fixtures;
#[cfg(not(target_os = "android"))]
extern crate viaduct;
extern crate gecko_logger;
extern crate gecko_tracing;
#[cfg(feature = "oxidized_breakpad")]
extern crate rust_minidump_writer_linux;
#[cfg(feature = "crashreporter")]
extern crate mozannotation_client;
#[cfg(feature = "crashreporter")]
extern crate crash_helper_client;
#[cfg(feature = "webmidi_midir_impl")]
extern crate midir_impl;
#[cfg(target_os = "windows")]
extern crate detect_win32k_conflicts;
#[cfg(target_os = "windows")]
extern crate widget_windows;
extern crate origin_trials_ffi;
extern crate dap_ffi;
extern crate data_encoding_ffi;
extern crate binary_http;
extern crate mls_gk;
extern crate oblivious_http;
extern crate mime_guess_ffi;
extern crate urlpattern;
extern crate urlpattern_glue;
extern crate uritemplate_glue;
#[cfg(feature = "libz-rs-sys")]
extern crate libz_rs_sys;
extern crate log;
use log::info;
use std::{ffi::CStr, os::raw::c_char};
use gecko_logger::GeckoLogger;
#[no_mangle]
pub extern "C" fn GkRust_Init() {
// Initialize logging.
let _ = GeckoLogger::init();
// Initialize tracing.
gecko_tracing::initialize_tracing();
}
#[no_mangle]
pub extern "C" fn GkRust_Shutdown() {}
/// Used to implement `nsIDebug2::RustPanic` for testing purposes.
#[no_mangle]
pub unsafe extern "C" fn intentional_panic(message: *const c_char) {
panic!("{}", CStr::from_ptr(message).to_string_lossy());
}
/// Used to implement `nsIDebug2::rustLog` for testing purposes.
#[no_mangle]
pub unsafe extern "C" fn debug_log(target: *const c_char, message: *const c_char) {
// NOTE: The `info!` log macro is used here because we have the `release_max_level_info` feature set.
info!(target: CStr::from_ptr(target).to_str().unwrap(), "{}", CStr::from_ptr(message).to_str().unwrap());
}
|