mirror of
https://github.com/alkoleft/yaxunit-addin.git
synced 2024-11-30 08:06:40 +02:00
init
This commit is contained in:
commit
dab63894d1
51
CMakeLists.txt
Normal file
51
CMakeLists.txt
Normal file
@ -0,0 +1,51 @@
|
||||
cmake_minimum_required(VERSION 3.12)
|
||||
project(SampleAddIn)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(TARGET SampleAddIn)
|
||||
|
||||
option(CASE_INSENSITIVE "Case insensitive method names" OFF)
|
||||
option(STATIC_CRT "Static CRT linkage" OFF)
|
||||
option(OUT_PARAMS "Support output parameters" OFF)
|
||||
|
||||
add_library(${TARGET} SHARED
|
||||
src/addin.def
|
||||
src/stdafx.h
|
||||
src/dllmain.cpp
|
||||
src/exports.cpp
|
||||
src/Component.cpp
|
||||
src/Component.h
|
||||
src/SampleAddIn.cpp
|
||||
src/SampleAddIn.h)
|
||||
|
||||
target_compile_definitions(${TARGET} PRIVATE
|
||||
UNICODE
|
||||
_UNICODE)
|
||||
|
||||
if (CASE_INSENSITIVE)
|
||||
target_compile_definitions(${TARGET} PRIVATE CASE_INSENSITIVE)
|
||||
endif ()
|
||||
|
||||
if (OUT_PARAMS)
|
||||
target_compile_definitions(${TARGET} PRIVATE OUT_PARAMS)
|
||||
endif ()
|
||||
|
||||
target_include_directories(${TARGET} PRIVATE
|
||||
include)
|
||||
|
||||
if (MSVC)
|
||||
if (STATIC_CRT)
|
||||
string(REPLACE "/MD" "/MT" CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}")
|
||||
string(REPLACE "/MD" "/MT" CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
|
||||
endif ()
|
||||
target_compile_definitions(${TARGET} PRIVATE
|
||||
_WINDOWS
|
||||
_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING)
|
||||
endif ()
|
||||
|
||||
if (UNIX)
|
||||
if (TARGET_ARCH STREQUAL "x86")
|
||||
set(CMAKE_C_FLAGS "-m32 ${CMAKE_C_FLAGS}")
|
||||
set(CMAKE_CXX_FLAGS "-m32 ${CMAKE_CXX_FLAGS}")
|
||||
endif ()
|
||||
endif ()
|
661
COPYING
Normal file
661
COPYING
Normal file
@ -0,0 +1,661 @@
|
||||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for the
|
||||
specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
4
README.md
Normal file
4
README.md
Normal file
@ -0,0 +1,4 @@
|
||||
# Modern Native AddIn
|
||||
|
||||
Custom implementation of Native AddIn template for 1C:Enterpise platform on modern C++.
|
||||
See more info about AddIn development [here](https://support.1ci.com/hc/en-us/sections/360001651174-Add-in-Development-Technology).
|
159
include/AddInDefBase.h
Normal file
159
include/AddInDefBase.h
Normal file
@ -0,0 +1,159 @@
|
||||
/*
|
||||
* Warning!!!
|
||||
* DO NOT ALTER THIS FILE!
|
||||
*/
|
||||
|
||||
#ifndef __ADAPTER_DEF_H__
|
||||
#define __ADAPTER_DEF_H__
|
||||
#include "types.h"
|
||||
|
||||
struct IInterface
|
||||
{
|
||||
};
|
||||
|
||||
|
||||
enum Interfaces
|
||||
{
|
||||
eIMsgBox = 0,
|
||||
eIPlatformInfo,
|
||||
|
||||
#if defined(__ANDROID__)
|
||||
|
||||
eIAndroidComponentHelper,
|
||||
|
||||
#endif
|
||||
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/**
|
||||
* This class serves as representation of a platform for external
|
||||
* components External components use it to communicate with a platform.
|
||||
*
|
||||
*/
|
||||
/// Base interface for object components.
|
||||
class IAddInDefBase
|
||||
{
|
||||
public:
|
||||
virtual ~IAddInDefBase() {}
|
||||
/// Adds the error message
|
||||
/**
|
||||
* @param wcode - error code
|
||||
* @param source - source of error
|
||||
* @param descr - description of error
|
||||
* @param scode - error code (HRESULT)
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API AddError(unsigned short wcode, const WCHAR_T* source,
|
||||
const WCHAR_T* descr, long scode) = 0;
|
||||
|
||||
/// Reads a property value
|
||||
/**
|
||||
* @param wszPropName -property name
|
||||
* @param pVal - value being returned
|
||||
* @param pErrCode - error code (if any error occured)
|
||||
* @param errDescriptor - error description (if any error occured)
|
||||
* @return the result of read.
|
||||
*/
|
||||
virtual bool ADDIN_API Read(WCHAR_T* wszPropName,
|
||||
tVariant* pVal,
|
||||
long *pErrCode,
|
||||
WCHAR_T** errDescriptor) = 0;
|
||||
/// Writes a property value
|
||||
/**
|
||||
* @param wszPropName - property name
|
||||
* @param pVar - new property value
|
||||
* @return the result of write.
|
||||
*/
|
||||
virtual bool ADDIN_API Write(WCHAR_T* wszPropName,
|
||||
tVariant *pVar) = 0;
|
||||
|
||||
///Registers profile components
|
||||
/**
|
||||
* @param wszProfileName - profile name
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API RegisterProfileAs(WCHAR_T* wszProfileName) = 0;
|
||||
|
||||
/// Changes the depth of event buffer
|
||||
/**
|
||||
* @param lDepth - new depth of event buffer
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API SetEventBufferDepth(long lDepth) = 0;
|
||||
/// Returns the depth of event buffer
|
||||
/**
|
||||
* @return the depth of event buffer
|
||||
*/
|
||||
virtual long ADDIN_API GetEventBufferDepth() = 0;
|
||||
/// Registers external event
|
||||
/**
|
||||
* @param wszSource - source of event
|
||||
* @param wszMessage - event message
|
||||
* @param wszData - message parameters
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API ExternalEvent(WCHAR_T* wszSource,
|
||||
WCHAR_T* wszMessage,
|
||||
WCHAR_T* wszData) = 0;
|
||||
/// Clears event buffer
|
||||
/**
|
||||
*/
|
||||
virtual void ADDIN_API CleanEventBuffer() = 0;
|
||||
|
||||
/// Sets status line contents
|
||||
/**
|
||||
* @param wszStatusLine - new status line contents
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API SetStatusLine(WCHAR_T* wszStatusLine) = 0;
|
||||
/// Resets the status line contents
|
||||
/**
|
||||
* @return the result of
|
||||
*/
|
||||
virtual void ADDIN_API ResetStatusLine() = 0;
|
||||
};
|
||||
|
||||
class IAddInDefBaseEx :
|
||||
public IAddInDefBase
|
||||
{
|
||||
public:
|
||||
virtual ~IAddInDefBaseEx() {}
|
||||
|
||||
virtual IInterface* ADDIN_API GetInterface(Interfaces iface) = 0;
|
||||
};
|
||||
|
||||
struct IMsgBox :
|
||||
public IInterface
|
||||
{
|
||||
virtual bool ADDIN_API Confirm(const WCHAR_T* queryText, tVariant* retVal) = 0;
|
||||
|
||||
virtual bool ADDIN_API Alert(const WCHAR_T* text) = 0;
|
||||
};
|
||||
|
||||
struct IPlatformInfo :
|
||||
public IInterface
|
||||
{
|
||||
enum AppType
|
||||
{
|
||||
eAppUnknown = -1,
|
||||
eAppThinClient = 0,
|
||||
eAppThickClient,
|
||||
eAppWebClient,
|
||||
eAppServer,
|
||||
eAppExtConn,
|
||||
eAppMobileClient,
|
||||
eAppMobileServer,
|
||||
};
|
||||
|
||||
struct AppInfo
|
||||
{
|
||||
const WCHAR_T* AppVersion;
|
||||
const WCHAR_T* UserAgentInformation;
|
||||
AppType Application;
|
||||
};
|
||||
|
||||
virtual const AppInfo* ADDIN_API GetPlatformInfo() = 0;
|
||||
};
|
||||
|
||||
#endif //__ADAPTER_DEF_H__
|
243
include/ComponentBase.h
Normal file
243
include/ComponentBase.h
Normal file
@ -0,0 +1,243 @@
|
||||
/*
|
||||
* Warning!!!
|
||||
* DO NOT ALTER THIS FILE!
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __COMPONENT_BASE_H__
|
||||
#define __COMPONENT_BASE_H__
|
||||
|
||||
#include "types.h"
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/**
|
||||
* The given interface is intended for initialization and
|
||||
* uninitialization of component and its adjustments
|
||||
*/
|
||||
/// Interface of component initialization.
|
||||
class IInitDoneBase
|
||||
{
|
||||
public:
|
||||
virtual ~IInitDoneBase() {}
|
||||
/// Initializes component
|
||||
/**
|
||||
* @param disp - 1C:Enterpise interface
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API Init(void* disp) = 0;
|
||||
/// Sets the memory manager
|
||||
/*
|
||||
* @param mem - pointer to memory manager interface.
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API setMemManager(void* mem) = 0;
|
||||
|
||||
/// Returns component version
|
||||
/**
|
||||
* @return - component version (2000 - version 2)
|
||||
*/
|
||||
virtual long ADDIN_API GetInfo() = 0;
|
||||
|
||||
/// Uninitializes component
|
||||
/**
|
||||
* Component here should release all consumed resources.
|
||||
*/
|
||||
virtual void ADDIN_API Done() = 0;
|
||||
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
/**
|
||||
* The given interface defines methods that are intented to be used by the Platform
|
||||
*/
|
||||
/// Interface describing extension of language.
|
||||
class ILanguageExtenderBase
|
||||
{
|
||||
public:
|
||||
virtual ~ILanguageExtenderBase(){}
|
||||
/// Registers language extension
|
||||
/**
|
||||
* @param wsExtensionName - extension name
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API RegisterExtensionAs(WCHAR_T** wsExtensionName) = 0;
|
||||
|
||||
/// Returns number of component properties
|
||||
/**
|
||||
* @return number of properties
|
||||
*/
|
||||
virtual long ADDIN_API GetNProps() = 0;
|
||||
|
||||
/// Finds property by name
|
||||
/**
|
||||
* @param wsPropName - property name
|
||||
* @return property index or -1, if it is not found
|
||||
*/
|
||||
virtual long ADDIN_API FindProp(const WCHAR_T* wsPropName) = 0;
|
||||
|
||||
/// Returns property name
|
||||
/**
|
||||
* @param lPropNum - property index (starting with 0)
|
||||
* @param lPropAlias - 0 - international alias,
|
||||
* 1 - russian alias. (International alias is required)
|
||||
* @return proeprty name or 0 if it is not found
|
||||
*/
|
||||
virtual const WCHAR_T* ADDIN_API GetPropName(long lPropNum,
|
||||
long lPropAlias) = 0;
|
||||
|
||||
/// Returns property value
|
||||
/**
|
||||
* @param lPropNum - property index (starting with 0)
|
||||
* @param pvarPropVal - the pointer to a variable for property value
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API GetPropVal(const long lPropNum,
|
||||
tVariant* pvarPropVal) = 0;
|
||||
|
||||
/// Sets the property value
|
||||
/**
|
||||
* @param lPropNum - property index (starting with 0)
|
||||
* @param varPropVal - the pointer to a variable for property value
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API SetPropVal(const long lPropNum,
|
||||
tVariant* varPropVal) = 0;
|
||||
|
||||
/// Is property readable?
|
||||
/**
|
||||
* @param lPropNum - property index (starting with 0)
|
||||
* @return true if property is readable
|
||||
*/
|
||||
virtual bool ADDIN_API IsPropReadable(const long lPropNum) = 0;
|
||||
|
||||
/// Is property writable?
|
||||
/**
|
||||
* @param lPropNum - property index (starting with 0)
|
||||
* @return true if property is writable
|
||||
*/
|
||||
virtual bool ADDIN_API IsPropWritable(const long lPropNum) = 0;
|
||||
|
||||
/// Returns number of component methods
|
||||
/**
|
||||
* @return number of component methods
|
||||
*/
|
||||
virtual long ADDIN_API GetNMethods() = 0;
|
||||
|
||||
/// Finds a method by name
|
||||
/**
|
||||
* @param wsMethodName - method name
|
||||
* @return - method index
|
||||
*/
|
||||
virtual long ADDIN_API FindMethod(const WCHAR_T* wsMethodName) = 0;
|
||||
|
||||
/// Returns method name
|
||||
/**
|
||||
* @param lMethodNum - method index(starting with 0)
|
||||
* @param lMethodAlias - 0 - international alias,
|
||||
* 1 - russian alias. (International alias is required)
|
||||
* @return method name or 0 if method is not found
|
||||
*/
|
||||
virtual const WCHAR_T* ADDIN_API GetMethodName(const long lMethodNum,
|
||||
const long lMethodAlias) = 0;
|
||||
|
||||
/// Returns number of method parameters
|
||||
/**
|
||||
* @param lMethodNum - method index (starting with 0)
|
||||
* @return number of parameters
|
||||
*/
|
||||
virtual long ADDIN_API GetNParams(const long lMethodNum) = 0;
|
||||
|
||||
/// Returns default value of method parameter
|
||||
/**
|
||||
* @param lMethodNum - method index(starting with 0)
|
||||
* @param lParamNum - parameter index (starting with 0)
|
||||
* @param pvarParamDefValue - the pointer to a variable for default value
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API GetParamDefValue(const long lMethodNum,
|
||||
const long lParamNum,
|
||||
tVariant *pvarParamDefValue) = 0;
|
||||
|
||||
/// Does the method have a return value?
|
||||
/**
|
||||
* @param lMethodNum - method index (starting with 0)
|
||||
* @return true if the method has a return value
|
||||
*/
|
||||
virtual bool ADDIN_API HasRetVal(const long lMethodNum) = 0;
|
||||
|
||||
/// Calls the method as a procedure
|
||||
/**
|
||||
* @param lMethodNum - method index (starting with 0)
|
||||
* @param paParams - the pointer to array of method parameters
|
||||
* @param lSizeArray - the size of array
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API CallAsProc(const long lMethodNum,
|
||||
tVariant* paParams,
|
||||
const long lSizeArray) = 0;
|
||||
|
||||
/// Calls the method as a function
|
||||
/**
|
||||
* @param lMethodNum - method index (starting with 0)
|
||||
* @param pvarRetValue - the pointer to returned value
|
||||
* @param paParams - the pointer to array of method parameters
|
||||
* @param lSizeArray - the size of array
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API CallAsFunc(const long lMethodNum,
|
||||
tVariant* pvarRetValue,
|
||||
tVariant* paParams,
|
||||
const long lSizeArray) = 0;
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
/**
|
||||
* This interface is used to change component locale
|
||||
*/
|
||||
/// Base interface for component localization.
|
||||
class LocaleBase
|
||||
{
|
||||
public:
|
||||
virtual ~LocaleBase(){}
|
||||
/// Changes component locale
|
||||
/**
|
||||
* @param loc - new locale (for Windows - rus_RUS,
|
||||
* for Linux - ru_RU, etc...)
|
||||
*/
|
||||
virtual void ADDIN_API SetLocale(const WCHAR_T* loc) = 0;
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
/**
|
||||
* The given interface is generalized, for its obligatory inheritance
|
||||
* in implementing components.
|
||||
*/
|
||||
/// Base interface describing object as a set of properties and methods.
|
||||
class IComponentBase :
|
||||
public IInitDoneBase,
|
||||
public ILanguageExtenderBase,
|
||||
public LocaleBase
|
||||
{
|
||||
public:
|
||||
virtual ~IComponentBase(){}
|
||||
};
|
||||
|
||||
enum AppCapabilities
|
||||
{
|
||||
eAppCapabilitiesInvalid = -1,
|
||||
eAppCapabilities1 = 1,
|
||||
eAppCapabilitiesLast = eAppCapabilities1,
|
||||
};
|
||||
|
||||
/// Announcements of exported functions
|
||||
/**
|
||||
* These functions should be implemented that component can be loaded and created.
|
||||
*/
|
||||
extern "C" long GetClassObject(const WCHAR_T*, IComponentBase** pIntf);
|
||||
extern "C" long DestroyObject(IComponentBase** pIntf);
|
||||
extern "C" const WCHAR_T* GetClassNames();
|
||||
extern "C" AppCapabilities SetPlatformCapabilities(const AppCapabilities capabilities);
|
||||
|
||||
typedef long (*GetClassObjectPtr)(const WCHAR_T* wsName, IComponentBase** pIntf);
|
||||
typedef long (*DestroyObjectPtr)(IComponentBase** pIntf);
|
||||
typedef const WCHAR_T* (*GetClassNamesPtr)();
|
||||
typedef AppCapabilities (*SetPlatformCapabilitiesPtr)(const AppCapabilities capabilities);
|
||||
|
||||
#endif //__COMPONENT_BASE_H__
|
34
include/IMemoryManager.h
Normal file
34
include/IMemoryManager.h
Normal file
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Warning!!!
|
||||
* DO NOT ALTER THIS FILE!
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __IMEMORY_MANAGER_H__
|
||||
#define __IMEMORY_MANAGER_H__
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
/**
|
||||
* The given class allocates and releases memory for a component
|
||||
*/
|
||||
/// Interface representing memory manager.
|
||||
class IMemoryManager
|
||||
{
|
||||
public:
|
||||
virtual ~IMemoryManager() {}
|
||||
/// Allocates memory of specified size
|
||||
/**
|
||||
* @param pMemory - the double pointer to variable, that will hold newly
|
||||
* allocated block of memory of NULL if allocation fails.
|
||||
* @param ulCountByte - memory size
|
||||
* @return the result of
|
||||
*/
|
||||
virtual bool ADDIN_API AllocMemory (void** pMemory, unsigned long ulCountByte) = 0;
|
||||
/// Releases memory
|
||||
/**
|
||||
* @param pMemory - The double pointer to the memory block being released
|
||||
*/
|
||||
virtual void ADDIN_API FreeMemory (void** pMemory) = 0;
|
||||
};
|
||||
|
||||
#endif //__IMEMORY_MANAGER_H__
|
140
include/com.h
Normal file
140
include/com.h
Normal file
@ -0,0 +1,140 @@
|
||||
|
||||
#ifndef __COM_H__
|
||||
#define __COM_H__
|
||||
|
||||
#if defined(__linux__) || defined(__APPLE__) || defined(__ANDROID__)
|
||||
|
||||
#ifdef __ANDROID__
|
||||
|
||||
typedef struct {
|
||||
unsigned int Data1;
|
||||
unsigned short Data2;
|
||||
unsigned short Data3;
|
||||
unsigned char Data4[ 8 ];
|
||||
} uuid_t;
|
||||
|
||||
#else
|
||||
#include <uuid/uuid.h>
|
||||
#endif //__ANDROID__
|
||||
|
||||
#ifndef __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ // iOS
|
||||
#include <dlfcn.h>
|
||||
#endif //!__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__
|
||||
|
||||
#pragma GCC system_header
|
||||
|
||||
typedef long HRESULT;
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define STDMETHODCALLTYPE __attribute__ ((__stdcall__))
|
||||
#define DECLSPEC_NOTHROW __attribute__ ((nothrow))
|
||||
#define STDMETHOD(method) virtual DECLSPEC_NOTHROW HRESULT STDMETHODCALLTYPE method
|
||||
#else
|
||||
#define STDMETHODCALLTYPE
|
||||
#endif
|
||||
|
||||
#define __stdcall STDMETHODCALLTYPE
|
||||
#define near
|
||||
#define far
|
||||
#define CONST const
|
||||
#define FAR far
|
||||
|
||||
typedef unsigned long DWORD;
|
||||
#ifndef __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ // iOS
|
||||
typedef int BOOL;
|
||||
#elif defined(__LP64__)
|
||||
typedef bool BOOL;
|
||||
#else
|
||||
typedef signed char BOOL;
|
||||
#endif //!__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__
|
||||
|
||||
typedef void VOID;
|
||||
typedef short SHORT;
|
||||
typedef unsigned char BYTE;
|
||||
typedef unsigned short WORD;
|
||||
typedef float FLOAT;
|
||||
typedef FLOAT *PFLOAT;
|
||||
typedef BOOL near *PBOOL;
|
||||
typedef BOOL far *LPBOOL;
|
||||
typedef BYTE near *PBYTE;
|
||||
typedef BYTE far *LPBYTE;
|
||||
typedef int near *PINT;
|
||||
typedef int far *LPINT;
|
||||
typedef WORD near *PWORD;
|
||||
typedef WORD far *LPWORD;
|
||||
typedef long far *LPLONG;
|
||||
typedef DWORD near *PDWORD;
|
||||
typedef DWORD far *LPDWORD;
|
||||
typedef void far *LPVOID;
|
||||
typedef CONST void far *LPCVOID;
|
||||
typedef wchar_t *BSTR;
|
||||
typedef long SCODE;
|
||||
typedef int INT;
|
||||
typedef unsigned int UINT;
|
||||
typedef unsigned int *PUINT;
|
||||
typedef wchar_t WCHAR;
|
||||
typedef wchar_t OLECHAR;
|
||||
typedef wchar_t *LPOLESTR;
|
||||
typedef const wchar_t *LPCOLESTR;
|
||||
typedef DWORD LCID;
|
||||
typedef PDWORD PLCID;
|
||||
typedef long LONG;
|
||||
typedef unsigned long ULONG;
|
||||
typedef long long LONGLONG;
|
||||
typedef unsigned long long ULONGLONG;
|
||||
typedef LONG DISPID;
|
||||
typedef double DOUBLE;
|
||||
typedef double DATE;
|
||||
typedef short VARIANT_BOOL;
|
||||
typedef void *PVOID;
|
||||
typedef char CHAR;
|
||||
typedef CONST CHAR *LPCSTR;
|
||||
typedef unsigned short USHORT;
|
||||
typedef void *HMODULE;
|
||||
#define OLESTR(str) L##str
|
||||
|
||||
typedef uuid_t GUID;
|
||||
typedef uuid_t IID;
|
||||
typedef uuid_t UUID;
|
||||
#define REFIID const IID &
|
||||
#define MAX_PATH 260
|
||||
|
||||
#define IsEqualIID(x,y) uuid_compare((x),(y))
|
||||
#ifdef __GNUC__
|
||||
#define LoadLibraryA(x) dlopen((x), RTLD_LAZY)
|
||||
#define FreeLibrary(x) dlclose((x))
|
||||
#define GetProcAddress(x, y) dlsym((x), (y))
|
||||
#endif //__GNUC__
|
||||
|
||||
#define E_FAIL 0x80004005L
|
||||
#define S_OK 0L
|
||||
#define S_FALSE 1L
|
||||
#define E_NOINTERFACE 0x80004002L
|
||||
#define E_NOTIMPL 0x80004001L
|
||||
#define E_INVALIDARG 0x80070057L
|
||||
#define E_UNEXPECTED 0x8000FFFFL
|
||||
#define E_OUTOFMEMORY 0x8007000EL
|
||||
#define DISP_E_UNKNOWNNAME 0x80020006L
|
||||
#define DISPID_UNKNOWN ( -1 )
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
|
||||
typedef long ITypeInfo;
|
||||
|
||||
#if defined (__GNUC__) && !defined (NONAMELESSUNION)
|
||||
__extension__ /* no named members */
|
||||
#endif
|
||||
union tCY {
|
||||
__extension__ struct
|
||||
{
|
||||
unsigned long Lo;
|
||||
long Hi;
|
||||
};
|
||||
long long int64;
|
||||
};
|
||||
typedef union tagCY CY;
|
||||
#define CLSIDFromString(x,y) uuid_parse((x),(unsigned char*)(y))
|
||||
|
||||
#endif //defined(__linux__) || defined(__APPLE__)
|
||||
|
||||
#endif //__COM_H__
|
233
include/types.h
Normal file
233
include/types.h
Normal file
@ -0,0 +1,233 @@
|
||||
|
||||
#ifndef __CON_TYPES_H__
|
||||
#define __CON_TYPES_H__
|
||||
|
||||
#if defined(_WINDOWS) || defined(WINAPI_FAMILY)
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#if defined(WINAPI_FAMILY)
|
||||
#include <wtypes.h>
|
||||
#endif
|
||||
|
||||
#if __GNUC__ >=3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#include "com.h"
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#define EXTERN_C extern "C"
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define _ANONYMOUS_UNION __extension__
|
||||
#define _ANONYMOUS_STRUCT __extension__
|
||||
#else
|
||||
#define _ANONYMOUS_UNION
|
||||
#define _ANONYMOUS_STRUCT
|
||||
#endif //__GNUC__
|
||||
|
||||
#ifdef NONAMELESSUNION
|
||||
#define __VARIANT_NAME_1 u
|
||||
#define __VARIANT_NAME_2 iface
|
||||
#define __VARIANT_NAME_3 str
|
||||
#define __VARIANT_NAME_4 wstr
|
||||
#else
|
||||
#define __VARIANT_NAME_1
|
||||
#define __VARIANT_NAME_2
|
||||
#define __VARIANT_NAME_3
|
||||
#define __VARIANT_NAME_4
|
||||
#endif //NONAMELESSUNION
|
||||
|
||||
#define RESULT_FROM_ERRNO(x) ((long)(x) <= 0 ? ((long)(x)) \
|
||||
: ((long) (((x) & 0x0000FFFF) | (BASE_ERRNO << 16) | 0x80000000)))
|
||||
|
||||
#define ADDIN_E_NONE 1000
|
||||
#define ADDIN_E_ORDINARY 1001
|
||||
#define ADDIN_E_ATTENTION 1002
|
||||
#define ADDIN_E_IMPORTANT 1003
|
||||
#define ADDIN_E_VERY_IMPORTANT 1004
|
||||
#define ADDIN_E_INFO 1005
|
||||
#define ADDIN_E_FAIL 1006
|
||||
#define ADDIN_E_MSGBOX_ATTENTION 1007
|
||||
#define ADDIN_E_MSGBOX_INFO 1008
|
||||
#define ADDIN_E_MSGBOX_FAIL 1009
|
||||
|
||||
#ifndef ADDIN_API
|
||||
#ifdef _WINDOWS
|
||||
#define ADDIN_API __stdcall
|
||||
#else
|
||||
//#define ADDIN_API __attribute__ ((__stdcall__))
|
||||
#define ADDIN_API
|
||||
#endif //_WINDOWS
|
||||
#endif //ADDIN_API
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef _WINDOWS
|
||||
#define WCHAR_T wchar_t
|
||||
#else
|
||||
#define WCHAR_T uint16_t
|
||||
#endif //_WINDOWS
|
||||
typedef unsigned short TYPEVAR;
|
||||
enum ENUMVAR
|
||||
{
|
||||
VTYPE_EMPTY = 0,
|
||||
VTYPE_NULL,
|
||||
VTYPE_I2, //int16_t
|
||||
VTYPE_I4, //int32_t
|
||||
VTYPE_R4, //float
|
||||
VTYPE_R8, //double
|
||||
VTYPE_DATE, //DATE (double)
|
||||
VTYPE_TM, //struct tm
|
||||
VTYPE_PSTR, //struct str string
|
||||
VTYPE_INTERFACE, //struct iface
|
||||
VTYPE_ERROR, //int32_t errCode
|
||||
VTYPE_BOOL, //bool
|
||||
VTYPE_VARIANT, //struct _tVariant *
|
||||
VTYPE_I1, //int8_t
|
||||
VTYPE_UI1, //uint8_t
|
||||
VTYPE_UI2, //uint16_t
|
||||
VTYPE_UI4, //uint32_t
|
||||
VTYPE_I8, //int64_t
|
||||
VTYPE_UI8, //uint64_t
|
||||
VTYPE_INT, //int Depends on architecture
|
||||
VTYPE_UINT, //unsigned int Depends on architecture
|
||||
VTYPE_HRESULT, //long hRes
|
||||
VTYPE_PWSTR, //struct wstr
|
||||
VTYPE_BLOB, //means in struct str binary data contain
|
||||
VTYPE_CLSID, //UUID
|
||||
VTYPE_STR_BLOB = 0xfff,
|
||||
VTYPE_VECTOR = 0x1000,
|
||||
VTYPE_ARRAY = 0x2000,
|
||||
VTYPE_BYREF = 0x4000, //Only with struct _tVariant *
|
||||
VTYPE_RESERVED = 0x8000,
|
||||
VTYPE_ILLEGAL = 0xffff,
|
||||
VTYPE_ILLEGALMASKED = 0xfff,
|
||||
VTYPE_TYPEMASK = 0xfff
|
||||
} ;
|
||||
#if defined (__GNUC__) && !defined (NONAMELESSUNION)
|
||||
__extension__ /* no named members */
|
||||
#endif
|
||||
struct _tVariant
|
||||
{
|
||||
_ANONYMOUS_UNION union
|
||||
{
|
||||
int8_t i8Val;
|
||||
int16_t shortVal;
|
||||
int32_t lVal;
|
||||
int intVal;
|
||||
unsigned int uintVal;
|
||||
int64_t llVal;
|
||||
uint8_t ui8Val;
|
||||
uint16_t ushortVal;
|
||||
uint32_t ulVal;
|
||||
uint64_t ullVal;
|
||||
int32_t errCode;
|
||||
long hRes;
|
||||
float fltVal;
|
||||
double dblVal;
|
||||
bool bVal;
|
||||
char chVal;
|
||||
wchar_t wchVal;
|
||||
DATE date;
|
||||
IID IDVal;
|
||||
struct _tVariant *pvarVal;
|
||||
struct tm tmVal;
|
||||
_ANONYMOUS_STRUCT struct
|
||||
{
|
||||
void* pInterfaceVal;
|
||||
IID InterfaceID;
|
||||
} __VARIANT_NAME_2/*iface*/;
|
||||
_ANONYMOUS_STRUCT struct
|
||||
{
|
||||
char* pstrVal;
|
||||
uint32_t strLen; //count of bytes
|
||||
} __VARIANT_NAME_3/*str*/;
|
||||
_ANONYMOUS_STRUCT struct
|
||||
{
|
||||
WCHAR_T* pwstrVal;
|
||||
uint32_t wstrLen; //count of symbol
|
||||
} __VARIANT_NAME_4/*wstr*/;
|
||||
} __VARIANT_NAME_1;
|
||||
uint32_t cbElements; //Dimension for an one-dimensional array in pvarVal
|
||||
TYPEVAR vt;
|
||||
};
|
||||
typedef struct _tVariant tVariant;
|
||||
typedef tVariant tVariantArg;
|
||||
|
||||
|
||||
#if defined(NONAMELESSUNION)
|
||||
#define TV_JOIN(X, Y) ((X)->u.Y)
|
||||
#else
|
||||
#define TV_JOIN(X, Y) ((X)->Y)
|
||||
#endif
|
||||
|
||||
#define TV_VT(X) ((X)->vt)
|
||||
#define TV_ISBYREF(X) (TV_VT(X)&VT_BYREF)
|
||||
#define TV_ISARRAY(X) (TV_VT(X)&VT_ARRAY)
|
||||
#define TV_ISVECTOR(X) (TV_VT(X)&VT_VECTOR)
|
||||
#define TV_NONE(X) TV_I2(X)
|
||||
|
||||
#define TV_UI1(X) TV_JOIN(X, ui8Val)
|
||||
#define TV_I2(X) TV_JOIN(X, shortVal)
|
||||
#define TV_I4(X) TV_JOIN(X, lVal)
|
||||
#define TV_I8(X) TV_JOIN(X, llVal)
|
||||
#define TV_R4(X) TV_JOIN(X, fltVal)
|
||||
#define TV_R8(X) TV_JOIN(X, dblVal)
|
||||
#define TV_I1(X) TV_JOIN(X, i8Val)
|
||||
#define TV_UI2(X) TV_JOIN(X, ushortVal)
|
||||
#define TV_UI4(X) TV_JOIN(X, ulVal)
|
||||
#define TV_UI8(X) TV_JOIN(X, ullVal)
|
||||
#define TV_INT(X) TV_JOIN(X, intVal)
|
||||
#define TV_UINT(X) TV_JOIN(X, uintVal)
|
||||
|
||||
#ifdef _WIN64
|
||||
#define TV_INT_PTR(X) TV_JOIN(X, llVal)
|
||||
#define TV_UINT_PTR(X) TV_JOIN(X, ullVal)
|
||||
#else
|
||||
#define TV_INT_PTR(X) TV_JOIN(X, lVal)
|
||||
#define TV_UINT_PTR(X) TV_JOIN(X, ulVal)
|
||||
#endif
|
||||
|
||||
|
||||
#define TV_DATE(X) TV_JOIN(X, date)
|
||||
#define TV_STR(X) TV_JOIN(X, pstrVal)
|
||||
#define TV_WSTR(X) TV_JOIN(X, pwstrVal)
|
||||
#define TV_BOOL(X) TV_JOIN(X, bVal)
|
||||
#define TV_UNKNOWN(X) TV_JOIN(X, pInterfaceVal)
|
||||
#define TV_VARIANTREF(X) TV_JOIN(X, pvarVal)
|
||||
|
||||
void tVarInit(tVariant* tvar);
|
||||
|
||||
inline
|
||||
void tVarInit(tVariant* tvar)
|
||||
{
|
||||
assert(tvar != NULL);
|
||||
memset(tvar, 0, sizeof(tVariant));
|
||||
TV_VT(tvar) = VTYPE_EMPTY;
|
||||
}
|
||||
//----------------------------------------------------------------------------//
|
||||
// static setter functions...
|
||||
|
||||
#define DATA_SET_BEGIN(data_) \
|
||||
tVarInit(data_);
|
||||
|
||||
#define DATA_SET_END(data_, type_) \
|
||||
TV_VT(data_) = type_;
|
||||
|
||||
|
||||
#define DATA_SET(data_, type_, member_, value_) \
|
||||
DATA_SET_BEGIN(data_) \
|
||||
TV_JOIN(data_, member_) = value_; \
|
||||
DATA_SET_END(data_, type_)
|
||||
|
||||
#define DATA_SET_WITH_CAST(data_, type_, member_, cast_, value_) \
|
||||
DATA_SET_BEGIN(data_) \
|
||||
TV_JOIN(data_, member_) = cast_ value_; \
|
||||
DATA_SET_END(data_, type_)
|
||||
|
||||
#endif //__CON_TYPES_H__
|
453
src/Component.cpp
Normal file
453
src/Component.cpp
Normal file
@ -0,0 +1,453 @@
|
||||
/*
|
||||
* Modern Native AddIn
|
||||
* Copyright (C) 2018 Infactum
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <algorithm>
|
||||
#include <codecvt>
|
||||
#include <cwctype>
|
||||
#include <locale>
|
||||
|
||||
#include "Component.h"
|
||||
|
||||
bool Component::Init(void *connection_) {
|
||||
connection = static_cast<IAddInDefBase *>(connection_);
|
||||
return connection != nullptr;
|
||||
}
|
||||
|
||||
bool Component::setMemManager(void *memory_manager_) {
|
||||
memory_manager = static_cast<IMemoryManager *>(memory_manager_);
|
||||
return memory_manager != nullptr;
|
||||
}
|
||||
|
||||
void Component::SetLocale(const WCHAR_T *locale) {
|
||||
#ifdef CASE_INSENSITIVE
|
||||
try {
|
||||
std::locale::global(std::locale{toUTF8String(locale)});
|
||||
} catch (std::runtime_error &) {
|
||||
std::locale::global(std::locale{""});
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
bool Component::RegisterExtensionAs(WCHAR_T **ext_name) {
|
||||
auto name = extensionName();
|
||||
|
||||
try {
|
||||
storeVariable(name, ext_name);
|
||||
} catch (const std::bad_alloc &) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
long Component::GetNProps() {
|
||||
return properties_meta.size();
|
||||
}
|
||||
|
||||
long Component::FindProp(const WCHAR_T *prop_name) {
|
||||
|
||||
std::wstring lookup_name = toWstring(prop_name);
|
||||
|
||||
#ifdef CASE_INSENSITIVE
|
||||
lookup_name = toUpper(lookup_name);
|
||||
|
||||
for (auto i = 0u; i < properties_meta.size(); ++i) {
|
||||
if (toUpper(properties_meta[i].alias) == lookup_name
|
||||
|| toUpper(properties_meta[i].alias_ru) == lookup_name) {
|
||||
return static_cast<long>(i);
|
||||
}
|
||||
}
|
||||
#else
|
||||
for (auto i = 0u; i < properties_meta.size(); ++i) {
|
||||
if (properties_meta[i].alias == lookup_name
|
||||
|| properties_meta[i].alias_ru == lookup_name) {
|
||||
return static_cast<long>(i);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
return -1;
|
||||
|
||||
}
|
||||
|
||||
const WCHAR_T *Component::GetPropName(long num, long lang_alias) {
|
||||
|
||||
std::wstring *name;
|
||||
if (lang_alias == 0) {
|
||||
name = &(properties_meta[num].alias);
|
||||
} else {
|
||||
name = &(properties_meta[num].alias_ru);
|
||||
}
|
||||
|
||||
WCHAR_T *result = nullptr;
|
||||
storeVariable(std::u16string(reinterpret_cast<const char16_t *>(name->c_str())), &result);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
bool Component::GetPropVal(const long num, tVariant *value) {
|
||||
|
||||
try {
|
||||
auto tmp = properties_meta[num].getter();
|
||||
storeVariable(*tmp, *value);
|
||||
} catch (const std::exception &e) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), e.what(), true);
|
||||
return false;
|
||||
} catch (...) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), UNKNOWN_EXCP, true);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Component::SetPropVal(const long num, tVariant *value) {
|
||||
|
||||
try {
|
||||
auto tmp = toStlVariant(*value);
|
||||
properties_meta[num].setter(std::move(tmp));
|
||||
} catch (const std::exception &e) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), e.what(), true);
|
||||
return false;
|
||||
} catch (...) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), UNKNOWN_EXCP, true);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Component::IsPropReadable(const long lPropNum) {
|
||||
return properties_meta[lPropNum].is_readable;
|
||||
}
|
||||
|
||||
bool Component::IsPropWritable(const long lPropNum) {
|
||||
return properties_meta[lPropNum].is_writable;
|
||||
}
|
||||
|
||||
long Component::GetNMethods() {
|
||||
return methods_meta.size();
|
||||
}
|
||||
|
||||
long Component::FindMethod(const WCHAR_T *method_name) {
|
||||
|
||||
std::wstring lookup_name = toWstring(method_name);
|
||||
|
||||
#ifdef CASE_INSENSITIVE
|
||||
lookup_name = toUpper(lookup_name);
|
||||
|
||||
for (auto i = 0u; i < methods_meta.size(); ++i) {
|
||||
if (toUpper(methods_meta[i].alias) == lookup_name
|
||||
|| toUpper(methods_meta[i].alias_ru) == lookup_name) {
|
||||
return static_cast<long>(i);
|
||||
}
|
||||
}
|
||||
#else
|
||||
for (auto i = 0u; i < methods_meta.size(); ++i) {
|
||||
if (methods_meta[i].alias == lookup_name
|
||||
|| methods_meta[i].alias_ru == lookup_name) {
|
||||
return static_cast<long>(i);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
const WCHAR_T *Component::GetMethodName(const long num, const long lang_alias) {
|
||||
|
||||
std::wstring *name;
|
||||
if (lang_alias == 0) {
|
||||
name = &(methods_meta[num].alias);
|
||||
} else {
|
||||
name = &(methods_meta[num].alias_ru);
|
||||
}
|
||||
|
||||
WCHAR_T *result = nullptr;
|
||||
storeVariable(std::u16string(reinterpret_cast<const char16_t *>(name->c_str())), &result);
|
||||
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
long Component::GetNParams(const long method_num) {
|
||||
return methods_meta[method_num].params_count;
|
||||
}
|
||||
|
||||
bool Component::GetParamDefValue(const long method_num, const long param_num, tVariant *def_value) {
|
||||
|
||||
auto &def_args = methods_meta[method_num].default_args;
|
||||
|
||||
auto it = def_args.find(param_num);
|
||||
if (it == def_args.end()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
storeVariable(it->second, *def_value);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Component::HasRetVal(const long method_num) {
|
||||
return methods_meta[method_num].returns_value;
|
||||
}
|
||||
|
||||
bool Component::CallAsProc(const long method_num, tVariant *params, const long array_size) {
|
||||
|
||||
try {
|
||||
auto args = parseParams(params, array_size);
|
||||
methods_meta[method_num].call(args);
|
||||
#ifdef OUT_PARAMS
|
||||
storeParams(args, params);
|
||||
#endif
|
||||
} catch (const std::exception &e) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), e.what(), true);
|
||||
return false;
|
||||
} catch (...) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), UNKNOWN_EXCP, true);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Component::CallAsFunc(const long method_num, tVariant *ret_value, tVariant *params, const long array_size) {
|
||||
|
||||
try {
|
||||
auto args = parseParams(params, array_size);
|
||||
variant_t result = methods_meta[method_num].call(args);
|
||||
storeVariable(result, *ret_value);
|
||||
#ifdef OUT_PARAMS
|
||||
storeParams(args, params);
|
||||
#endif
|
||||
} catch (const std::exception &e) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), e.what(), true);
|
||||
return false;
|
||||
} catch (...) {
|
||||
AddError(ADDIN_E_FAIL, extensionName(), UNKNOWN_EXCP, true);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
void Component::AddError(unsigned short code, const std::string &src, const std::string &msg, bool throw_excp) {
|
||||
WCHAR_T *source = nullptr;
|
||||
WCHAR_T *descr = nullptr;
|
||||
|
||||
storeVariable(src, &source);
|
||||
storeVariable(msg, &descr);
|
||||
|
||||
connection->AddError(code, source, descr, throw_excp);
|
||||
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&source));
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&descr));
|
||||
}
|
||||
|
||||
bool Component::ExternalEvent(const std::string &src, const std::string &msg, const std::string &data) {
|
||||
WCHAR_T *wszSource = nullptr;
|
||||
WCHAR_T *wszMessage = nullptr;
|
||||
WCHAR_T *wszData = nullptr;
|
||||
|
||||
storeVariable(src, &wszSource);
|
||||
storeVariable(msg, &wszMessage);
|
||||
storeVariable(data, &wszData);
|
||||
|
||||
auto success = connection->ExternalEvent(wszSource, wszMessage, wszData);
|
||||
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&wszSource));
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&wszMessage));
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&wszData));
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
void Component::AddProperty(const std::wstring &alias, const std::wstring &alias_ru,
|
||||
bool is_readable, bool is_writable,
|
||||
std::function<std::shared_ptr<variant_t>(void)> getter,
|
||||
std::function<void(variant_t &&)> setter) {
|
||||
|
||||
if ((is_readable && !getter) || (is_writable && !setter)) {
|
||||
return;
|
||||
}
|
||||
|
||||
PropertyMeta meta{alias, alias_ru, is_readable, is_writable, std::move(getter), std::move(setter)};
|
||||
properties_meta.push_back(std::move(meta));
|
||||
|
||||
}
|
||||
|
||||
void Component::AddProperty(const std::wstring &alias, const std::wstring &alias_ru,
|
||||
std::shared_ptr<variant_t> storage) {
|
||||
|
||||
if (!storage) {
|
||||
return;
|
||||
}
|
||||
|
||||
AddProperty(alias, alias_ru, true, true,
|
||||
[storage]() { // getter
|
||||
return storage;
|
||||
},
|
||||
[storage](variant_t &&v) -> void { //setter
|
||||
*storage = std::move(v);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
variant_t Component::toStlVariant(tVariant src) {
|
||||
switch (src.vt) {
|
||||
case VTYPE_EMPTY:
|
||||
return UNDEFINED;
|
||||
case VTYPE_I4: //int32_t
|
||||
return src.lVal;
|
||||
case VTYPE_R8: //double
|
||||
return src.dblVal;
|
||||
case VTYPE_PWSTR: { //std::string
|
||||
return toUTF8String(std::basic_string_view(src.pwstrVal, src.wstrLen));
|
||||
}
|
||||
case VTYPE_BOOL:
|
||||
return src.bVal;
|
||||
case VTYPE_BLOB:
|
||||
return std::vector<char>(src.pstrVal, src.pstrVal + src.strLen);
|
||||
default:
|
||||
throw std::bad_cast();
|
||||
}
|
||||
}
|
||||
|
||||
void Component::storeVariable(const variant_t &src, tVariant &dst) {
|
||||
|
||||
if (dst.vt == VTYPE_PWSTR && dst.pwstrVal != nullptr) {
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&dst.pwstrVal));
|
||||
}
|
||||
|
||||
if ((dst.vt == VTYPE_PSTR || dst.vt == VTYPE_BLOB) && dst.pstrVal != nullptr) {
|
||||
memory_manager->FreeMemory(reinterpret_cast<void **>(&dst.pstrVal));
|
||||
}
|
||||
|
||||
std::visit(overloaded{
|
||||
[&](std::monostate) { dst.vt = VTYPE_EMPTY; },
|
||||
[&](const int32_t &v) {
|
||||
dst.vt = VTYPE_I4;
|
||||
dst.lVal = v;
|
||||
},
|
||||
[&](const double &v) {
|
||||
dst.vt = VTYPE_R8;
|
||||
dst.dblVal = v;
|
||||
},
|
||||
[&](const bool v) {
|
||||
dst.vt = VTYPE_BOOL;
|
||||
dst.bVal = v;
|
||||
},
|
||||
[&](const std::string &v) { storeVariable(v, dst); },
|
||||
[&](const std::vector<char> &v) { storeVariable(v, dst); }
|
||||
}, src);
|
||||
|
||||
}
|
||||
|
||||
void Component::storeVariable(const std::string &src, tVariant &dst) {
|
||||
|
||||
std::u16string tmp = toUTF16String(src);
|
||||
|
||||
dst.vt = VTYPE_PWSTR;
|
||||
storeVariable(tmp, &dst.pwstrVal);
|
||||
dst.wstrLen = static_cast<uint32_t>(tmp.length());
|
||||
}
|
||||
|
||||
void Component::storeVariable(const std::string &src, WCHAR_T **dst) {
|
||||
std::u16string tmp = toUTF16String(src);
|
||||
storeVariable(tmp, dst);
|
||||
}
|
||||
|
||||
void Component::storeVariable(const std::u16string &src, WCHAR_T **dst) {
|
||||
|
||||
size_t c_size = (src.size() + 1) * sizeof(char16_t);
|
||||
|
||||
if (!memory_manager || !memory_manager->AllocMemory(reinterpret_cast<void **>(dst), c_size)) {
|
||||
throw std::bad_alloc();
|
||||
};
|
||||
|
||||
memcpy(*dst, src.c_str(), c_size);
|
||||
}
|
||||
|
||||
void Component::storeVariable(const std::vector<char> &src, tVariant &dst) {
|
||||
|
||||
dst.vt = VTYPE_BLOB;
|
||||
dst.strLen = src.size();
|
||||
|
||||
if (!memory_manager || !memory_manager->AllocMemory(reinterpret_cast<void **>(&dst.pstrVal), src.size())) {
|
||||
throw std::bad_alloc();
|
||||
};
|
||||
|
||||
memcpy(dst.pstrVal, src.data(), src.size());
|
||||
}
|
||||
|
||||
std::vector<variant_t> Component::parseParams(tVariant *params, long array_size) {
|
||||
std::vector<variant_t> result;
|
||||
|
||||
auto size = static_cast<const unsigned long>(array_size);
|
||||
result.reserve(size);
|
||||
for (size_t i = 0; i < size; i++) {
|
||||
result.emplace_back(toStlVariant(params[i]));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
void Component::storeParams(const std::vector<variant_t> &src, tVariant *dest) {
|
||||
for (size_t i = 0; i < src.size(); i++) {
|
||||
storeVariable(src[i], dest[i]);
|
||||
}
|
||||
}
|
||||
|
||||
std::wstring Component::toUpper(std::wstring str) {
|
||||
std::transform(str.begin(), str.end(), str.begin(), std::towupper);
|
||||
return str;
|
||||
}
|
||||
|
||||
std::string Component::toUTF8String(std::basic_string_view<WCHAR_T> src) {
|
||||
#ifdef _WINDOWS
|
||||
// VS bug
|
||||
// https://social.msdn.microsoft.com/Forums/en-US/8f40dcd8-c67f-4eba-9134-a19b9178e481/vs-2015-rc-linker-stdcodecvt-error?forum=vcgeneral
|
||||
static std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> cvt_utf8_utf16;
|
||||
return cvt_utf8_utf16.to_bytes(src.data(), src.data() + src.size());
|
||||
#else
|
||||
static std::wstring_convert<std::codecvt_utf8_utf16<char16_t>, char16_t> cvt_utf8_utf16;
|
||||
return cvt_utf8_utf16.to_bytes(reinterpret_cast<const char16_t *>(src.data()),
|
||||
reinterpret_cast<const char16_t *>(src.data() + src.size()));
|
||||
#endif
|
||||
}
|
||||
|
||||
std::wstring Component::toWstring(std::basic_string_view<WCHAR_T> src) {
|
||||
#ifdef _WINDOWS
|
||||
return std::wstring(src);
|
||||
#else
|
||||
std::wstring_convert<std::codecvt_utf16<wchar_t, 0x10ffff, std::little_endian>> conv;
|
||||
return conv.from_bytes(reinterpret_cast<const char*>(src.data()),
|
||||
reinterpret_cast<const char*>(src.data() + src.size()));
|
||||
#endif
|
||||
}
|
||||
|
||||
std::u16string Component::toUTF16String(std::string_view src) {
|
||||
#ifdef _WINDOWS
|
||||
static std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> cvt_utf8_utf16;
|
||||
std::wstring tmp = cvt_utf8_utf16.from_bytes(src.data(), src.data() + src.size());
|
||||
return std::u16string(reinterpret_cast<const char16_t *>(tmp.data()), tmp.size());
|
||||
#else
|
||||
static std::wstring_convert<std::codecvt_utf8_utf16<char16_t>, char16_t> cvt_utf8_utf16;
|
||||
return cvt_utf8_utf16.from_bytes(src.data(), src.data() + src.size());
|
||||
#endif
|
||||
}
|
217
src/Component.h
Normal file
217
src/Component.h
Normal file
@ -0,0 +1,217 @@
|
||||
/*
|
||||
* Modern Native AddIn
|
||||
* Copyright (C) 2018 Infactum
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef COMPONENT_H
|
||||
#define COMPONENT_H
|
||||
|
||||
#include <functional>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <variant>
|
||||
#include <vector>
|
||||
|
||||
#include <AddInDefBase.h>
|
||||
#include <ComponentBase.h>
|
||||
#include <IMemoryManager.h>
|
||||
#include <types.h>
|
||||
|
||||
template<class... Ts>
|
||||
struct overloaded : Ts ... {
|
||||
using Ts::operator()...;
|
||||
};
|
||||
template<class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
|
||||
|
||||
#define UNDEFINED std::monostate()
|
||||
|
||||
typedef std::variant<
|
||||
std::monostate,
|
||||
int32_t,
|
||||
double,
|
||||
bool,
|
||||
std::string,
|
||||
std::vector<char>
|
||||
> variant_t;
|
||||
|
||||
class Component : public IComponentBase {
|
||||
public:
|
||||
|
||||
bool ADDIN_API Init(void *connection_) final;
|
||||
|
||||
bool ADDIN_API setMemManager(void *memory_manager_) final;
|
||||
|
||||
long ADDIN_API GetInfo() final { return 2100; };
|
||||
|
||||
void ADDIN_API Done() final {};
|
||||
|
||||
void ADDIN_API SetLocale(const WCHAR_T *locale) final;
|
||||
|
||||
bool ADDIN_API RegisterExtensionAs(WCHAR_T **ext_name) final;
|
||||
|
||||
long ADDIN_API GetNProps() final;
|
||||
|
||||
long ADDIN_API FindProp(const WCHAR_T *prop_name) final;
|
||||
|
||||
const WCHAR_T *ADDIN_API GetPropName(long num, long lang_alias) final;
|
||||
|
||||
bool ADDIN_API GetPropVal(const long num, tVariant *value) final;
|
||||
|
||||
bool ADDIN_API SetPropVal(const long num, tVariant *value) final;
|
||||
|
||||
bool ADDIN_API IsPropReadable(const long lPropNum) final;
|
||||
|
||||
bool ADDIN_API IsPropWritable(const long lPropNum) final;
|
||||
|
||||
long ADDIN_API GetNMethods() final;
|
||||
|
||||
long ADDIN_API FindMethod(const WCHAR_T *method_name) final;
|
||||
|
||||
const WCHAR_T *ADDIN_API GetMethodName(const long num, const long lang_alias) final;
|
||||
|
||||
long ADDIN_API GetNParams(const long method_num) final;
|
||||
|
||||
bool ADDIN_API GetParamDefValue(const long method_num, const long param_num, tVariant *def_value) final;
|
||||
|
||||
bool ADDIN_API HasRetVal(const long method_num) final;
|
||||
|
||||
bool ADDIN_API CallAsProc(const long method_num, tVariant *params, const long array_size) final;
|
||||
|
||||
bool ADDIN_API CallAsFunc(const long method_num, tVariant *ret_value, tVariant *params,
|
||||
const long array_size) final;
|
||||
|
||||
protected:
|
||||
virtual std::string extensionName() = 0;
|
||||
|
||||
void AddError(unsigned short code, const std::string &src, const std::string &msg, bool throw_excp);
|
||||
|
||||
bool ExternalEvent(const std::string &src, const std::string &msg, const std::string &data);
|
||||
|
||||
void AddProperty(const std::wstring &alias, const std::wstring &alias_ru,
|
||||
bool is_readable, bool is_writable,
|
||||
std::function<std::shared_ptr<variant_t>(void)> getter = nullptr,
|
||||
std::function<void(variant_t &&)> setter = nullptr);
|
||||
|
||||
void AddProperty(const std::wstring &alias, const std::wstring &alias_ru,
|
||||
std::shared_ptr<variant_t> storage);
|
||||
|
||||
template<typename T, typename C, typename ... Ts>
|
||||
void AddMethod(const std::wstring &alias, const std::wstring &alias_ru, C *c, T(C::*f)(Ts ...),
|
||||
std::map<long, variant_t> &&def_args = {});
|
||||
|
||||
private:
|
||||
class PropertyMeta;
|
||||
|
||||
class MethodMeta;
|
||||
|
||||
template<size_t... Indices>
|
||||
static auto refTupleGen(std::vector<variant_t> &v, std::index_sequence<Indices...>);
|
||||
|
||||
static variant_t toStlVariant(tVariant src);
|
||||
|
||||
static std::string toUTF8String(std::basic_string_view<WCHAR_T> src);
|
||||
|
||||
static std::wstring toWstring(std::basic_string_view<WCHAR_T> src);
|
||||
|
||||
static std::u16string toUTF16String(std::string_view src);
|
||||
|
||||
void storeVariable(const std::string &src, tVariant &dst);
|
||||
|
||||
void storeVariable(const std::string &src, WCHAR_T **dst);
|
||||
|
||||
void storeVariable(const std::u16string &src, WCHAR_T **dst);
|
||||
|
||||
void storeVariable(const std::vector<char> &src, tVariant &dst);
|
||||
|
||||
void storeVariable(const variant_t &src, tVariant &dst);
|
||||
|
||||
static std::vector<variant_t> parseParams(tVariant *params, long array_size);
|
||||
|
||||
void storeParams(const std::vector<variant_t> &src, tVariant *dest);
|
||||
|
||||
static std::wstring toUpper(std::wstring str);
|
||||
|
||||
IAddInDefBase *connection;
|
||||
IMemoryManager *memory_manager;
|
||||
std::vector<PropertyMeta> properties_meta;
|
||||
std::vector<MethodMeta> methods_meta;
|
||||
static constexpr char UNKNOWN_EXCP[] = u8"Unknown unhandled exception";
|
||||
|
||||
};
|
||||
|
||||
class Component::PropertyMeta {
|
||||
public:
|
||||
PropertyMeta &operator=(const PropertyMeta &) = delete;
|
||||
|
||||
PropertyMeta(const PropertyMeta &) = delete;
|
||||
|
||||
PropertyMeta(PropertyMeta &&) = default;
|
||||
|
||||
PropertyMeta &operator=(PropertyMeta &&) = default;
|
||||
|
||||
std::wstring alias;
|
||||
std::wstring alias_ru;
|
||||
bool is_readable;
|
||||
bool is_writable;
|
||||
std::function<std::shared_ptr<variant_t>(void)> getter;
|
||||
std::function<void(variant_t &&)> setter;
|
||||
};
|
||||
|
||||
class Component::MethodMeta {
|
||||
public:
|
||||
MethodMeta &operator=(const MethodMeta &) = delete;
|
||||
|
||||
MethodMeta(const MethodMeta &) = delete;
|
||||
|
||||
MethodMeta(MethodMeta &&) = default;
|
||||
|
||||
MethodMeta &operator=(MethodMeta &&) = default;
|
||||
|
||||
std::wstring alias;
|
||||
std::wstring alias_ru;
|
||||
long params_count;
|
||||
bool returns_value;
|
||||
std::map<long, variant_t> default_args;
|
||||
std::function<variant_t(std::vector<variant_t> ¶ms)> call;
|
||||
};
|
||||
|
||||
template<size_t... Indices>
|
||||
auto Component::refTupleGen(std::vector<variant_t> &v, std::index_sequence<Indices...>) {
|
||||
return std::forward_as_tuple(v[Indices]...);
|
||||
}
|
||||
|
||||
template<typename T, typename C, typename ... Ts>
|
||||
void Component::AddMethod(const std::wstring &alias, const std::wstring &alias_ru, C *c, T(C::*f)(Ts ...),
|
||||
std::map<long, variant_t> &&def_args) {
|
||||
|
||||
MethodMeta meta{alias, alias_ru, sizeof...(Ts), !std::is_same<T, void>::value, std::move(def_args),
|
||||
[f, c](std::vector<variant_t> ¶ms) -> variant_t {
|
||||
auto args = refTupleGen(params, std::make_index_sequence<sizeof...(Ts)>());
|
||||
if constexpr (std::is_same<T, void>::value) {
|
||||
std::apply(f, std::tuple_cat(std::make_tuple(c), args));
|
||||
return UNDEFINED;
|
||||
} else {
|
||||
return std::apply(f, std::tuple_cat(std::make_tuple(c), args));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
methods_meta.push_back(std::move(meta));
|
||||
};
|
||||
|
||||
#endif //COMPONENT_H
|
104
src/SampleAddIn.cpp
Normal file
104
src/SampleAddIn.cpp
Normal file
@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Modern Native AddIn
|
||||
* Copyright (C) 2018 Infactum
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <chrono>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
|
||||
#include "SampleAddIn.h"
|
||||
|
||||
std::string SampleAddIn::extensionName() {
|
||||
return "Sample";
|
||||
}
|
||||
|
||||
SampleAddIn::SampleAddIn() {
|
||||
// Universal property. Could store any supported by native api type.
|
||||
sample_property = std::make_shared<variant_t>();
|
||||
AddProperty(L"SampleProperty", L"ОбразецСвойства", sample_property);
|
||||
|
||||
// Full featured property registration example
|
||||
AddProperty(L"Version", L"ВерсияКомпоненты", true, false, [&]() {
|
||||
auto s = std::string(Version);
|
||||
return std::make_shared<variant_t>(std::move(s));
|
||||
});
|
||||
|
||||
// Method registration.
|
||||
// Lambdas as method handlers are not supported.
|
||||
AddMethod(L"Add", L"Сложить", this, &SampleAddIn::add);
|
||||
AddMethod(L"Message", L"Сообщить", this, &SampleAddIn::message);
|
||||
AddMethod(L"Assign", L"Присвоить", this, &SampleAddIn::assign);
|
||||
AddMethod(L"SamplePropertyValue", L"ЗначениеСвойстваОбразца", this, &SampleAddIn::samplePropertyValue);
|
||||
|
||||
// Method registration with default arguments
|
||||
//
|
||||
// Notice that if variant_t would be non-copy you can't use initializer list.
|
||||
// Proper way to register def args would be then:
|
||||
// std::map<long, variant_t> def_args;
|
||||
// def_args.insert({0, 5});
|
||||
// AddMethod(u"Sleep", u"Ожидать", this, &SampleAddIn::sleep, std::move(def_args));
|
||||
//
|
||||
AddMethod(L"Sleep", L"Ожидать", this, &SampleAddIn::sleep, {{0, 5}});
|
||||
|
||||
}
|
||||
|
||||
// Sample of addition method. Support both integer and string params.
|
||||
// Every exceptions derived from std::exceptions are handled by components API
|
||||
variant_t SampleAddIn::add(const variant_t &a, const variant_t &b) {
|
||||
if (std::holds_alternative<int32_t>(a) && std::holds_alternative<int32_t>(b)) {
|
||||
return std::get<int32_t>(a) + std::get<int32_t>(b);
|
||||
} else if (std::holds_alternative<std::string>(a) && std::holds_alternative<std::string>(b)) {
|
||||
return std::string{std::get<std::string>(a) + std::get<std::string>(b)};
|
||||
} else {
|
||||
throw std::runtime_error(u8"Неподдерживаемые типы данных");
|
||||
}
|
||||
}
|
||||
|
||||
void SampleAddIn::message(const variant_t &msg) {
|
||||
std::visit(overloaded{
|
||||
[&](const std::string &v) { AddError(ADDIN_E_INFO, extensionName(), v, false); },
|
||||
[&](const int32_t &v) {
|
||||
AddError(ADDIN_E_INFO, extensionName(), std::to_string(static_cast<int>(v)), false);
|
||||
},
|
||||
[&](const double &v) { AddError(ADDIN_E_INFO, extensionName(), std::to_string(v), false); },
|
||||
[&](const bool &v) {
|
||||
AddError(ADDIN_E_INFO, extensionName(), std::string(v ? u8"Истина" : u8"Ложь"), false);
|
||||
},
|
||||
[&](const std::vector<char> &v) {},
|
||||
[&](const std::monostate &) {}
|
||||
}, msg);
|
||||
}
|
||||
|
||||
void SampleAddIn::sleep(const variant_t &delay) {
|
||||
using namespace std;
|
||||
// It safe to get any type from variant.
|
||||
// Exceptions are handled by component API.
|
||||
this_thread::sleep_for(chrono::seconds(get<int32_t>(delay)));
|
||||
}
|
||||
|
||||
// Out params support option must be enabled for this to work
|
||||
void SampleAddIn::assign(variant_t &out) {
|
||||
out = true;
|
||||
}
|
||||
|
||||
// Despite that you can return property value through method this is not recommended
|
||||
// due to unwanted data copying
|
||||
variant_t SampleAddIn::samplePropertyValue() {
|
||||
return *sample_property;
|
||||
}
|
47
src/SampleAddIn.h
Normal file
47
src/SampleAddIn.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Modern Native AddIn
|
||||
* Copyright (C) 2018 Infactum
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SAMPLEADDIN_H
|
||||
#define SAMPLEADDIN_H
|
||||
|
||||
#include "Component.h"
|
||||
|
||||
class SampleAddIn final : public Component {
|
||||
public:
|
||||
const char *Version = u8"1.0.0";
|
||||
|
||||
SampleAddIn();
|
||||
|
||||
private:
|
||||
std::string extensionName() override;
|
||||
|
||||
variant_t add(const variant_t &a, const variant_t &b);
|
||||
|
||||
void message(const variant_t &msg);
|
||||
|
||||
void sleep(const variant_t &delay);
|
||||
|
||||
void assign(variant_t &out);
|
||||
|
||||
variant_t samplePropertyValue();
|
||||
|
||||
std::shared_ptr<variant_t> sample_property;
|
||||
};
|
||||
|
||||
#endif //SAMPLEADDIN_H
|
7
src/addin.def
Normal file
7
src/addin.def
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY "SampleAddIn"
|
||||
|
||||
EXPORTS
|
||||
GetClassObject
|
||||
DestroyObject
|
||||
GetClassNames
|
||||
SetPlatformCapabilities
|
20
src/dllmain.cpp
Normal file
20
src/dllmain.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include "stdafx.h"
|
||||
|
||||
#ifndef __linux__
|
||||
|
||||
BOOL APIENTRY DllMain(HMODULE hModule,
|
||||
DWORD ul_reason_for_call,
|
||||
LPVOID lpReserved
|
||||
) {
|
||||
switch (ul_reason_for_call) {
|
||||
case DLL_PROCESS_ATTACH:
|
||||
case DLL_THREAD_ATTACH:
|
||||
case DLL_THREAD_DETACH:
|
||||
case DLL_PROCESS_DETACH:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#endif //__linux__
|
55
src/exports.cpp
Normal file
55
src/exports.cpp
Normal file
@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Modern Native AddIn
|
||||
* Copyright (C) 2018 Infactum
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ComponentBase.h>
|
||||
#include <types.h>
|
||||
|
||||
#include "SampleAddIn.h"
|
||||
|
||||
const WCHAR_T *GetClassNames() {
|
||||
static char16_t cls_names[] = u"Sample|SampleAlias";
|
||||
return reinterpret_cast<WCHAR_T *>(cls_names);
|
||||
}
|
||||
|
||||
long GetClassObject(const WCHAR_T *clsName, IComponentBase **pInterface) {
|
||||
if (!*pInterface) {
|
||||
auto cls_name = std::u16string(reinterpret_cast<const char16_t *>(clsName));
|
||||
if (cls_name == u"Sample") {
|
||||
*pInterface = new SampleAddIn;
|
||||
} else if (cls_name == u"SampleAlias") {
|
||||
*pInterface = new SampleAddIn;
|
||||
}
|
||||
return (long) *pInterface;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
long DestroyObject(IComponentBase **pInterface) {
|
||||
if (!*pInterface) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
delete *pInterface;
|
||||
*pInterface = nullptr;
|
||||
return 0;
|
||||
}
|
||||
|
||||
AppCapabilities SetPlatformCapabilities(const AppCapabilities capabilities) {
|
||||
return eAppCapabilitiesLast;
|
||||
}
|
10
src/stdafx.h
Normal file
10
src/stdafx.h
Normal file
@ -0,0 +1,10 @@
|
||||
#ifndef __STDAFX_H__
|
||||
#define __STDAFX_H__
|
||||
|
||||
#ifndef __linux__
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#endif //__linux__
|
||||
|
||||
#endif //__STDAFX_H__
|
Loading…
Reference in New Issue
Block a user