mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-05 15:59:45 +00:00
817c7746be
This is a rebase of #17325 with `[replace]` entries removed, a bunch more dependencies updated, and some more compile fixes. Original work by @Eijebong, thanks a lot! Source-Repo: https://github.com/servo/servo Source-Revision: 66c130d55aa0d7af1104c00e93a5bf950f23a383 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 323361580a540d8b296f6f7d77f20d46cbdc5c73
50 lines
2.0 KiB
Rust
50 lines
2.0 KiB
Rust
/* 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/. */
|
|
|
|
use cssparser::{Parser, SourcePosition};
|
|
use ipc_channel::ipc::IpcSender;
|
|
use log;
|
|
use msg::constellation_msg::PipelineId;
|
|
use script_traits::ConstellationControlMsg;
|
|
use servo_url::ServoUrl;
|
|
use std::sync::{Mutex, Arc};
|
|
use style::error_reporting::{ParseErrorReporter, ContextualParseError};
|
|
|
|
#[derive(HeapSizeOf, Clone)]
|
|
pub struct CSSErrorReporter {
|
|
pub pipelineid: PipelineId,
|
|
// Arc+Mutex combo is necessary to make this struct Sync,
|
|
// which is necessary to fulfill the bounds required by the
|
|
// uses of the ParseErrorReporter trait.
|
|
#[ignore_heap_size_of = "Arc is defined in libstd"]
|
|
pub script_chan: Arc<Mutex<IpcSender<ConstellationControlMsg>>>,
|
|
}
|
|
|
|
impl ParseErrorReporter for CSSErrorReporter {
|
|
fn report_error<'a>(&self,
|
|
input: &mut Parser,
|
|
position: SourcePosition,
|
|
error: ContextualParseError<'a>,
|
|
url: &ServoUrl,
|
|
line_number_offset: u64) {
|
|
let location = input.source_location(position);
|
|
let line_offset = location.line + line_number_offset as u32;
|
|
if log_enabled!(log::LogLevel::Info) {
|
|
info!("Url:\t{}\n{}:{} {}",
|
|
url.as_str(),
|
|
line_offset,
|
|
location.column,
|
|
error.to_string())
|
|
}
|
|
|
|
//TODO: report a real filename
|
|
let _ = self.script_chan.lock().unwrap().send(
|
|
ConstellationControlMsg::ReportCSSError(self.pipelineid,
|
|
"".to_owned(),
|
|
location.line,
|
|
location.column,
|
|
error.to_string()));
|
|
}
|
|
}
|