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
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#include "ChangeStyleTransaction.h"
#include "EditorDOMAPIWrapper.h"
#include "HTMLEditor.h"
#include "HTMLEditUtils.h"
#include "mozilla/Logging.h"
#include "mozilla/ToString.h"
#include "mozilla/dom/Element.h" // for Element
#include "nsAString.h" // for nsAString::Append, etc.
#include "nsCRT.h" // for nsCRT::IsAsciiSpace
#include "nsDebug.h" // for NS_WARNING, etc.
#include "nsError.h" // for NS_ERROR_NULL_POINTER, etc.
#include "nsGkAtoms.h" // for nsGkAtoms, etc.
#include "nsICSSDeclaration.h" // for nsICSSDeclaration.
#include "nsLiteralString.h" // for NS_LITERAL_STRING, etc.
#include "nsReadableUtils.h" // for ToNewUnicode
#include "nsString.h" // for nsAutoString, nsString, etc.
#include "nsStyledElement.h" // for nsStyledElement.
#include "nsUnicharUtils.h" // for nsCaseInsensitiveStringComparator
namespace mozilla {
using namespace dom;
// static
already_AddRefed<ChangeStyleTransaction> ChangeStyleTransaction::Create(
HTMLEditor& aHTMLEditor, nsStyledElement& aStyledElement, nsAtom& aProperty,
const nsAString& aValue) {
RefPtr<ChangeStyleTransaction> transaction = new ChangeStyleTransaction(
aHTMLEditor, aStyledElement, aProperty, aValue, false);
return transaction.forget();
}
// static
already_AddRefed<ChangeStyleTransaction> ChangeStyleTransaction::CreateToRemove(
HTMLEditor& aHTMLEditor, nsStyledElement& aStyledElement, nsAtom& aProperty,
const nsAString& aValue) {
RefPtr<ChangeStyleTransaction> transaction = new ChangeStyleTransaction(
aHTMLEditor, aStyledElement, aProperty, aValue, true);
return transaction.forget();
}
ChangeStyleTransaction::ChangeStyleTransaction(HTMLEditor& aHTMLEditor,
nsStyledElement& aStyledElement,
nsAtom& aProperty,
const nsAString& aValue,
bool aRemove)
: EditTransactionBase(),
mHTMLEditor(&aHTMLEditor),
mStyledElement(&aStyledElement),
mProperty(&aProperty),
mRemoveProperty(aRemove),
mUndoAttributeWasSet(false),
mRedoAttributeWasSet(false) {
CopyUTF16toUTF8(aValue, mValue);
}
std::ostream& operator<<(std::ostream& aStream,
const ChangeStyleTransaction& aTransaction) {
aStream << "{ mStyledElement=" << aTransaction.mStyledElement.get();
if (aTransaction.mStyledElement) {
aStream << " (" << *aTransaction.mStyledElement << ")";
}
aStream << ", mProperty=" << nsAtomCString(aTransaction.mProperty).get()
<< ", mValue=\"" << aTransaction.mValue.get() << "\", mUndoValue=\""
<< aTransaction.mUndoValue.get()
<< "\", mRedoValue=" << aTransaction.mRedoValue.get()
<< ", mRemoveProperty="
<< (aTransaction.mRemoveProperty ? "true" : "false")
<< ", mUndoAttributeWasSet="
<< (aTransaction.mUndoAttributeWasSet ? "true" : "false")
<< ", mRedoAttributeWasSet="
<< (aTransaction.mRedoAttributeWasSet ? "true" : "false")
<< ", mHTMLEditor=" << aTransaction.mHTMLEditor.get() << " }";
return aStream;
}
#define kNullCh ('\0')
NS_IMPL_CYCLE_COLLECTION_INHERITED(ChangeStyleTransaction, EditTransactionBase,
mHTMLEditor, mStyledElement)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(ChangeStyleTransaction)
NS_INTERFACE_MAP_END_INHERITING(EditTransactionBase)
NS_IMPL_ADDREF_INHERITED(ChangeStyleTransaction, EditTransactionBase)
NS_IMPL_RELEASE_INHERITED(ChangeStyleTransaction, EditTransactionBase)
// Answers true if aValue is in the string list of white-space separated values
// aValueList.
bool ChangeStyleTransaction::ValueIncludes(const nsACString& aValueList,
const nsACString& aValue) {
nsAutoCString valueList(aValueList);
bool result = false;
// put an extra null at the end
valueList.Append(kNullCh);
char* start = valueList.BeginWriting();
char* end = start;
while (kNullCh != *start) {
while (kNullCh != *start && nsCRT::IsAsciiSpace(*start)) {
// skip leading space
start++;
}
end = start;
while (kNullCh != *end && !nsCRT::IsAsciiSpace(*end)) {
// look for space or end
end++;
}
// end string here
*end = kNullCh;
if (start < end) {
if (aValue.Equals(nsDependentCString(start),
nsCaseInsensitiveCStringComparator)) {
result = true;
break;
}
}
start = ++end;
}
return result;
}
NS_IMETHODIMP ChangeStyleTransaction::DoTransaction() {
MOZ_LOG(GetLogModule(), LogLevel::Info,
("%p ChangeStyleTransaction::%s this=%s", this, __FUNCTION__,
ToString(*this).c_str()));
MOZ_ASSERT(mHTMLEditor);
if (NS_WARN_IF(!mStyledElement)) {
return NS_ERROR_NOT_AVAILABLE;
}
const OwningNonNull<HTMLEditor> htmlEditor = *mHTMLEditor;
const OwningNonNull<nsStyledElement> styledElement = *mStyledElement;
const nsCOMPtr<nsDOMCSSDeclaration> cssDecl = styledElement->Style();
// FIXME(bug 1606994): Using atoms forces a string copy here which is not
// great.
nsAutoCString propertyNameString;
mProperty->ToUTF8String(propertyNameString);
mUndoAttributeWasSet = mStyledElement->HasAttr(nsGkAtoms::style);
nsAutoCString values;
cssDecl->GetPropertyValue(propertyNameString, values);
mUndoValue.Assign(values);
if (mRemoveProperty) {
if (mProperty == nsGkAtoms::text_decoration) {
BuildTextDecorationValueToRemove(values, mValue, values);
if (values.IsEmpty()) {
nsresult rv =
AutoCSSDeclarationAPIWrapper(htmlEditor, styledElement, cssDecl)
.RemoveProperty(propertyNameString);
if (NS_FAILED(rv)) {
NS_WARNING("AutoCSSDeclarationAPIWrapper::RemoveProperty() failed");
return rv;
}
} else {
nsAutoCString priority;
cssDecl->GetPropertyPriority(propertyNameString, priority);
nsresult rv =
AutoCSSDeclarationAPIWrapper(htmlEditor, styledElement, cssDecl)
.SetProperty(propertyNameString, values, priority);
if (NS_FAILED(rv)) {
NS_WARNING("AutoCSSDeclarationAPIWrapper::SetProperty() failed");
return rv;
}
}
} else {
nsresult rv =
AutoCSSDeclarationAPIWrapper(htmlEditor, styledElement, cssDecl)
.RemoveProperty(propertyNameString);
if (NS_FAILED(rv)) {
NS_WARNING("AutoCSSDeclarationAPIWrapper::RemoveProperty() failed");
return rv;
}
}
} else {
nsAutoCString priority;
cssDecl->GetPropertyPriority(propertyNameString, priority);
if (mProperty == nsGkAtoms::text_decoration) {
BuildTextDecorationValueToSet(values, mValue, values);
} else {
values.Assign(mValue);
}
nsresult rv =
AutoCSSDeclarationAPIWrapper(htmlEditor, styledElement, cssDecl)
.SetProperty(propertyNameString, values, priority);
if (NS_FAILED(rv)) {
NS_WARNING("AutoCSSDeclarationAPIWrapper::SetProperty() failed");
return rv;
}
}
// Let's be sure we don't keep an empty style attribute
uint32_t length = cssDecl->Length();
if (!length) {
AutoElementAttrAPIWrapper elementWrapper(htmlEditor, styledElement);
nsresult rv = elementWrapper.UnsetAttr(nsGkAtoms::style, true);
if (NS_FAILED(rv)) {
NS_WARNING("AutoElementAttrAPIWrapper::UnsetAttr() failed");
return rv;
}
NS_WARNING_ASSERTION(
elementWrapper.IsExpectedResult(EmptyString()),
"Removing style attribute caused other mutations, but ignored");
} else {
mRedoAttributeWasSet = true;
}
cssDecl->GetPropertyValue(propertyNameString, mRedoValue);
return NS_OK;
}
nsresult ChangeStyleTransaction::SetStyle(bool aAttributeWasSet,
nsACString& aValue) {
if (NS_WARN_IF(!mHTMLEditor) || NS_WARN_IF(!mStyledElement)) {
return NS_ERROR_NOT_AVAILABLE;
}
const OwningNonNull<HTMLEditor> htmlEditor = *mHTMLEditor;
const OwningNonNull<nsStyledElement> styledElement = *mStyledElement;
if (aAttributeWasSet) {
// The style attribute was not empty, let's recreate the declaration
nsAutoCString propertyNameString;
mProperty->ToUTF8String(propertyNameString);
const nsCOMPtr<nsDOMCSSDeclaration> cssDecl = styledElement->Style();
ErrorResult error;
if (aValue.IsEmpty()) {
// An empty value means we have to remove the property
nsresult rv =
AutoCSSDeclarationAPIWrapper(htmlEditor, styledElement, cssDecl)
.RemoveProperty(propertyNameString);
if (NS_FAILED(rv)) {
NS_WARNING("AutoCSSDeclarationAPIWrapper::RemoveProperty() failed");
return rv;
}
}
// Let's recreate the declaration as it was
nsAutoCString priority;
cssDecl->GetPropertyPriority(propertyNameString, priority);
nsresult rv =
AutoCSSDeclarationAPIWrapper(htmlEditor, styledElement, cssDecl)
.SetProperty(propertyNameString, aValue, priority);
if (NS_FAILED(rv)) {
NS_WARNING("AutoCSSDeclarationAPIWrapper::SetProperty() failed");
return rv;
}
return NS_OK;
}
AutoElementAttrAPIWrapper elementWrapper(htmlEditor, styledElement);
nsresult rv = elementWrapper.UnsetAttr(nsGkAtoms::style, true);
if (NS_FAILED(rv)) {
NS_WARNING("AutoElementAttrAPIWrapper::UnsetAttr() failed");
return rv;
}
NS_WARNING_ASSERTION(
elementWrapper.IsExpectedResult(EmptyString()),
"Removing style attribute caused other mutations, but ignored");
return NS_OK;
}
NS_IMETHODIMP ChangeStyleTransaction::UndoTransaction() {
MOZ_LOG(GetLogModule(), LogLevel::Info,
("%p ChangeStyleTransaction::%s this=%s", this, __FUNCTION__,
ToString(*this).c_str()));
nsresult rv = SetStyle(mUndoAttributeWasSet, mUndoValue);
NS_WARNING_ASSERTION(NS_SUCCEEDED(rv),
"ChangeStyleTransaction::SetStyle() failed");
return rv;
}
NS_IMETHODIMP ChangeStyleTransaction::RedoTransaction() {
MOZ_LOG(GetLogModule(), LogLevel::Info,
("%p ChangeStyleTransaction::%s this=%s", this, __FUNCTION__,
ToString(*this).c_str()));
nsresult rv = SetStyle(mRedoAttributeWasSet, mRedoValue);
NS_WARNING_ASSERTION(NS_SUCCEEDED(rv),
"ChangeStyleTransaction::SetStyle() failed");
return rv;
}
// static
void ChangeStyleTransaction::BuildTextDecorationValueToSet(
const nsACString& aCurrentValues, const nsACString& aAddingValues,
nsACString& aOutValues) {
const bool underline = ValueIncludes(aCurrentValues, "underline"_ns) ||
ValueIncludes(aAddingValues, "underline"_ns);
const bool overline = ValueIncludes(aCurrentValues, "overline"_ns) ||
ValueIncludes(aAddingValues, "overline"_ns);
const bool lineThrough = ValueIncludes(aCurrentValues, "line-through"_ns) ||
ValueIncludes(aAddingValues, "line-through"_ns);
// FYI: Don't refer aCurrentValues which may refer same instance as
// aOutValues.
BuildTextDecorationValue(underline, overline, lineThrough, aOutValues);
}
// static
void ChangeStyleTransaction::BuildTextDecorationValueToRemove(
const nsACString& aCurrentValues, const nsACString& aRemovingValues,
nsACString& aOutValues) {
const bool underline = ValueIncludes(aCurrentValues, "underline"_ns) &&
!ValueIncludes(aRemovingValues, "underline"_ns);
const bool overline = ValueIncludes(aCurrentValues, "overline"_ns) &&
!ValueIncludes(aRemovingValues, "overline"_ns);
const bool lineThrough = ValueIncludes(aCurrentValues, "line-through"_ns) &&
!ValueIncludes(aRemovingValues, "line-through"_ns);
// FYI: Don't refer aCurrentValues which may refer same instance as
// aOutValues.
BuildTextDecorationValue(underline, overline, lineThrough, aOutValues);
}
void ChangeStyleTransaction::BuildTextDecorationValue(bool aUnderline,
bool aOverline,
bool aLineThrough,
nsACString& aOutValues) {
// We should build text-decoration(-line) value as same as Blink for
// compatibility. Blink sets text-decoration-line to the values in the
// following order. Blink drops `blink` and other styles like color and
// style. For keeping the code simple, let's use the lossy behavior.
aOutValues.Truncate();
if (aUnderline) {
aOutValues.AssignLiteral("underline");
}
if (aOverline) {
if (!aOutValues.IsEmpty()) {
aOutValues.Append(HTMLEditUtils::kSpace);
}
aOutValues.AppendLiteral("overline");
}
if (aLineThrough) {
if (!aOutValues.IsEmpty()) {
aOutValues.Append(HTMLEditUtils::kSpace);
}
aOutValues.AppendLiteral("line-through");
}
}
} // namespace mozilla
|