office-gobmx/svl
Caolán McNamara f5bb3096d2 cid#1465237 silence Dereference after null check
Change-Id: I7014da07d88861e4f08fb9e1006dccb6fc2ad245
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98406
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-07-09 12:41:52 +02:00
..
inc/pch uiobject.hxx only needs forward declares 2020-04-22 09:39:07 +02:00
qa fix ASAN in SharedStringPool 2020-06-12 08:50:29 +02:00
source cid#1465237 silence Dereference after null check 2020-07-09 12:41:52 +02:00
unx/source/svdde loplugin:returnconstval in svl 2019-08-24 18:14:23 +02:00
util
AllLangMoTarget_svl.mk migrate to boost::gettext 2017-07-21 08:20:50 +01:00
CppunitTest_svl_inetcontenttype.mk Introduce INetContentType::scan 2014-03-27 18:06:27 +01:00
CppunitTest_svl_itempool.mk tdf#94698 cleanup Makefiles. Get rid of udkapi and offapi 2016-06-09 09:47:11 +00:00
CppunitTest_svl_items.mk
CppunitTest_svl_lngmisc.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
CppunitTest_svl_lockfiles.mk Fix more new dependencies on boost_headers 2019-12-07 09:00:26 +01:00
CppunitTest_svl_notify.mk
CppunitTest_svl_qa_cppunit.mk Drop configurability of libnumbertext use 2020-06-11 16:23:52 +02:00
CppunitTest_svl_urihelper.mk
IwyuFilter_svl.yaml Add IwyuFilter_svl.yaml 2019-09-12 19:42:50 +02:00
JunitTest_svl_complex.mk
Library_fsstorage.mk
Library_passwordcontainer.mk gbuild: Remove MSVC 2013 legacy code 2017-04-21 18:18:44 +02:00
Library_svl.mk tdf#130725: use strtod by David M. Gay to make sure we get the nearest 2020-02-27 11:02:03 +01:00
Makefile switch to include-based build rather than sourced-based build 2012-02-05 19:34:05 -06:00
Module_svl.mk Drop needless junit and python make conditionals 2020-02-17 02:45:56 +01:00
README

Contains non-graphical helper code for office applications.

Specifically this module does not depend on or use includes from module
vcl. Originally all code in svtools that did not depend on vcl was split
off into this svl ("svtools light") module.

In particular the SfxItemSet is a property-bag like container that
stores arbitrary sets of properties for everything from text run
formats, to Chart regression line properties.

There are lots of other useful helpers in here for various office
tasks; much of this code was originally moved from svx/sfx2.

== Items, Pools and Sets ==

=== SfxPoolItem ===

A small reference counted piece of data.  Many subclasses, each with a
unique integer to identify its type (WhichId).  Can be compared for equality
(operator==), Clone()d, and converted to/from uno::Any (QueryValue/PutValue).

A pool item may have value semantics ("poolable"), meaning that
there will generally be only one instance that compares equal per item pool,
or not, in which case the item will be Clone()d quite a bit.

=== SfxItemPool ===

Usually there is one item pool per document, with a range of valid WhichIds
that is specific to the type of document.

The item pool owns all instances of SfxPoolItem or its subclasses that have
ever been added to an item set.  It also contains a default item for
every WhichId, which will be (depending on parameters) returned from item
sets if the set does not contain an item at this WhichId.

=== SfxItemSet ===

The item set can be created with a user-supplied range of WhichIds; it
will accept SfxPoolItems with matching WhichIds and ignore attempts to
insert items with non-matching WhichIds.

Items that are successfully inserted into the set will be stored in the
set's SfxItemPool, and for poolable items only a single instance that
compares equal under the predicate operator== will be stored in the pool,
regardless of how many sets contain it, thus conserving memory.

There are members m_pWhichRanges for the valid ranges (as pairs of WhichIds),
m_nCount for the number of items contained, and m_pItems for the pointers to
the actual items.