Anbindung an ptk; Style auf K&R geändert; Lesen von stdin; Beispiel hinzugefügt
This commit is contained in:
parent
845ccce476
commit
c2c71db458
107
examples/logic/logic.tp2.json
Normal file
107
examples/logic/logic.tp2.json
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
{
|
||||
"lexer_rules": [
|
||||
{
|
||||
"type": "ignore",
|
||||
"parameters": {
|
||||
"pattern": " |\\t|\\n"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"parameters": {
|
||||
"pattern": "false|0",
|
||||
"id": "const",
|
||||
"value": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"parameters": {
|
||||
"pattern": "true|1",
|
||||
"id": "const",
|
||||
"value": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "void",
|
||||
"parameters": {
|
||||
"pattern": "¬|-|\\!|not",
|
||||
"id": "not"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "void",
|
||||
"parameters": {
|
||||
"pattern": "∧|&|and",
|
||||
"id": "and"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "void",
|
||||
"parameters": {
|
||||
"pattern": "∨|\\||or",
|
||||
"id": "or"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "void",
|
||||
"parameters": {
|
||||
"pattern": "\\(|\\[",
|
||||
"id": "open"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "void",
|
||||
"parameters": {
|
||||
"pattern": "\\)|\\]",
|
||||
"id": "close"
|
||||
}
|
||||
}
|
||||
],
|
||||
"parser_start": "formula",
|
||||
"parser_rules": [
|
||||
{
|
||||
"label": "constant",
|
||||
"premise": "formula",
|
||||
"conclusion": [
|
||||
{"type": "terminal", "parameters": {"id": "const"}}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "negation",
|
||||
"premise": "formula",
|
||||
"conclusion": [
|
||||
{"type": "terminal", "parameters": {"id": "not"}},
|
||||
{"type": "variable", "parameters": {"id": "formula"}}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "conjunction",
|
||||
"premise": "formula",
|
||||
"conclusion": [
|
||||
{"type": "variable", "parameters": {"id": "formula"}},
|
||||
{"type": "terminal", "parameters": {"id": "and"}},
|
||||
{"type": "variable", "parameters": {"id": "formula"}}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "disjunction",
|
||||
"premise": "formula",
|
||||
"conclusion": [
|
||||
{"type": "variable", "parameters": {"id": "formula"}},
|
||||
{"type": "terminal", "parameters": {"id": "or"}},
|
||||
{"type": "variable", "parameters": {"id": "formula"}}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "priorised",
|
||||
"premise": "formula",
|
||||
"conclusion": [
|
||||
{"type": "terminal", "parameters": {"id": "open"}},
|
||||
{"type": "variable", "parameters": {"id": "formula"}},
|
||||
{"type": "terminal", "parameters": {"id": "close"}}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
4
examples/logic/readme.md
Normal file
4
examples/logic/readme.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
## Example
|
||||
|
||||
`echo '0&1' | node build/type2.js examples/logic/logic.tp2.json`
|
||||
|
||||
861
lib/plankton/base/licence.txt
Normal file
861
lib/plankton/base/licence.txt
Normal file
|
|
@ -0,0 +1,861 @@
|
|||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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 General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is 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. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
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.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
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 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. Use with the GNU Affero General Public License.
|
||||
|
||||
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 Affero 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 special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU 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 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 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 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 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU 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 the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
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 GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
||||
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser 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
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
|
||||
386
lib/plankton/base/logic-decl.d.ts
vendored
Normal file
386
lib/plankton/base/logic-decl.d.ts
vendored
Normal file
|
|
@ -0,0 +1,386 @@
|
|||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare type int = number;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare type float = number;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare type type_time = {
|
||||
hours: int;
|
||||
minutes: int;
|
||||
seconds: int;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare type type_pseudopointer<type_value> = {
|
||||
value: type_value;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function pseudopointer_null<type_value>(): type_pseudopointer<type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function pseudopointer_make<type_value>(value: type_value): type_pseudopointer<type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function pseudopointer_isset<type_value>(pseudopointer: type_pseudopointer<type_value>): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function pseudopointer_read<type_value>(pseudopointer: type_pseudopointer<type_value>): type_value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function pseudopointer_write<type_value>(pseudopointer: type_pseudopointer<type_value>, value: type_value): void;
|
||||
declare var process: any;
|
||||
declare var require: any;
|
||||
declare class Buffer {
|
||||
constructor(x: string, modifier?: string);
|
||||
toString(modifier?: string): string;
|
||||
}
|
||||
declare var java: any;
|
||||
declare module lib_base {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function environment(): string;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare var instance_verbosity: int;
|
||||
/**
|
||||
* @desc the ability to check for equality with another element of the same domain
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_collatable<type_value> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
_collate(value: type_value): boolean;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function instance_collate<type_value>(value1: type_value, value2: type_value): boolean;
|
||||
/**
|
||||
* @desc the ability to compare with another element of the same domain for determining if the first is "smaller than or equal to" the latter
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_comparable<type_value> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
_compare(value: type_value): boolean;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function instance_compare<type_value>(value1: type_value, value2: type_value): boolean;
|
||||
/**
|
||||
* @desc the ability to create an exact copy
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_cloneable<type_value> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
_clone(): type_value;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare function instance_clone<type_value>(value: type_value): type_value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_hashable {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
_hash(): string;
|
||||
}
|
||||
/**
|
||||
* @desc the ability to generate a string out of the element, which identifies it to a high degree
|
||||
* @author fenris
|
||||
*/
|
||||
declare function instance_hash<type_value>(value: type_value): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_showable {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
_show(): string;
|
||||
}
|
||||
/**
|
||||
* @desc the ability to map the element to a textual representation (most likely not injective)
|
||||
* @author fenris
|
||||
*/
|
||||
declare function instance_show<type_value>(value: type_value): string;
|
||||
/**
|
||||
* @todo outsource to dedicated plankton-lib
|
||||
*/
|
||||
declare module lib_log {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function log(...args: Array<any>): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function info(...args: Array<any>): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function warn(...args: Array<any>): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function error(...args: Array<any>): void;
|
||||
}
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
interface interface_decorator<type_core> {
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
core: type_core;
|
||||
}
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
declare class class_observer {
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
protected counter: int;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
protected actions: {
|
||||
[id: string]: (information: Object) => void;
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
protected buffer: Array<Object>;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
constructor();
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
empty(): boolean;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
flush(): void;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
set(id: string, action: (information: Object) => void): void;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
del(id: string): void;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
add(action: (information: Object) => void): void;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
notify(information?: Object, delayed?: boolean): void;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
rollout(): void;
|
||||
}
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
declare module lib_maybe {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_maybe<type_value> = {
|
||||
kind: string;
|
||||
parameters: Object;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function make_nothing<type_value>(): type_maybe<type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function make_just<type_value>(value: type_value): type_maybe<type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function is_nothing<type_value>(maybe: type_maybe<type_value>): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function is_just<type_value>(maybe: type_maybe<type_value>): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function cull<type_value>(maybe: type_maybe<type_value>): type_value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function propagate<type_value, type_value_>(maybe: type_maybe<type_value>, function_: (value: type_value) => type_maybe<type_value_>): type_maybe<type_value_>;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare class class_maybe<type_value> implements interface_showable {
|
||||
/**
|
||||
* @desc whether the wrapper is nothing
|
||||
* @author fenris
|
||||
*/
|
||||
is_nothing(): boolean;
|
||||
/**
|
||||
* @desc whether the wrapper is just
|
||||
* @author fenris
|
||||
*/
|
||||
is_just(): boolean;
|
||||
/**
|
||||
* @desc return the value, stored in the maybe-wrapper
|
||||
* @author fenris
|
||||
*/
|
||||
cull(): type_value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
toString(): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
distinguish(action_just: (value?: type_value) => void, action_nothing?: (reason?: string) => void): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
propagate<type_value_>(action: (value: type_value) => class_maybe<type_value_>): class_maybe<type_value_>;
|
||||
/**
|
||||
* @desc [implementation]
|
||||
* @author fenris
|
||||
*/
|
||||
_show(): string;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare class class_nothing<type_value> extends class_maybe<type_value> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private reason;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(reason?: string);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
is_nothing(): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
is_just(): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
cull(): type_value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
toString(): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
reason_get(): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
distinguish(action_just: (value?: type_value) => void, action_nothing?: (reason?: string) => void): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
propagate<type_value_>(action: (value: type_value) => class_maybe<type_value_>): class_maybe<type_value_>;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
declare class class_just<type_value> extends class_maybe<type_value> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(value: type_value);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
is_nothing(): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
is_just(): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
cull(): type_value;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
toString(): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
distinguish(action_just: (value?: type_value) => void, action_nothing?: (reason?: string) => void): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
propagate<type_value_>(action: (value: type_value) => class_maybe<type_value_>): class_maybe<type_value_>;
|
||||
}
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
declare class class_error extends Error {
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
protected suberrors: Array<Error>;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
protected mess: string;
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
constructor(message: string, suberrors?: Array<Error>);
|
||||
/**
|
||||
* @override
|
||||
* @author frac
|
||||
*/
|
||||
toString(): string;
|
||||
}
|
||||
768
lib/plankton/base/logic-impl.js
Normal file
768
lib/plankton/base/logic-impl.js
Normal file
|
|
@ -0,0 +1,768 @@
|
|||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
// }
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ function pseudopointer_null() {
|
||||
return {
|
||||
"value": null
|
||||
};
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ function pseudopointer_make(value) {
|
||||
return {
|
||||
"value": value
|
||||
};
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ function pseudopointer_isset(pseudopointer) {
|
||||
return (pseudopointer.value != null);
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ function pseudopointer_read(pseudopointer) {
|
||||
if (pseudopointer.value != null) {
|
||||
return pseudopointer.value;
|
||||
}
|
||||
else {
|
||||
var message = "nullpointer dereferencation";
|
||||
throw (new Error(message));
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ function pseudopointer_write(pseudopointer, value) {
|
||||
pseudopointer.value = value;
|
||||
}
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
;
|
||||
var lib_base;
|
||||
(function (lib_base) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function environment() {
|
||||
var entries = [
|
||||
{
|
||||
"id": "web",
|
||||
"name": "Web",
|
||||
"predicate": function () { return (typeof (document) !== "undefined"); }
|
||||
},
|
||||
{
|
||||
"id": "node",
|
||||
"name": "Node.js",
|
||||
"predicate": function () { return (typeof (process) !== "undefined"); }
|
||||
},
|
||||
{
|
||||
"id": "rhino",
|
||||
"name": "Rhino",
|
||||
"predicate": function () { return (typeof (java) !== "undefined"); }
|
||||
},
|
||||
{
|
||||
"id": "webworker",
|
||||
"name": "WebWorker",
|
||||
"predicate": function () { return (typeof (self["WorkerNavigator"]) !== "undefined"); }
|
||||
}
|
||||
];
|
||||
var id;
|
||||
var found = entries.some(function (entry) {
|
||||
if (entry.predicate()) {
|
||||
id = entry.id;
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
if (found) {
|
||||
return id;
|
||||
}
|
||||
else {
|
||||
throw (new Error("unknown environment"));
|
||||
}
|
||||
}
|
||||
lib_base.environment = environment;
|
||||
})(lib_base || (lib_base = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
var instance_verbosity = 0;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function instance_collate(value1, value2) {
|
||||
if (typeof (value1) === "object") {
|
||||
if (value1 == null) {
|
||||
return (value2 == null);
|
||||
}
|
||||
else {
|
||||
if ("_collate" in value1) {
|
||||
return value1["_collate"](value2);
|
||||
}
|
||||
else {
|
||||
throw (new Error("[collate]" + " " + "object has no such method"));
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (instance_verbosity >= 1) {
|
||||
lib_log.warn("[collate]" + " " + "primitive value; using default implementation");
|
||||
}
|
||||
return (value1 === value2);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function instance_compare(value1, value2) {
|
||||
if (typeof (value1) === "object") {
|
||||
if ("_compare" in value1) {
|
||||
return value1["_compare"](value2);
|
||||
}
|
||||
else {
|
||||
throw (new Error("[compare]" + " " + "object has no such method"));
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (instance_verbosity >= 1) {
|
||||
lib_log.warn("[compare]" + " " + "primitive value; using default implementation");
|
||||
}
|
||||
return (value1 <= value2);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function instance_clone(value) {
|
||||
if (typeof (value) === "object") {
|
||||
if ("_clone" in value) {
|
||||
return value["_clone"]();
|
||||
}
|
||||
else {
|
||||
throw (new Error("[clone]" + " " + "object has no such method"));
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (instance_verbosity >= 1) {
|
||||
lib_log.warn("[clone]" + " " + "primitive value; using default implementation");
|
||||
}
|
||||
return value;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @desc the ability to generate a string out of the element, which identifies it to a high degree
|
||||
* @author fenris
|
||||
*/
|
||||
function instance_hash(value) {
|
||||
if (typeof (value) === "object") {
|
||||
if ("_hash" in value) {
|
||||
return value["_hash"]();
|
||||
}
|
||||
else {
|
||||
throw (new Error("[hash]" + " " + "object has no such method"));
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (instance_verbosity >= 1) {
|
||||
lib_log.warn("[hash]" + " " + "primitive value; using default implementation");
|
||||
}
|
||||
return String(value);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @desc the ability to map the element to a textual representation (most likely not injective)
|
||||
* @author fenris
|
||||
*/
|
||||
function instance_show(value) {
|
||||
if (typeof (value) === "object") {
|
||||
if (value == null) {
|
||||
return "NULL";
|
||||
}
|
||||
else {
|
||||
if ("_show" in value) {
|
||||
return value["_show"]();
|
||||
}
|
||||
else {
|
||||
// throw (new Error("[show]" + " " + "object has no such method"));
|
||||
return JSON.stringify(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (instance_verbosity >= 1) {
|
||||
lib_log.warn("[show]" + " " + "primitive value; using default implementation");
|
||||
}
|
||||
return String(value);
|
||||
}
|
||||
}
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/**
|
||||
* @todo outsource to dedicated plankton-lib
|
||||
*/
|
||||
var lib_log;
|
||||
(function (lib_log) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function log() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
/*window.*/ console.log.apply(console, args);
|
||||
}
|
||||
lib_log.log = log;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function info() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
/*window.*/ console.info.apply(console, args);
|
||||
}
|
||||
lib_log.info = info;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function warn() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
/*window.*/ console.warn.apply(console, args);
|
||||
}
|
||||
lib_log.warn = warn;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function error() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
/*window.*/ console.error.apply(console, args);
|
||||
}
|
||||
lib_log.error = error;
|
||||
})(lib_log || (lib_log = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
var class_observer = /** @class */ (function () {
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
function class_observer() {
|
||||
this.counter = 0;
|
||||
this.actions = {};
|
||||
this.buffer = [];
|
||||
}
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.empty = function () {
|
||||
return (Object.keys(this.actions).length == 0);
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.flush = function () {
|
||||
this.actions = {};
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.set = function (id, action) {
|
||||
this.actions[id] = action;
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.del = function (id) {
|
||||
delete this.actions[id];
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.add = function (action) {
|
||||
this.set((this.counter++).toString(), action);
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.notify = function (information, delayed) {
|
||||
var _this = this;
|
||||
if (information === void 0) { information = {}; }
|
||||
if (delayed === void 0) { delayed = false; }
|
||||
if (delayed) {
|
||||
this.buffer.push(information);
|
||||
}
|
||||
else {
|
||||
Object.keys(this.actions).forEach(function (id) { return _this.actions[id](information); });
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
class_observer.prototype.rollout = function () {
|
||||
var _this = this;
|
||||
this.buffer.forEach(function (information) { return _this.notify(information, false); });
|
||||
this.buffer = [];
|
||||
};
|
||||
return class_observer;
|
||||
}());
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
/*
|
||||
export interface interface_readable<type_value> {
|
||||
|
||||
|**
|
||||
* @author frac
|
||||
*|
|
||||
read() : type_executor<type_value, Error>;
|
||||
|
||||
}
|
||||
*/
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
/*
|
||||
export interface interface_writeable<type_value> {
|
||||
|
||||
|**
|
||||
* @author frac
|
||||
*|
|
||||
write(value : type_value) : type_executor<void, Error>;
|
||||
|
||||
}
|
||||
*/
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_maybe;
|
||||
(function (lib_maybe) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function make_nothing() {
|
||||
return {
|
||||
"kind": "nothing",
|
||||
"parameters": {}
|
||||
};
|
||||
}
|
||||
lib_maybe.make_nothing = make_nothing;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function make_just(value) {
|
||||
return {
|
||||
"kind": "just",
|
||||
"parameters": {
|
||||
"value": value
|
||||
}
|
||||
};
|
||||
}
|
||||
lib_maybe.make_just = make_just;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function is_nothing(maybe) {
|
||||
return (maybe.kind === "nothing");
|
||||
}
|
||||
lib_maybe.is_nothing = is_nothing;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function is_just(maybe) {
|
||||
return (maybe.kind === "just");
|
||||
}
|
||||
lib_maybe.is_just = is_just;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function cull(maybe) {
|
||||
if (!is_just(maybe)) {
|
||||
var message = "cull from nothing";
|
||||
throw (new Error(message));
|
||||
}
|
||||
else {
|
||||
var value = maybe.parameters["value"];
|
||||
return value;
|
||||
}
|
||||
}
|
||||
lib_maybe.cull = cull;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function propagate(maybe, function_) {
|
||||
if (!is_just(maybe)) {
|
||||
}
|
||||
else {
|
||||
var value = maybe.parameters["value"];
|
||||
var maybe_ = function_(value);
|
||||
return maybe_;
|
||||
}
|
||||
}
|
||||
lib_maybe.propagate = propagate;
|
||||
})(lib_maybe || (lib_maybe = {}));
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ var class_maybe = /** @class */ (function () {
|
||||
function class_maybe() {
|
||||
}
|
||||
/**
|
||||
* @desc whether the wrapper is nothing
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype.is_nothing = function () {
|
||||
throw (new Error("not implemented: class_maybe.is_nothing"));
|
||||
};
|
||||
/**
|
||||
* @desc whether the wrapper is just
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype.is_just = function () {
|
||||
throw (new Error("not implemented: class_maybe.is_just"));
|
||||
};
|
||||
/**
|
||||
* @desc return the value, stored in the maybe-wrapper
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype.cull = function () {
|
||||
throw (new Error("not implemented: class_maybe.cull"));
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype.toString = function () {
|
||||
throw (new Error("not implemented: class_maybe.cull"));
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype.distinguish = function (action_just, action_nothing) {
|
||||
if (action_nothing === void 0) { action_nothing = function () { }; }
|
||||
throw (new Error("not implemented: class_maybe.distinguish"));
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype.propagate = function (action) {
|
||||
throw (new Error("not implemented: class_maybe.propagate"));
|
||||
};
|
||||
/**
|
||||
* @desc [implementation]
|
||||
* @author fenris
|
||||
*/
|
||||
class_maybe.prototype._show = function () {
|
||||
return this.toString();
|
||||
};
|
||||
return class_maybe;
|
||||
}());
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ var class_nothing = /** @class */ (function (_super) {
|
||||
__extends(class_nothing, _super);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function class_nothing(reason) {
|
||||
if (reason === void 0) { reason = null; }
|
||||
var _this = _super.call(this) || this;
|
||||
_this.reason = reason;
|
||||
return _this;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.is_nothing = function () {
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.is_just = function () {
|
||||
return false;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.cull = function () {
|
||||
var message = "you shouldn't cull a nothing-value …";
|
||||
lib_log.warn(message);
|
||||
return null;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.toString = function () {
|
||||
return "<\u00B7>";
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.reason_get = function () {
|
||||
var content = ((this.reason == null) ? "·" : this.reason);
|
||||
return "<- " + content + " ->";
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.distinguish = function (action_just, action_nothing) {
|
||||
if (action_nothing === void 0) { action_nothing = function () { }; }
|
||||
action_nothing(this.reason);
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_nothing.prototype.propagate = function (action) {
|
||||
return (new class_nothing(this.reason));
|
||||
};
|
||||
return class_nothing;
|
||||
}(class_maybe));
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*export*/ var class_just = /** @class */ (function (_super) {
|
||||
__extends(class_just, _super);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function class_just(value) {
|
||||
var _this = _super.call(this) || this;
|
||||
_this.value = value;
|
||||
return _this;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_just.prototype.is_nothing = function () {
|
||||
return false;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_just.prototype.is_just = function () {
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_just.prototype.cull = function () {
|
||||
return this.value;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_just.prototype.toString = function () {
|
||||
var content = instance_show(this.value);
|
||||
return "<+ " + content + " +>";
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_just.prototype.distinguish = function (action_just, action_nothing) {
|
||||
if (action_nothing === void 0) { action_nothing = function () { }; }
|
||||
action_just(this.value);
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class_just.prototype.propagate = function (action) {
|
||||
return action(this.value);
|
||||
};
|
||||
return class_just;
|
||||
}(class_maybe));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:base«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:base« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:base« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:base«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
var class_error = /** @class */ (function (_super) {
|
||||
__extends(class_error, _super);
|
||||
/**
|
||||
* @author frac
|
||||
*/
|
||||
function class_error(message, suberrors) {
|
||||
if (suberrors === void 0) { suberrors = []; }
|
||||
var _this = _super.call(this, message) || this;
|
||||
_this.suberrors = suberrors;
|
||||
_this.mess = message;
|
||||
return _this;
|
||||
}
|
||||
/**
|
||||
* @override
|
||||
* @author frac
|
||||
*/
|
||||
class_error.prototype.toString = function () {
|
||||
return ( /*super.toString()*/this.mess + " " + ("[" + this.suberrors.map(function (x) { return x.toString(); }).join(",") + "]"));
|
||||
};
|
||||
return class_error;
|
||||
}(Error));
|
||||
861
lib/plankton/call/licence.txt
Normal file
861
lib/plankton/call/licence.txt
Normal file
|
|
@ -0,0 +1,861 @@
|
|||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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 General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is 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. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
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.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
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 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. Use with the GNU Affero General Public License.
|
||||
|
||||
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 Affero 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 special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU 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 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 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 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 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU 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 the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
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 GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
||||
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser 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
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
|
||||
394
lib/plankton/call/logic-decl.d.ts
vendored
Normal file
394
lib/plankton/call/logic-decl.d.ts
vendored
Normal file
|
|
@ -0,0 +1,394 @@
|
|||
declare module lib_call {
|
||||
/**
|
||||
* @desc hacked class for postfix function application
|
||||
* @author fenris
|
||||
*/
|
||||
class class_valuewrapper<type_value> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected value: type_value;
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(value: type_value);
|
||||
/**
|
||||
* @desc [accessor] applies a function and returns a new valuewrapper
|
||||
* @author fenris
|
||||
*/
|
||||
pass<type_value_>(function_: (value: type_value) => type_value_): class_valuewrapper<type_value_>;
|
||||
/**
|
||||
* @desc [accessor] gives the wrapped value
|
||||
* @author fenris
|
||||
*/
|
||||
extract(): type_value;
|
||||
}
|
||||
/**
|
||||
* @desc shortcut for constructing a valuewrapper-object
|
||||
* @author fenris
|
||||
*/
|
||||
function vw<type_value>(value: type_value): class_valuewrapper<type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function use<type_input, type_output>(input: type_input, function_: (input: type_input) => type_output): type_output;
|
||||
/**
|
||||
* @desc just the identity; useful for some callbacks etc.
|
||||
* @author fenris
|
||||
*/
|
||||
function id<type_value>(x: type_value): type_value;
|
||||
/**
|
||||
* @desc composes two functions (i.e. returns a function that return the result of the successive execution of both input-functions)
|
||||
* @param {function} function_f
|
||||
* @param {function} function_g
|
||||
* @author fenris
|
||||
*/
|
||||
function compose<type_x, type_y, type_z>(function_f: (type_x: any) => type_y, function_g: (type_y: any) => type_z): (value: type_x) => type_z;
|
||||
/**
|
||||
* @desc transforms a function with sequential input into a function with leveled input; example: add(2,3) = curryfy(add)(2)(3)
|
||||
* @param {function} f
|
||||
* @param {int} n (don't set manually)
|
||||
* @return {function} the currified version of the in put function
|
||||
* @author fenris
|
||||
*/
|
||||
function curryfy(f: Function, n?: int): Function;
|
||||
}
|
||||
declare module lib_call {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_executor<type_result, type_reason> = ((resolve: (result?: type_result) => any, reject?: (reason?: type_reason) => void) => void);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_resolve<type_result, type_reason>(result: type_result): type_executor<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_reject<type_result, type_reason>(reason: type_reason): type_executor<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_transform<type_result_from, type_error_from, type_result_to, type_error_to>(executor: type_executor<type_result_from, type_error_from>, transform_result: (result_from: type_result_from) => type_result_to, transform_reason: (error_from: type_error_from) => type_error_to): type_executor<type_result_to, type_error_to>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_transform_default<type_result_from, type_result_to>(executor: type_executor<type_result_from, Error>, transform_result: (result_from: type_result_from) => type_result_to, wrap_string?: string): type_executor<type_result_to, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_compose_sequential<type_result_first, type_result_second, type_reason>(first: type_executor<type_result_first, type_reason>, second: (result: type_result_first) => type_executor<type_result_second, type_reason>): type_executor<type_result_second, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_chain<type_state, type_error>(state: type_state, executors: Array<(state: type_state) => type_executor<type_state, type_error>>): type_executor<type_state, type_error>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_first<type_result, type_reason>(executors: Array<type_executor<type_result, type_reason>>): type_executor<type_result, Array<type_reason>>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_condense<type_element>(executors: Array<type_executor<type_element, Error>>): type_executor<Array<type_element>, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use condense
|
||||
*/
|
||||
function executor_filter<type_element>(executors: Array<type_executor<type_element, Error>>, predicate: (element: type_element) => boolean): type_executor<Array<type_element>, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use condense
|
||||
*/
|
||||
function executor_map<type_element1, type_element2>(executors: Array<type_executor<type_element1, Error>>, transformator: (element1: type_element1) => type_element2): type_executor<Array<type_element2>, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use condense
|
||||
*/
|
||||
function executor_reduce<type_element, type_result>(executors: Array<type_executor<type_element, Error>>, initial: type_result, accumulator: (result: type_result, element: type_element) => type_result): type_executor<type_result, Error>;
|
||||
}
|
||||
declare module lib_call {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_promise<type_result, type_reason> = Promise<type_result>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_reject<type_result, type_reason>(reason: type_reason): type_promise<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_resolve<type_result, type_reason>(result: type_result): type_promise<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_make<type_result, type_reason>(executor: (resolve: (result?: type_result) => void, reject: (reason?: type_reason) => void) => void): type_promise<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_then_close<type_result, type_reason>(promise: type_promise<type_result, type_reason>, resolver: (result: type_result) => void, rejector: (reason: type_reason) => void): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_then_append<type_result, type_reason, type_result_>(promise: type_promise<type_result, type_reason>, resolver: (result: type_result) => type_promise<type_result_, type_reason>, rejector?: (reason: type_reason) => type_promise<type_result_, type_reason>): type_promise<type_result_, type_result>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_all<type_result, type_reason>(promises: Array<type_promise<type_result, type_reason>>): type_promise<Array<type_result>, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_chain<type_result, type_reason>(promises: Array<(input: type_result) => type_promise<type_result, type_reason>>, start?: type_result): type_promise<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_condense<type_element, type_reason>(promises: Array<() => type_promise<type_element, type_reason>>): type_promise<Array<type_element>, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_group<type_reason>(promises: {
|
||||
[name: string]: () => type_promise<any, type_reason>;
|
||||
}, serial?: boolean): type_promise<{
|
||||
[name: string]: any;
|
||||
}, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_wrap<type_result_inner, type_result_outer, type_reason>(promise: type_promise<type_result_inner, type_reason>, transformator_result: (reason: type_result_inner) => type_result_outer, transformator_reason?: (reason: type_reason) => type_reason): Promise<type_result_outer>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_show<type_result, type_reason>(label: string): (result: type_result) => type_promise<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_log<type_result, type_reason>(result: type_result): (result: type_result) => type_promise<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_attach<type_reason>(state: {
|
||||
[name: string]: any;
|
||||
}, promise: type_promise<any, type_reason>, name: string): type_promise<{
|
||||
[name: string]: any;
|
||||
}, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_delay<type_result, type_reason>(promise: type_promise<type_result, type_reason>, delay: int): Promise<type_result>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_to_executor<type_result, type_reason>(promise: type_promise<type_result, type_reason>): type_executor<type_result, type_reason>;
|
||||
}
|
||||
declare module lib_call {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_initializer_state = int;
|
||||
const initializer_state_initial: type_initializer_state;
|
||||
const initializer_state_waiting: type_initializer_state;
|
||||
const initializer_state_successful: type_initializer_state;
|
||||
const initializer_state_failed: type_initializer_state;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_initializer<type_result, type_reason> = {
|
||||
fetcher: () => type_promise<type_result, type_reason>;
|
||||
state?: type_initializer_state;
|
||||
queue: Array<{
|
||||
resolve: (result?: type_result) => void;
|
||||
reject: (reason?: type_reason) => void;
|
||||
}>;
|
||||
result?: type_result;
|
||||
reason?: type_reason;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_make<type_result, type_reason>(fetcher: () => type_promise<type_result, type_reason>): type_initializer<type_result, type_reason>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_reset<type_result, type_reason>(subject: type_initializer<type_result, type_reason>): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_state<type_result, type_reason>(subject: type_initializer<type_result, type_reason>): type_initializer_state;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_get<type_result, type_reason>(subject: type_initializer<type_result, type_reason>): type_promise<type_result, type_reason>;
|
||||
}
|
||||
declare module lib_call {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_deferral<type_input, type_output> = {
|
||||
representation: (input: type_input) => Promise<type_output>;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc activates the deferral and handles its output according to a given procedure
|
||||
* @param {(value : type_value)=>void} procedure a function which receives the output of the deferral as argument
|
||||
*/
|
||||
function deferral_use<type_input, type_output>(deferral: type_deferral<type_input, type_output>, input: type_input, procedure: (output: type_output) => void): void;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc creates a deferral-subject (similar to "new Promise", where "convey" reflects "resolve"/"reject")
|
||||
*/
|
||||
function deferral_make<type_input, type_output>(handler: (input: type_input, convey: (output: type_output) => void) => void): type_deferral<type_input, type_output>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc wraps a simple function into a deferral (similar to "Promise.resolve"/"Promise.reject")
|
||||
*/
|
||||
function deferral_wrap<type_input, type_output>(function_: (input: type_input) => type_output): type_deferral<type_input, type_output>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_id<type_value>(): type_deferral<type_value, type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_const<type_value>(value: type_value): type_deferral<type_value, type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_delay<type_output>(output: type_output, delay: int): type_deferral<any, type_output>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc connects two deferrals to form a new one; the output of the first is taken as input for the second
|
||||
* (similar to "Promise.then" when passing a function which returns a new promise)
|
||||
* @param {type_deferral<type_value1>} first a simple deferral
|
||||
* @param {(value1 : type_value1)=>type_deferral<type_value2>} second a function depending from a value returning a deferral
|
||||
*/
|
||||
function deferral_compose_serial<type_input, type_between, type_output>(first: type_deferral<type_input, type_between>, second: type_deferral<type_between, type_output>): type_deferral<type_input, type_output>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_compose_parallel<type_input, type_output_left, type_output_right>({ "left": deferral_left, "right": deferral_right, }: {
|
||||
left: type_deferral<type_input, type_output_left>;
|
||||
right: type_deferral<type_input, type_output_right>;
|
||||
}): type_deferral<type_input, {
|
||||
left: type_output_left;
|
||||
right: type_output_right;
|
||||
}>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc repeatedly applied serial composition
|
||||
*/
|
||||
function deferral_chain<type_value>(members: Array<type_deferral<type_value, type_value>>): type_deferral<type_value, type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
}
|
||||
declare module lib_call {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_deferral<type_input, type_output> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private subject;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private constructor();
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private static _cram;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private static _tear;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static make<type_input, type_output>(handler: (input: type_input, convey: (value: type_output) => void) => void): class_deferral<type_input, type_output>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
use(input: type_input, procedure: (value: type_output) => void): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
compose_serial<type_output_>(second: class_deferral<type_output, type_output_>): class_deferral<type_input, type_output_>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static chain<type_value>(members: Array<class_deferral<type_value, type_value>>): class_deferral<type_value, type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static wrap<type_input, type_output>(function_: (input: type_input) => type_output): class_deferral<type_input, type_output>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static const_<type_value>(value: type_value): class_deferral<type_value, type_value>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static delay<type_output>(output: type_output, delay: int): class_deferral<any, type_output>;
|
||||
}
|
||||
}
|
||||
declare module lib_call {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function timeout(function_: () => void, delay: int): int;
|
||||
/**
|
||||
* @desc a definition for a value being "defined"
|
||||
* @author neuc
|
||||
*/
|
||||
function is_def<type_value>(obj: type_value, null_is_valid?: boolean): boolean;
|
||||
/**
|
||||
* @desc returns the value if set and, when a type is specified, if the type is correct, if not return default_value
|
||||
* @author neuc
|
||||
*/
|
||||
function def_val(value: any, default_value: any, type?: string, null_is_valid?: boolean): any;
|
||||
/**
|
||||
* @desc just the empty function; useful for some callbacks etc.
|
||||
* @author fenris
|
||||
*/
|
||||
function nothing(): void;
|
||||
/**
|
||||
* @desc outputs
|
||||
* @author fenris
|
||||
*/
|
||||
function output(...args: Array<any>): void;
|
||||
/**
|
||||
* @desc converts the "arguments"-map into an array
|
||||
* @param {Object} args
|
||||
* @author fenris
|
||||
*/
|
||||
function args2list(args: any): Array<any>;
|
||||
/**
|
||||
* @desc provides the call for an attribute of a class as a regular function
|
||||
* @param {string} name the name of the attribute
|
||||
* @return {*}
|
||||
* @author fenris
|
||||
*/
|
||||
function attribute<type_object, type_attribute>(name: string): (object: type_object) => type_attribute;
|
||||
/**
|
||||
* @desc provides a method of a class as a regular function
|
||||
* @param {string} name the name of the method
|
||||
* @return {function}
|
||||
* @author fenris
|
||||
*/
|
||||
function method<type_object, type_output>(name: string): (object: type_object) => type_output;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_unival = {
|
||||
kind: string;
|
||||
data?: any;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function distinguish(unival: type_unival, handlers: {
|
||||
[kind: string]: (data?: any) => any;
|
||||
}, fallback?: (unival?: type_unival) => any): any;
|
||||
}
|
||||
992
lib/plankton/call/logic-impl.js
Normal file
992
lib/plankton/call/logic-impl.js
Normal file
|
|
@ -0,0 +1,992 @@
|
|||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
"use strict";
|
||||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
/**
|
||||
* @desc hacked class for postfix function application
|
||||
* @author fenris
|
||||
*/
|
||||
class class_valuewrapper {
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(value) {
|
||||
this.value = value;
|
||||
}
|
||||
/**
|
||||
* @desc [accessor] applies a function and returns a new valuewrapper
|
||||
* @author fenris
|
||||
*/
|
||||
pass(function_) {
|
||||
return (new class_valuewrapper(function_(this.value)));
|
||||
}
|
||||
/**
|
||||
* @desc [accessor] gives the wrapped value
|
||||
* @author fenris
|
||||
*/
|
||||
extract() {
|
||||
return this.value;
|
||||
}
|
||||
}
|
||||
lib_call.class_valuewrapper = class_valuewrapper;
|
||||
/**
|
||||
* @desc shortcut for constructing a valuewrapper-object
|
||||
* @author fenris
|
||||
*/
|
||||
function vw(value) {
|
||||
return (new class_valuewrapper(value));
|
||||
}
|
||||
lib_call.vw = vw;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function use(input, function_) {
|
||||
return function_(input);
|
||||
}
|
||||
lib_call.use = use;
|
||||
/**
|
||||
* @desc just the identity; useful for some callbacks etc.
|
||||
* @author fenris
|
||||
*/
|
||||
function id(x) {
|
||||
return x;
|
||||
}
|
||||
lib_call.id = id;
|
||||
/**
|
||||
* @desc composes two functions (i.e. returns a function that return the result of the successive execution of both input-functions)
|
||||
* @param {function} function_f
|
||||
* @param {function} function_g
|
||||
* @author fenris
|
||||
*/
|
||||
function compose(function_f, function_g) {
|
||||
return (function (x) {
|
||||
// return function_g(function_f(x));
|
||||
return function_g(function_f.apply(function_f, lib_call.args2list(arguments)));
|
||||
});
|
||||
}
|
||||
lib_call.compose = compose;
|
||||
/**
|
||||
* @desc transforms a function with sequential input into a function with leveled input; example: add(2,3) = curryfy(add)(2)(3)
|
||||
* @param {function} f
|
||||
* @param {int} n (don't set manually)
|
||||
* @return {function} the currified version of the in put function
|
||||
* @author fenris
|
||||
*/
|
||||
function curryfy(f, n = f.length) {
|
||||
switch (n) {
|
||||
case 0: {
|
||||
throw (new Error("[curryfy] impossible"));
|
||||
// break;
|
||||
}
|
||||
case 1: {
|
||||
return f;
|
||||
// break;
|
||||
}
|
||||
default: {
|
||||
return (function (x) {
|
||||
return (curryfy(function () { return f.apply(f, [x].concat(lib_call.args2list(arguments))); }, n - 1));
|
||||
});
|
||||
// break;
|
||||
}
|
||||
}
|
||||
}
|
||||
lib_call.curryfy = curryfy;
|
||||
})(lib_call || (lib_call = {}));
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_resolve(result) {
|
||||
return ((resolve, reject) => resolve(result));
|
||||
}
|
||||
lib_call.executor_resolve = executor_resolve;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_reject(reason) {
|
||||
return ((resolve, reject) => reject(reason));
|
||||
}
|
||||
lib_call.executor_reject = executor_reject;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_transform(executor, transform_result, transform_reason) {
|
||||
return ((resolve, reject) => {
|
||||
executor(result => resolve(transform_result(result)), reason => reject(transform_reason(reason)));
|
||||
});
|
||||
}
|
||||
lib_call.executor_transform = executor_transform;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_transform_default(executor, transform_result, wrap_string = null) {
|
||||
let transform_reason = (error => ((wrap_string == null) ? error : new class_error(wrap_string, [error])));
|
||||
return (executor_transform(executor, transform_result, transform_reason));
|
||||
}
|
||||
lib_call.executor_transform_default = executor_transform_default;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_compose_sequential(first, second) {
|
||||
return ((resolve, reject) => {
|
||||
first(result => {
|
||||
second(result)(resolve, reject);
|
||||
}, reason => {
|
||||
reject(reason);
|
||||
});
|
||||
});
|
||||
}
|
||||
lib_call.executor_compose_sequential = executor_compose_sequential;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_chain(state, executors) {
|
||||
return ((resolve, reject) => {
|
||||
if (executors.length == 0) {
|
||||
return resolve(state);
|
||||
}
|
||||
else {
|
||||
return executors[0](state)(result => {
|
||||
executor_chain(result, executors.slice(1))(resolve, reject);
|
||||
}, reject);
|
||||
}
|
||||
});
|
||||
/*
|
||||
*/
|
||||
/*
|
||||
if (executors.length == 0) {
|
||||
return executor_resolve<type_state, type_error>(state);
|
||||
}
|
||||
else if (executors.length == 1) {
|
||||
return executors[0](state);
|
||||
}
|
||||
else {
|
||||
return (
|
||||
executor_chain<type_state, type_error>(
|
||||
state,
|
||||
[
|
||||
state => (resolve, reject) => executors[0](state)(result => executors[1](result)(resolve, reject), reject)
|
||||
].concat(executors.slice(2))
|
||||
)
|
||||
);
|
||||
}
|
||||
*/
|
||||
/*
|
||||
return (
|
||||
executors.reduce(
|
||||
(chain, current) => executor_compose_sequential<type_state, type_state, type_error>(chain, current, deferred),
|
||||
executor_resolve<type_state, type_error>(state)
|
||||
)
|
||||
);
|
||||
*/
|
||||
}
|
||||
lib_call.executor_chain = executor_chain;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_first(executors) {
|
||||
/*
|
||||
return (
|
||||
(resolve, reject) => {
|
||||
if (executors.length == 0) {
|
||||
reject(new Error("all failed"));
|
||||
}
|
||||
else {
|
||||
executors[0](
|
||||
result => {
|
||||
resolve(result);
|
||||
},
|
||||
reason => {
|
||||
executor_first<type_result, type_reason>(executors.slice(1))(resolve, reject);
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
);
|
||||
*/
|
||||
return ((resolve, reject) => {
|
||||
executor_chain([], executors.map(executor => reasons => (resolve_, reject_) => {
|
||||
executor(result => reject_(result), reason => resolve_(reasons.concat([reason])));
|
||||
}))(errors => reject(errors), result => resolve(result));
|
||||
});
|
||||
}
|
||||
lib_call.executor_first = executor_first;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function executor_condense(executors) {
|
||||
return (executor_chain([], executors.map(executor => result => (resolve, reject) => {
|
||||
executor(element => resolve(result.concat([element])), reject);
|
||||
})));
|
||||
}
|
||||
lib_call.executor_condense = executor_condense;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use condense
|
||||
*/
|
||||
function executor_filter(executors, predicate) {
|
||||
return (executor_chain([], executors.map(executor => result => (resolve, reject) => {
|
||||
executor(element => resolve(predicate(element) ? result.concat([element]) : result), reject);
|
||||
})));
|
||||
}
|
||||
lib_call.executor_filter = executor_filter;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use condense
|
||||
*/
|
||||
function executor_map(executors, transformator) {
|
||||
return (executor_chain([], executors.map(executor => result => (resolve, reject) => {
|
||||
executor(element1 => resolve(result.concat([transformator(element1)])), reject);
|
||||
})));
|
||||
}
|
||||
lib_call.executor_map = executor_map;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use condense
|
||||
*/
|
||||
function executor_reduce(executors, initial, accumulator) {
|
||||
return (executor_chain(initial, executors.map(executor => result => (resolve, reject) => {
|
||||
executor(element => resolve(accumulator(result, element)), reject);
|
||||
})));
|
||||
}
|
||||
lib_call.executor_reduce = executor_reduce;
|
||||
})(lib_call || (lib_call = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_reject(reason) {
|
||||
return Promise.reject(reason);
|
||||
}
|
||||
lib_call.promise_reject = promise_reject;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_resolve(result) {
|
||||
return Promise.resolve(result);
|
||||
}
|
||||
lib_call.promise_resolve = promise_resolve;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_make(executor) {
|
||||
return (new Promise(executor));
|
||||
}
|
||||
lib_call.promise_make = promise_make;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_then_close(promise, resolver, rejector) {
|
||||
promise.then(resolver, rejector);
|
||||
}
|
||||
lib_call.promise_then_close = promise_then_close;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_then_append(promise, resolver, rejector = null) {
|
||||
if (rejector == null) {
|
||||
rejector = (reason) => promise_reject(reason);
|
||||
}
|
||||
return (promise.then(resolver, rejector));
|
||||
}
|
||||
lib_call.promise_then_append = promise_then_append;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_all(promises) {
|
||||
return Promise.all(promises);
|
||||
}
|
||||
lib_call.promise_all = promise_all;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_chain(promises, start = undefined) {
|
||||
return (promises.reduce((chain, promise) => promise_then_append(chain, promise), promise_resolve(start)));
|
||||
}
|
||||
lib_call.promise_chain = promise_chain;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_condense(promises) {
|
||||
return (promise_chain(promises.map(promise => result => promise_then_append(promise(), element => promise_resolve(result.concat([element])))), []));
|
||||
}
|
||||
lib_call.promise_condense = promise_condense;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_group(promises, serial = false) {
|
||||
const decorate = function (promise, name) {
|
||||
return (() => promise_then_append(promise(), value => promise_resolve({ "key": name, "value": value })));
|
||||
};
|
||||
const convert = function (array) {
|
||||
let object = {};
|
||||
array.forEach(({ "key": key, "value": value }) => { object[key] = value; });
|
||||
return object;
|
||||
};
|
||||
if (serial) {
|
||||
return (promise_then_append(promise_condense(Object.keys(promises)
|
||||
.map(name => decorate(promises[name], name))), list => promise_resolve(convert(list))));
|
||||
}
|
||||
else {
|
||||
return (promise_then_append(promise_all(Object.keys(promises)
|
||||
.map(name => decorate(promises[name], name))
|
||||
.map(promise => promise())), list => promise_resolve(convert(list))));
|
||||
}
|
||||
}
|
||||
lib_call.promise_group = promise_group;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_wrap(promise, transformator_result, transformator_reason = lib_call.id) {
|
||||
return (promise_make((resolve, reject) => {
|
||||
promise_then_close(promise, result => resolve(transformator_result(result)), reason => reject(transformator_reason(reason)));
|
||||
}));
|
||||
}
|
||||
lib_call.promise_wrap = promise_wrap;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_show(label) {
|
||||
return (result => promise_make((resolve, reject) => {
|
||||
lib_log.info(label + ": " + instance_show(result));
|
||||
resolve(result);
|
||||
}));
|
||||
}
|
||||
lib_call.promise_show = promise_show;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_log(result) {
|
||||
return promise_show("log");
|
||||
}
|
||||
lib_call.promise_log = promise_log;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_attach(state, promise, name) {
|
||||
return (promise_wrap(promise, result => {
|
||||
state[name] = result;
|
||||
return state;
|
||||
}));
|
||||
}
|
||||
lib_call.promise_attach = promise_attach;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_delay(promise, delay) {
|
||||
return promise_make((resolve, reject) => {
|
||||
lib_call.timeout(() => {
|
||||
promise_then_close(promise, resolve, reject);
|
||||
return null;
|
||||
}, delay);
|
||||
});
|
||||
}
|
||||
lib_call.promise_delay = promise_delay;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function promise_to_executor(promise) {
|
||||
return ((resolve, reject) => promise.then(resolve, reject));
|
||||
}
|
||||
lib_call.promise_to_executor = promise_to_executor;
|
||||
})(lib_call || (lib_call = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
lib_call.initializer_state_initial = 0;
|
||||
lib_call.initializer_state_waiting = 1;
|
||||
lib_call.initializer_state_successful = 2;
|
||||
lib_call.initializer_state_failed = 3;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_make(fetcher) {
|
||||
let subject = {
|
||||
"fetcher": fetcher,
|
||||
"state": lib_call.initializer_state_initial,
|
||||
"queue": [],
|
||||
"result": undefined,
|
||||
"reason": undefined,
|
||||
};
|
||||
return subject;
|
||||
}
|
||||
lib_call.initializer_make = initializer_make;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_actuate(subject) {
|
||||
switch (subject.state) {
|
||||
case lib_call.initializer_state_successful: {
|
||||
subject.queue.forEach(entry => entry.resolve(subject.result));
|
||||
break;
|
||||
}
|
||||
case lib_call.initializer_state_failed: {
|
||||
subject.queue.forEach(entry => entry.reject(subject.reason));
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
let message = `unhandled state ${subject.state}`;
|
||||
throw (new Error(message));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_reset(subject) {
|
||||
subject.state = lib_call.initializer_state_initial;
|
||||
subject.queue = [];
|
||||
}
|
||||
lib_call.initializer_reset = initializer_reset;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_state(subject) {
|
||||
return subject.state;
|
||||
}
|
||||
lib_call.initializer_state = initializer_state;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_get(subject) {
|
||||
switch (subject.state) {
|
||||
case lib_call.initializer_state_initial: {
|
||||
subject.state = lib_call.initializer_state_waiting;
|
||||
return (lib_call.promise_make((resolve, reject) => {
|
||||
subject.queue.push({ "resolve": resolve, "reject": reject });
|
||||
subject.fetcher().then(result => {
|
||||
subject.state = lib_call.initializer_state_successful;
|
||||
subject.result = result;
|
||||
initializer_actuate(subject);
|
||||
}, reason => {
|
||||
subject.state = lib_call.initializer_state_failed;
|
||||
subject.reason = reason;
|
||||
initializer_actuate(subject);
|
||||
});
|
||||
}));
|
||||
break;
|
||||
}
|
||||
case lib_call.initializer_state_waiting: {
|
||||
return (lib_call.promise_make((resolve, reject) => {
|
||||
subject.queue.push({ "resolve": resolve, "reject": reject });
|
||||
}));
|
||||
break;
|
||||
}
|
||||
case lib_call.initializer_state_successful: {
|
||||
return (lib_call.promise_resolve(subject.result));
|
||||
break;
|
||||
}
|
||||
case lib_call.initializer_state_failed: {
|
||||
return (lib_call.promise_reject(subject.reason));
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
let message = `unhandled state ${subject.state}`;
|
||||
throw (new Error(message));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
lib_call.initializer_get = initializer_get;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_get_sync(subject) {
|
||||
switch (subject.state) {
|
||||
case lib_call.initializer_state_successful: {
|
||||
return subject.result;
|
||||
break;
|
||||
}
|
||||
case lib_call.initializer_state_failed: {
|
||||
throw subject.reason;
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
let message = `unhandled state ${subject.state}`;
|
||||
throw (new Error(message));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function initializer_set_sync(subject, result) {
|
||||
switch (subject.state) {
|
||||
case lib_call.initializer_state_successful: {
|
||||
subject.result = result;
|
||||
break;
|
||||
}
|
||||
case lib_call.initializer_state_failed: {
|
||||
subject.state = lib_call.initializer_state_successful;
|
||||
subject.result = result;
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
let message = `unhandled state ${subject.state}`;
|
||||
throw (new Error(message));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
})(lib_call || (lib_call = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
/*
|
||||
The core idea of this library is to provide means for asynchronous program flow. The old-school way to do is,
|
||||
is to use callbacks. While this approach is simple and easy to understand, it has some disadvantages. As an
|
||||
attempt to relief and improve this, the promise-system was introduced. In principle it solves most of the
|
||||
problems found in the callback-approach; however it has some downsides as well:
|
||||
|
||||
- Convolution of multiple principles
|
||||
Promises unite the ideas of asynchronous program flow and error handling.
|
||||
|
||||
- Instant execution
|
||||
Creating a promise results in the instant execution of the given executor prodecure. While this might be
|
||||
convenient in some cases, it can be quite disturbing and counter-intuitive in others.
|
||||
|
||||
- Broken typing
|
||||
The Promise system doesn't distinguish between an appending "then" (i.e. passing a function, which returns a
|
||||
new promise) and a closing "then" (i.e. passing a function, which has no return value). On top of that it
|
||||
allows returning simple values in an appending "then", which results in an implicit call of the executors
|
||||
"resolve"-function. The price for these "pragmatic" features is that the whole system can't be typed well.
|
||||
And even though JavaScript is not a strictly typed language, it was a quite questionable decision to design
|
||||
the promise system in a way, which breaks typing from the start.
|
||||
|
||||
The deferral-system forseeks to solve these issues while retaining the advantages of the promise-system.
|
||||
*/
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc activates the deferral and handles its output according to a given procedure
|
||||
* @param {(value : type_value)=>void} procedure a function which receives the output of the deferral as argument
|
||||
*/
|
||||
function deferral_use(deferral, input, procedure) {
|
||||
deferral.representation(input).then(value => {
|
||||
procedure(value);
|
||||
}, reason => {
|
||||
throw reason;
|
||||
});
|
||||
}
|
||||
lib_call.deferral_use = deferral_use;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc creates a deferral-subject (similar to "new Promise", where "convey" reflects "resolve"/"reject")
|
||||
*/
|
||||
function deferral_make(handler) {
|
||||
return ({
|
||||
"representation": ((input) => (new Promise((resolve, reject) => {
|
||||
handler(input, resolve);
|
||||
})))
|
||||
});
|
||||
}
|
||||
lib_call.deferral_make = deferral_make;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc wraps a simple function into a deferral (similar to "Promise.resolve"/"Promise.reject")
|
||||
*/
|
||||
function deferral_wrap(function_) {
|
||||
return (deferral_make((input, convey) => convey(function_(input))));
|
||||
}
|
||||
lib_call.deferral_wrap = deferral_wrap;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_id() {
|
||||
return (deferral_make((input, convey) => convey(input)));
|
||||
}
|
||||
lib_call.deferral_id = deferral_id;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_const(value) {
|
||||
return (deferral_make((input, convey) => convey(value)));
|
||||
}
|
||||
lib_call.deferral_const = deferral_const;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_delay(output, delay) {
|
||||
return (deferral_make((input, convey) => {
|
||||
setTimeout(() => convey(output), delay);
|
||||
}));
|
||||
}
|
||||
lib_call.deferral_delay = deferral_delay;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc connects two deferrals to form a new one; the output of the first is taken as input for the second
|
||||
* (similar to "Promise.then" when passing a function which returns a new promise)
|
||||
* @param {type_deferral<type_value1>} first a simple deferral
|
||||
* @param {(value1 : type_value1)=>type_deferral<type_value2>} second a function depending from a value returning a deferral
|
||||
*/
|
||||
function deferral_compose_serial(first, second) {
|
||||
return {
|
||||
"representation": ((input) => first.representation(input).then((between) => second.representation(between)))
|
||||
};
|
||||
}
|
||||
lib_call.deferral_compose_serial = deferral_compose_serial;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function deferral_compose_parallel({ "left": deferral_left, "right": deferral_right, }) {
|
||||
return (deferral_make((input, convey) => {
|
||||
let object = {
|
||||
"left": lib_maybe.make_nothing(),
|
||||
"right": lib_maybe.make_nothing(),
|
||||
};
|
||||
let finish = function () {
|
||||
if (lib_maybe.is_just(object.left)
|
||||
&&
|
||||
lib_maybe.is_just(object.right)) {
|
||||
let result = {
|
||||
"left": lib_maybe.cull(object.left),
|
||||
"right": lib_maybe.cull(object.right),
|
||||
};
|
||||
convey(result);
|
||||
}
|
||||
else {
|
||||
// do nothing
|
||||
}
|
||||
};
|
||||
deferral_use(deferral_left, input, output_left => {
|
||||
object.left = lib_maybe.make_just(output_left);
|
||||
finish();
|
||||
});
|
||||
deferral_use(deferral_right, input, output_right => {
|
||||
object.right = lib_maybe.make_just(output_right);
|
||||
finish();
|
||||
});
|
||||
}));
|
||||
}
|
||||
lib_call.deferral_compose_parallel = deferral_compose_parallel;
|
||||
/**
|
||||
* @author fenris
|
||||
* @desc repeatedly applied serial composition
|
||||
*/
|
||||
function deferral_chain(members) {
|
||||
return (members.reduce(
|
||||
// (result, current) => deferral_compose_serial<type_value, type_value, type_value>(result, current),
|
||||
deferral_compose_serial, deferral_id()));
|
||||
}
|
||||
lib_call.deferral_chain = deferral_chain;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
/*
|
||||
export function deferral_bunch<type_input, type_output>(
|
||||
members : {[name : string] : type_deferral<type_input, type_output>}
|
||||
) : type_deferral<type_input, {[name : string] : type_output}> {
|
||||
|
||||
}
|
||||
*/
|
||||
})(lib_call || (lib_call = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_deferral {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(subject) {
|
||||
this.subject = subject;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static _cram(subject) {
|
||||
return (new class_deferral(subject));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static _tear(instance) {
|
||||
return instance.subject;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static make(handler) {
|
||||
return (class_deferral._cram(lib_call.deferral_make(handler)));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
use(input, procedure) {
|
||||
return (lib_call.deferral_use(class_deferral._tear(this), input, procedure));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
compose_serial(second) {
|
||||
return (class_deferral._cram(lib_call.deferral_compose_serial(class_deferral._tear(this), class_deferral._tear(second))));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static chain(members) {
|
||||
return (class_deferral._cram(lib_call.deferral_chain(members.map(member => class_deferral._tear(member)))));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static wrap(function_) {
|
||||
return (class_deferral._cram(lib_call.deferral_wrap(function_)));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static const_(value) {
|
||||
return (class_deferral._cram(lib_call.deferral_const(value)));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static delay(output, delay) {
|
||||
return (class_deferral._cram(lib_call.deferral_delay(output, delay)));
|
||||
}
|
||||
}
|
||||
lib_call.class_deferral = class_deferral;
|
||||
})(lib_call || (lib_call = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:call«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:call« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:call« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:call«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_call;
|
||||
(function (lib_call) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function timeout(function_, delay) {
|
||||
return (
|
||||
/*window.*/ setTimeout(function_, delay));
|
||||
}
|
||||
lib_call.timeout = timeout;
|
||||
/**
|
||||
* @desc a definition for a value being "defined"
|
||||
* @author neuc
|
||||
*/
|
||||
function is_def(obj, null_is_valid = false) {
|
||||
return (!((typeof (obj) === "undefined")
|
||||
||
|
||||
(!null_is_valid && (obj === null))));
|
||||
}
|
||||
lib_call.is_def = is_def;
|
||||
/**
|
||||
* @desc returns the value if set and, when a type is specified, if the type is correct, if not return default_value
|
||||
* @author neuc
|
||||
*/
|
||||
function def_val(value, default_value, type = null, null_is_valid = false) {
|
||||
if (is_def(value, null_is_valid)
|
||||
&&
|
||||
(is_def(type)
|
||||
? ((typeof value === type)
|
||||
||
|
||||
((value === null)
|
||||
&&
|
||||
null_is_valid))
|
||||
: true)) {
|
||||
return value;
|
||||
}
|
||||
else {
|
||||
return default_value;
|
||||
}
|
||||
}
|
||||
lib_call.def_val = def_val;
|
||||
;
|
||||
/**
|
||||
* @desc just the empty function; useful for some callbacks etc.
|
||||
* @author fenris
|
||||
*/
|
||||
function nothing() {
|
||||
}
|
||||
lib_call.nothing = nothing;
|
||||
/**
|
||||
* @desc outputs
|
||||
* @author fenris
|
||||
*/
|
||||
function output(...args) {
|
||||
lib_log.info.apply(lib_log, args);
|
||||
}
|
||||
lib_call.output = output;
|
||||
/**
|
||||
* @desc converts the "arguments"-map into an array
|
||||
* @param {Object} args
|
||||
* @author fenris
|
||||
*/
|
||||
function args2list(args) {
|
||||
return Object.keys(args).map(key => args[key]);
|
||||
}
|
||||
lib_call.args2list = args2list;
|
||||
/**
|
||||
* @desc provides the call for an attribute of a class as a regular function
|
||||
* @param {string} name the name of the attribute
|
||||
* @return {*}
|
||||
* @author fenris
|
||||
*/
|
||||
function attribute(name) {
|
||||
return ((object) => object[name]);
|
||||
}
|
||||
lib_call.attribute = attribute;
|
||||
/**
|
||||
* @desc provides a method of a class as a regular function
|
||||
* @param {string} name the name of the method
|
||||
* @return {function}
|
||||
* @author fenris
|
||||
*/
|
||||
function method(name) {
|
||||
return (function (object) { return object[name].apply(object, args2list(arguments).slice(1)); });
|
||||
}
|
||||
lib_call.method = method;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function distinguish(unival, handlers, fallback = null) {
|
||||
if (unival.kind in handlers) {
|
||||
let handler = handlers[unival.kind];
|
||||
return handler(unival.data);
|
||||
}
|
||||
else {
|
||||
let message = ("unhandled kind '" + unival.kind + "'");
|
||||
if (fallback !== null) {
|
||||
console.warn(message);
|
||||
return fallback(unival);
|
||||
}
|
||||
else {
|
||||
throw (new Error(message));
|
||||
}
|
||||
}
|
||||
}
|
||||
lib_call.distinguish = distinguish;
|
||||
})(lib_call || (lib_call = {}));
|
||||
861
lib/plankton/file/licence.txt
Normal file
861
lib/plankton/file/licence.txt
Normal file
|
|
@ -0,0 +1,861 @@
|
|||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:file« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:file« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:file«. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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 General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is 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. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
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.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
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 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. Use with the GNU Affero General Public License.
|
||||
|
||||
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 Affero 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 special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU 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 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 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 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 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU 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 the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
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 GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
||||
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser 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
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
|
||||
69
lib/plankton/file/logic-decl.d.ts
vendored
Normal file
69
lib/plankton/file/logic-decl.d.ts
vendored
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
declare module lib_file {
|
||||
/**
|
||||
* @author fenris,maspr
|
||||
* @todo clear up if http(s)-handling belongs here or not ...
|
||||
*/
|
||||
function read_promise(path: string): lib_call.type_promise<string, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function write_promise(path: string, content: string): lib_call.type_promise<void, Error>;
|
||||
}
|
||||
declare module lib_file {
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function read_json_promise(path: string): lib_call.type_promise<any, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function write_json_promise(path: string, data: any): lib_call.type_promise<void, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function read_executor(path: string): lib_call.type_executor<string, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function write_executor(path: string, content: string): lib_call.type_executor<void, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function read_json_executor(path: string): lib_call.type_executor<any, Error>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function write_json_executor(path: string, data: any): lib_call.type_executor<void, Error>;
|
||||
/**
|
||||
* @desc reads a file
|
||||
* @author fenris
|
||||
* @todo replace with promise version
|
||||
*/
|
||||
function read(path: string): lib_call.type_executor<string, Error>;
|
||||
/**
|
||||
* @desc writes a file
|
||||
* @author fenris
|
||||
* @todo replace with promise version
|
||||
*/
|
||||
function write(path: string, content: string): lib_call.type_executor<void, Error>;
|
||||
/**
|
||||
* @desc reads a json file
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function read_json(path: string): lib_call.type_executor<any, Error>;
|
||||
/**
|
||||
* @desc writes a json file
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function write_json(path: string, data: any): lib_call.type_executor<void, Error>;
|
||||
}
|
||||
261
lib/plankton/file/logic-impl.js
Normal file
261
lib/plankton/file/logic-impl.js
Normal file
|
|
@ -0,0 +1,261 @@
|
|||
/*
|
||||
This file is part of »bacterio-plankton:file«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:file« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:file« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:file«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_file;
|
||||
(function (lib_file) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function read_regular_promise(path) {
|
||||
const nm_fs = require("fs");
|
||||
return (lib_call.promise_make((resolve, reject) => {
|
||||
nm_fs.readFile(path, {
|
||||
"encoding": "utf8",
|
||||
"flag": "r",
|
||||
}, (error, content) => {
|
||||
if (error == null) {
|
||||
resolve(content);
|
||||
}
|
||||
else {
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
}));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function read_http_promise(path) {
|
||||
return (lib_call.promise_make((resolve, reject) => {
|
||||
const nm_url = require("url");
|
||||
const parsed_url = nm_url.parse(path, false, true);
|
||||
const client = ((parsed_url.protocol === "https:")
|
||||
? require("https")
|
||||
: require("http"));
|
||||
const default_port = ((parsed_url.protocol == "https:")
|
||||
? 443
|
||||
: 80);
|
||||
const options = {
|
||||
"hostname": parsed_url.hostname,
|
||||
"port": (parsed_url.port || default_port),
|
||||
"path": parsed_url.path,
|
||||
"method": "GET"
|
||||
};
|
||||
let req = client.request(options, (res) => {
|
||||
let data = ""; // @todo
|
||||
res.on("data", (chunk) => {
|
||||
data += chunk;
|
||||
});
|
||||
res.on("end", () => {
|
||||
resolve(data);
|
||||
});
|
||||
});
|
||||
req.end();
|
||||
req.on("error", (error) => {
|
||||
reject(error);
|
||||
});
|
||||
}));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function write_regular_promise(path, content) {
|
||||
const nm_fs = require("fs");
|
||||
return (lib_call.promise_make((resolve, reject) => {
|
||||
nm_fs.writeFile(path, content, {
|
||||
"encoding": "utf8",
|
||||
"flag": "w",
|
||||
}, (error) => {
|
||||
if (error == null) {
|
||||
resolve(undefined);
|
||||
}
|
||||
else {
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
}));
|
||||
}
|
||||
/**
|
||||
* @author maspr,fenris
|
||||
*/
|
||||
function determine_handler(path) {
|
||||
if (new RegExp("^https?:\/\/").test(path)) {
|
||||
return "http";
|
||||
}
|
||||
else {
|
||||
return "file";
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @author fenris,maspr
|
||||
* @todo clear up if http(s)-handling belongs here or not ...
|
||||
*/
|
||||
function read_promise(path) {
|
||||
switch (determine_handler(path)) {
|
||||
case "file": {
|
||||
return read_regular_promise(path);
|
||||
break;
|
||||
}
|
||||
case "http": {
|
||||
return read_http_promise(path);
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
const message = "unhandled protocol";
|
||||
return lib_call.promise_reject(new Error(message));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
lib_file.read_promise = read_promise;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function write_promise(path, content) {
|
||||
return write_regular_promise(path, content);
|
||||
}
|
||||
lib_file.write_promise = write_promise;
|
||||
})(lib_file || (lib_file = {}));
|
||||
/*
|
||||
This file is part of »bacterio-plankton:file«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:file« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:file« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:file«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_file;
|
||||
(function (lib_file) {
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function read_json_promise(path) {
|
||||
return (lib_call.promise_resolve(undefined)
|
||||
.then(_ => lib_file.read_promise(path))
|
||||
.then(content => lib_call.promise_make((resolve, reject) => {
|
||||
let error;
|
||||
let data;
|
||||
try {
|
||||
data = JSON.parse(content);
|
||||
error = null;
|
||||
}
|
||||
catch (exception) {
|
||||
let message = `invalid json '${path}'`;
|
||||
error = new class_error(message, [exception]);
|
||||
}
|
||||
if (error == null) {
|
||||
resolve(data);
|
||||
}
|
||||
else {
|
||||
reject(error);
|
||||
}
|
||||
})));
|
||||
}
|
||||
lib_file.read_json_promise = read_json_promise;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function write_json_promise(path, data) {
|
||||
return lib_file.write_promise(path, JSON.stringify(data, undefined, "\t"));
|
||||
}
|
||||
lib_file.write_json_promise = write_json_promise;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function read_executor(path) {
|
||||
return lib_call.promise_to_executor(lib_file.read_promise(path));
|
||||
}
|
||||
lib_file.read_executor = read_executor;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function write_executor(path, content) {
|
||||
return lib_call.promise_to_executor(lib_file.write_promise(path, content));
|
||||
}
|
||||
lib_file.write_executor = write_executor;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function read_json_executor(path) {
|
||||
return lib_call.promise_to_executor(read_json_promise(path));
|
||||
}
|
||||
lib_file.read_json_executor = read_json_executor;
|
||||
/**
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
* @deprecated use promises instead of executors
|
||||
*/
|
||||
function write_json_executor(path, data) {
|
||||
return lib_call.promise_to_executor(write_json_promise(path, data));
|
||||
}
|
||||
lib_file.write_json_executor = write_json_executor;
|
||||
/**
|
||||
* @desc reads a file
|
||||
* @author fenris
|
||||
* @todo replace with promise version
|
||||
*/
|
||||
function read(path) {
|
||||
return read_executor(path);
|
||||
}
|
||||
lib_file.read = read;
|
||||
/**
|
||||
* @desc writes a file
|
||||
* @author fenris
|
||||
* @todo replace with promise version
|
||||
*/
|
||||
function write(path, content) {
|
||||
return write_executor(path, content);
|
||||
}
|
||||
lib_file.write = write;
|
||||
/**
|
||||
* @desc reads a json file
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function read_json(path) {
|
||||
return read_json_executor(path);
|
||||
}
|
||||
lib_file.read_json = read_json;
|
||||
/**
|
||||
* @desc writes a json file
|
||||
* @author fenris
|
||||
* @deprecated lib_file shouldn't care for code stuff; use a combination of lib_file and lib_code instead
|
||||
*/
|
||||
function write_json(path, data) {
|
||||
return write_json_executor(path, data);
|
||||
}
|
||||
lib_file.write_json = write_json;
|
||||
})(lib_file || (lib_file = {}));
|
||||
861
lib/plankton/lang/licence.txt
Normal file
861
lib/plankton/lang/licence.txt
Normal file
|
|
@ -0,0 +1,861 @@
|
|||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:lang« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:lang« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:lang«. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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 General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is 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. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
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.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
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 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. Use with the GNU Affero General Public License.
|
||||
|
||||
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 Affero 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 special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU 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 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 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 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 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU 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 the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
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 GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
||||
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser 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
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
|
||||
590
lib/plankton/lang/logic-decl.d.ts
vendored
Normal file
590
lib/plankton/lang/logic-decl.d.ts
vendored
Normal file
|
|
@ -0,0 +1,590 @@
|
|||
declare module lib_log {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type int = number;
|
||||
function level_push(level: int): void;
|
||||
function level_pop(): void;
|
||||
function indent_push(indent: int): void;
|
||||
function indent_pop(): void;
|
||||
function indent_inc(): void;
|
||||
function indent_dec(): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function write({ "message": message, "type": type, "prefix": prefix, "level": level, "indent": indent, }: {
|
||||
message?: string;
|
||||
type?: string;
|
||||
prefix?: string;
|
||||
level?: int;
|
||||
indent?: int;
|
||||
}): void;
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type char = string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_terminal_default = {
|
||||
id: string;
|
||||
data?: Object;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function find<type_x, type_y>(word: Array<type_x>, part: Array<type_y>, equality: (x: type_x, y: type_y) => boolean, /*= instance_collate*/ right_to_left?: boolean): int;
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_symbol<type_terminal, type_variable, type_meaning> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
equals(symbol: interface_symbol<type_terminal, type_variable, type_meaning>): boolean;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
toString(): string;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_symbol_terminal<type_terminal, type_variable, type_meaning> implements interface_symbol<type_terminal, type_variable, type_meaning> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected terminal: type_terminal;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected equality_terminal: (x: type_terminal, y: type_terminal) => boolean;
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(terminal: type_terminal, equality_terminal?: (x: type_terminal, y: type_terminal) => boolean);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
terminal_get(): type_terminal;
|
||||
/**
|
||||
* @override
|
||||
* @author fenris
|
||||
*/
|
||||
equals(symbol: interface_symbol<type_terminal, type_variable, type_meaning>): boolean;
|
||||
/**
|
||||
* @override
|
||||
* @author fenris
|
||||
*/
|
||||
toString(): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static tree_generic<type_terminal, type_variable>(terminal: type_terminal): class_symbol_terminal<type_terminal, type_variable, type_tree<type_terminal>>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static tree_default(terminal: type_terminal_default): class_symbol_terminal<type_terminal_default, string, type_tree<type_terminal_default>>;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_symbol_variable<type_terminal, type_variable, type_meaning> implements interface_symbol<type_terminal, type_variable, type_meaning> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected variable: type_variable;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected meaning: type_meaning;
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(variable: type_variable, meaning?: type_meaning);
|
||||
/**
|
||||
* @desc [accessor] [getter]
|
||||
* @author fenris
|
||||
*/
|
||||
variable_get(): type_variable;
|
||||
/**
|
||||
* @desc [accessor] [getter]
|
||||
* @author fenris
|
||||
*/
|
||||
meaning_get(): type_meaning;
|
||||
/**
|
||||
* @override
|
||||
* @author fenris
|
||||
*/
|
||||
equals(symbol: interface_symbol<type_terminal, type_variable, type_meaning>): boolean;
|
||||
/**
|
||||
* @override
|
||||
* @author fenris
|
||||
*/
|
||||
toString(): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static tree_generic<type_terminal, type_variable>(variable: type_variable): class_symbol_variable<type_terminal, type_variable, type_tree<type_terminal>>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static tree_default(variable: string): class_symbol_variable<type_terminal_default, string, type_tree<type_terminal_default>>;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_lexer<type_character, type_terminal> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
run(input: Array<type_character>): Array<type_terminal>;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_token<type_character, type_terminal> = {
|
||||
sequence: Array<type_character>;
|
||||
terminal: class_maybe<type_terminal>;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_lexerrule<type_character, type_terminal> = {
|
||||
search: (part: Array<type_character>) => {
|
||||
found: boolean;
|
||||
data?: {
|
||||
position?: int;
|
||||
length?: int;
|
||||
};
|
||||
};
|
||||
construct: (part: Array<type_character>) => Array<type_terminal>;
|
||||
observer: lib_observer.type_observer;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_make<type_character, type_terminal>(search: (part: Array<type_character>) => {
|
||||
found: boolean;
|
||||
data?: {
|
||||
position?: int;
|
||||
length?: int;
|
||||
};
|
||||
}, construct: (part: Array<type_character>) => Array<type_terminal>): type_lexerrule<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
* @todo schön machen? is aber vermutlich gar nicht möglich :/
|
||||
*/
|
||||
function lexerrule_show<type_character, type_terminal>(rule: type_lexerrule<type_character, type_terminal>): string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_apply<type_character, type_terminal>(rule: type_lexerrule<type_character, type_terminal>, tokens: Array<type_token<type_character, type_terminal>>): Array<type_token<type_character, type_terminal>>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pass<type_character>(): type_lexerrule<type_character, type_character>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_generic(rule_raw: {
|
||||
pattern: string;
|
||||
construct: (part: Array<char>) => Array<type_terminal_default>;
|
||||
}): type_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_ignore(pattern: string): type_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_void(pattern: string, id: string): type_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_boolean(pattern: string, id: string, value: boolean): type_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_int(pattern: string, id: string): type_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_float(pattern: string, id: string): type_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexerrule_pattern_string(pattern: string, id: string): type_lexerrule<char, type_terminal_default>;
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
* @todo warn on prefix-detection
|
||||
* @todo after rule application don't start from the beginning but from the last position
|
||||
*/
|
||||
type type_lexer_dumb<type_character, type_terminal> = {
|
||||
rules: Array<type_lexerrule<type_character, type_terminal>>;
|
||||
observer: lib_observer.type_observer;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexer_dumb_make<type_character, type_terminal>(rules: Array<type_lexerrule<type_character, type_terminal>>): type_lexer_dumb<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexer_dumb_run<type_character, type_terminal>(subject: type_lexer_dumb<type_character, type_terminal>, input: Array<type_character>, configuration?: {
|
||||
use_reduce?: boolean;
|
||||
}): Array<type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function lexer_dumb_pass<type_character>(): type_lexer_dumb<type_character, type_character>;
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_lexerrule<type_character, type_terminal> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected subject: type_lexerrule<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(subject: type_lexerrule<type_character, type_terminal>);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static construct<type_character, type_terminal>({ "search": search, "construct": construct, }: {
|
||||
search: (part: Array<type_character>) => {
|
||||
found: boolean;
|
||||
data?: {
|
||||
position?: int;
|
||||
length?: int;
|
||||
};
|
||||
};
|
||||
construct: (part: Array<type_character>) => Array<type_terminal>;
|
||||
}): class_lexerrule<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
subject_get(): type_lexerrule<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
search(part: Array<type_character>): {
|
||||
found: boolean;
|
||||
data?: {
|
||||
position?: int;
|
||||
length?: int;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
construct(part: Array<type_character>): Array<type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pass<type_character>(): class_lexerrule<type_character, type_character>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_generic(rule_raw: {
|
||||
pattern: string;
|
||||
construct: (part: Array<char>) => Array<type_terminal_default>;
|
||||
}): class_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_ignore(pattern: string): class_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_void(pattern: string, id: string): class_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_boolean(pattern: string, id: string, value: boolean): class_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_int(pattern: string, id: string): class_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_float(pattern: string, id: string): class_lexerrule<char, type_terminal_default>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pattern_string(pattern: string, id: string): class_lexerrule<char, type_terminal_default>;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_lexer_dumb<type_character, type_terminal> implements interface_lexer<type_character, type_terminal> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected subject: type_lexer_dumb<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(subject: type_lexer_dumb<type_character, type_terminal>);
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static construct<type_character, type_terminal>(rules: Array<class_lexerrule<type_character, type_terminal>>): class_lexer_dumb<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
run(input: Array<type_character>): Array<type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static pass<type_character>(): class_lexer_dumb<type_character, type_character>;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
interface interface_parser<type_terminal, type_variable, type_meaning> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
run(input: Array<type_terminal>): type_meaning;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_tree<type_terminal> = {
|
||||
label?: string;
|
||||
value: Array<type_terminal>;
|
||||
children: Array<type_tree<type_terminal>>;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_parserrule<type_terminal, type_variable, type_meaning> = {
|
||||
premise: type_variable;
|
||||
conclusion: Array<interface_symbol<type_terminal, type_variable, type_meaning>>;
|
||||
construct: (args: Array<type_meaning>, terminals: Array<type_terminal>) => type_meaning;
|
||||
right_to_left: boolean;
|
||||
};
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
function parserrule_make<type_terminal, type_variable, type_meaning>({ "premise": premise, "conclusion": conclusion, "construct": construct, "right_to_left": right_to_left, }: {
|
||||
premise: type_variable;
|
||||
conclusion: Array<interface_symbol<type_terminal, type_variable, type_meaning>>;
|
||||
construct: (args: Array<type_meaning>, terminals: Array<type_terminal>) => type_meaning;
|
||||
right_to_left?: boolean;
|
||||
}): {
|
||||
"premise": type_variable;
|
||||
"conclusion": interface_symbol<type_terminal, type_variable, type_meaning>[];
|
||||
"construct": (args: type_meaning[], terminals: type_terminal[]) => type_meaning;
|
||||
"right_to_left": boolean;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function parserrule_check<type_terminal, type_variable, type_meaning>(parserrule: type_parserrule<type_terminal, type_variable, type_meaning>, sequence: Array<interface_symbol<type_terminal, type_variable, type_meaning>>): int;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function parserrule_construct<type_terminal, type_variable, type_meaning>(parserrule: type_parserrule<type_terminal, type_variable, type_meaning>, args: Array<type_meaning>, terminals: Array<type_terminal>): type_meaning;
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
* @todo fatal error on empty conclusion
|
||||
*/
|
||||
type type_parser_dumb<type_terminal, type_variable, type_meaning> = {
|
||||
start: type_variable;
|
||||
rules: Array<type_parserrule<type_terminal, type_variable, type_meaning>>;
|
||||
equality_terminal: (x: type_terminal, y: type_terminal) => boolean;
|
||||
observer: lib_observer.type_observer;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function parser_dumb_make<type_terminal, type_variable, type_meaning>(start: type_variable, rules: Array<type_parserrule<type_terminal, type_variable, type_meaning>>, equality_terminal?: (x: type_terminal, y: type_terminal) => boolean): {
|
||||
"start": type_variable;
|
||||
"rules": type_parserrule<type_terminal, type_variable, type_meaning>[];
|
||||
"equality_terminal": (x: type_terminal, y: type_terminal) => boolean;
|
||||
"observer": lib_observer.type_observer;
|
||||
};
|
||||
/**
|
||||
* @override
|
||||
* @author fenris
|
||||
*/
|
||||
function parser_dumb_run<type_terminal, type_variable, type_meaning>(parser_dumb: type_parser_dumb<type_terminal, type_variable, type_meaning>, input: Array<type_terminal>): type_meaning;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function parser_dumb_tree<type_terminal, type_variable>(start: type_variable, rules_raw: Array<{
|
||||
premise: type_variable;
|
||||
conclusion: Array<interface_symbol<type_terminal, type_variable, type_tree<type_terminal>>>;
|
||||
label?: string;
|
||||
right_to_left?: boolean;
|
||||
}>, equality_terminal?: (x: type_terminal, y: type_terminal) => boolean): type_parser_dumb<type_terminal, type_variable, type_tree<type_terminal>>;
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_parserrule<type_terminal, type_variable, type_meaning> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected subject: type_parserrule<type_terminal, type_variable, type_meaning>;
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
private constructor();
|
||||
/**
|
||||
* @desc [constructor]
|
||||
* @author fenris
|
||||
*/
|
||||
static construct<type_terminal, type_variable, type_meaning>({ "premise": premise, "conclusion": conclusion, "construct": construct, "right_to_left": right_to_left, }: {
|
||||
premise: type_variable;
|
||||
conclusion: Array<interface_symbol<type_terminal, type_variable, type_meaning>>;
|
||||
construct: (args: Array<type_meaning>, terminals: Array<type_terminal>) => type_meaning;
|
||||
right_to_left?: boolean;
|
||||
}): class_parserrule<type_terminal, type_variable, type_meaning>;
|
||||
/**
|
||||
* @desc [accessor] [getter]
|
||||
* @author fenris
|
||||
*/
|
||||
subject_get(): type_parserrule<type_terminal, type_variable, type_meaning>;
|
||||
/**
|
||||
* @desc [accessor] [getter]
|
||||
* @author fenris
|
||||
*/
|
||||
premise_get(): type_variable;
|
||||
/**
|
||||
* @desc [accessor] [getter]
|
||||
* @author fenris
|
||||
*/
|
||||
conclusion_get(): Array<interface_symbol<type_terminal, type_variable, type_meaning>>;
|
||||
/**
|
||||
* @desc [accessor]
|
||||
* @author fenris
|
||||
*/
|
||||
check(sequence: Array<interface_symbol<type_terminal, type_variable, type_meaning>>): int;
|
||||
/**
|
||||
* @desc [accessor]
|
||||
* @author fenris
|
||||
*/
|
||||
construct(args: Array<type_meaning>, terminals: Array<type_terminal>): type_meaning;
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
* @todo fatal error on empty conclusion
|
||||
*/
|
||||
class class_parser_dumb<type_terminal, type_variable, type_meaning> implements interface_parser<type_terminal, type_variable, type_meaning> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected subject: type_parser_dumb<type_terminal, type_variable, type_meaning>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
private constructor();
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static construct<type_terminal, type_variable, type_meaning>(start: type_variable, rules: Array<class_parserrule<type_terminal, type_variable, type_meaning>>, equality_terminal?: (x: type_terminal, y: type_terminal) => boolean): class_parser_dumb<type_terminal, type_variable, type_meaning>;
|
||||
/**
|
||||
* @override
|
||||
* @author fenris
|
||||
*/
|
||||
run(input: Array<type_terminal>): type_meaning;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static tree<type_terminal, type_variable>(start: type_variable, rules_raw: Array<{
|
||||
premise: type_variable;
|
||||
conclusion: Array<interface_symbol<type_terminal, type_variable, type_tree<type_terminal>>>;
|
||||
label?: string;
|
||||
right_to_left?: boolean;
|
||||
}>, equality_terminal?: (x: type_terminal, y: type_terminal) => boolean): class_parser_dumb<type_terminal, type_variable, type_tree<type_terminal>>;
|
||||
}
|
||||
}
|
||||
declare module lib_lang {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
class class_reader<type_character, type_terminal, type_variable, type_result> {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected lexer: interface_lexer<type_character, type_terminal>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
protected parser: interface_parser<type_terminal, type_variable, type_result>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
constructor(lexer: interface_lexer<type_character, type_terminal>, parser: interface_parser<type_terminal, type_variable, type_result>);
|
||||
/**
|
||||
* @desc [accessor] yes, it's really just lexing and parsing
|
||||
* @author fenris
|
||||
*/
|
||||
run(input: Array<type_character>): type_result;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static default({ "lexer_rules": lexer_rules, "parser_start": parser_start, "parser_rules": parser_rules, }: {
|
||||
lexer_rules: Array<class_lexerrule<char, type_terminal_default>>;
|
||||
parser_start: string;
|
||||
parser_rules: Array<{
|
||||
premise: string;
|
||||
conclusion: Array<interface_symbol<type_terminal_default, string, type_tree<type_terminal_default>>>;
|
||||
label?: string;
|
||||
right_to_left?: boolean;
|
||||
}>;
|
||||
}): class_reader<char, type_terminal_default, string, type_tree<type_terminal_default>>;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
static default_raw({ "lexer_rules": lexer_rules, "parser_start": parser_start, "parser_rules": parser_rules, }: {
|
||||
lexer_rules: Array<{
|
||||
type: string;
|
||||
parameters?: Object;
|
||||
}>;
|
||||
parser_start: string;
|
||||
parser_rules: Array<{
|
||||
premise: string;
|
||||
conclusion: Array<{
|
||||
type: string;
|
||||
parameters?: Object;
|
||||
}>;
|
||||
label?: string;
|
||||
right_to_left?: boolean;
|
||||
}>;
|
||||
}): class_reader<char, type_terminal_default, string, type_tree<type_terminal_default>>;
|
||||
}
|
||||
}
|
||||
1347
lib/plankton/lang/logic-impl.js
Normal file
1347
lib/plankton/lang/logic-impl.js
Normal file
File diff suppressed because it is too large
Load diff
861
lib/plankton/observer/licence.txt
Normal file
861
lib/plankton/observer/licence.txt
Normal file
|
|
@ -0,0 +1,861 @@
|
|||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:observer« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:observer« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:observer«. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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 General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is 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. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
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.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
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 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. Use with the GNU Affero General Public License.
|
||||
|
||||
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 Affero 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 special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU 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 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 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 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 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU 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 the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
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 GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
||||
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 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.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser 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
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
|
||||
45
lib/plankton/observer/logic-decl.d.ts
vendored
Normal file
45
lib/plankton/observer/logic-decl.d.ts
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
declare module lib_observer {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_eventname = string;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_data = any;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_action = (data: type_data) => void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_observer = {
|
||||
actions: {
|
||||
[eventname: string]: Array<type_action>;
|
||||
};
|
||||
force_registration: boolean;
|
||||
no_attendants_warn_do: boolean;
|
||||
no_attendants_warn_action: (eventname: type_eventname) => void;
|
||||
};
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function make({ "force_registration": force_registration, "no_attendants_warn_do": no_attendants_warn_do, "no_attendants_warn_action": no_attendants_warn_action, }?: {
|
||||
force_registration?: boolean;
|
||||
no_attendants_warn_do?: boolean;
|
||||
no_attendants_warn_action?: (eventname: type_eventname) => void;
|
||||
}): type_observer;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function register(observer: type_observer, eventname: type_eventname): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function attend(observer: type_observer, eventname: type_eventname, action: type_action): void;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function notify(observer: type_observer, eventname: type_eventname, data: type_data): void;
|
||||
}
|
||||
103
lib/plankton/observer/logic-impl.js
Normal file
103
lib/plankton/observer/logic-impl.js
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
/*
|
||||
This file is part of »bacterio-plankton:observer«.
|
||||
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»bacterio-plankton:observer« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»bacterio-plankton:observer« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »bacterio-plankton:observer«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
var lib_observer;
|
||||
(function (lib_observer) {
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function make(_a) {
|
||||
var _b = _a === void 0 ? {} : _a, _c = _b["force_registration"], force_registration = _c === void 0 ? false : _c, _d = _b["no_attendants_warn_do"], no_attendants_warn_do = _d === void 0 ? false : _d, _e = _b["no_attendants_warn_action"], no_attendants_warn_action = _e === void 0 ? (function (eventname) { return console.warn("no attendants for event '" + eventname + "'"); }) : _e;
|
||||
return {
|
||||
"actions": {},
|
||||
"force_registration": force_registration,
|
||||
"no_attendants_warn_do": no_attendants_warn_do,
|
||||
"no_attendants_warn_action": no_attendants_warn_action,
|
||||
};
|
||||
}
|
||||
lib_observer.make = make;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function present(observer, eventname) {
|
||||
return (observer.actions.hasOwnProperty(eventname));
|
||||
}
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function register(observer, eventname) {
|
||||
if (!present(observer, eventname)) {
|
||||
observer.actions[eventname] = [];
|
||||
}
|
||||
else {
|
||||
// do nothing
|
||||
// warn that it is already registered?
|
||||
}
|
||||
}
|
||||
lib_observer.register = register;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function attend(observer, eventname, action) {
|
||||
if (!present(observer, eventname)) {
|
||||
if (observer.force_registration) {
|
||||
throw (new Error("no event '" + eventname + "'"));
|
||||
}
|
||||
else {
|
||||
register(observer, eventname);
|
||||
}
|
||||
}
|
||||
else {
|
||||
// do nothing
|
||||
}
|
||||
observer.actions[eventname].push(action);
|
||||
}
|
||||
lib_observer.attend = attend;
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function notify(observer, eventname, data) {
|
||||
if (!present(observer, eventname)) {
|
||||
if (observer.force_registration) {
|
||||
throw (new Error("no event '" + eventname + "'"));
|
||||
}
|
||||
else {
|
||||
register(observer, eventname);
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (observer.no_attendants_warn_do) {
|
||||
if (observer.actions[eventname].length <= 0) {
|
||||
observer.no_attendants_warn_action(eventname);
|
||||
}
|
||||
else {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
else {
|
||||
// do nothing
|
||||
}
|
||||
observer.actions[eventname]
|
||||
.forEach(function (action) {
|
||||
action(data);
|
||||
});
|
||||
}
|
||||
}
|
||||
lib_observer.notify = notify;
|
||||
})(lib_observer || (lib_observer = {}));
|
||||
16
lib/plankton/plankton.swm.json
Normal file
16
lib/plankton/plankton.swm.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"logic-decl": [
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./call/logic-decl.d.ts",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./file/logic-decl.d.ts",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./lang/logic-decl.d.ts",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./observer/logic-decl.d.ts",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./base/logic-decl.d.ts"
|
||||
],
|
||||
"logic-impl": [
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./call/logic-impl.js",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./file/logic-impl.js",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./lang/logic-impl.js",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./observer/logic-impl.js",
|
||||
"/home/fenris/projekte/greenscale/type2/lib/plankton/./base/logic-impl.js"
|
||||
]
|
||||
}
|
||||
9
lib/plankton/update.sh
Normal file
9
lib/plankton/update.sh
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
modules=""
|
||||
modules="${modules} call"
|
||||
modules="${modules} file"
|
||||
modules="${modules} lang"
|
||||
|
||||
ptk fetch node ${modules}
|
||||
|
||||
327
source/type2.ts
327
source/type2.ts
|
|
@ -1,192 +1,201 @@
|
|||
/*
|
||||
This file is part of »type2«.
|
||||
|
||||
///<reference path="../../plankton/base/build/logic-decl.d.ts"/>
|
||||
///<reference path="../../plankton/call/build/logic-decl.d.ts"/>
|
||||
///<reference path="../../plankton/lang/build/logic-decl.d.ts"/>
|
||||
Copyright 2016-2018 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
|
||||
<info@greenscale.de>
|
||||
|
||||
»type2« is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
»type2« 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with »type2«. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
const _fs = require("fs");
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
type type_myreader = lib_lang.class_reader<char, lib_lang.type_terminal_default, string, lib_lang.type_tree<lib_lang.type_terminal_default>>;
|
||||
type type_parameters = {path ?: string; input ?: Array<char>;};
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
var generate_reader : (path : string)=>lib_call.type_promise<type_myreader, Error> =
|
||||
path => lib_call.promise_resolve(path)
|
||||
.then<Buffer, Error>
|
||||
(
|
||||
path => lib_call.promise_make<Buffer, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
let _fs = require("fs");
|
||||
_fs.readFile
|
||||
(
|
||||
path,
|
||||
{
|
||||
"encoding": "utf8",
|
||||
"flag": "r",
|
||||
},
|
||||
(error, buffer) =>
|
||||
{
|
||||
if (error == null)
|
||||
{
|
||||
resolve(buffer);
|
||||
}
|
||||
else
|
||||
{
|
||||
reject(error);
|
||||
}
|
||||
}
|
||||
)
|
||||
;
|
||||
}
|
||||
)
|
||||
)
|
||||
.then<any, Error>
|
||||
(
|
||||
buffer => lib_call.promise_make<any, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
resolve(JSON.parse(buffer.toString()));
|
||||
}
|
||||
)
|
||||
)
|
||||
.then<type_myreader, Error>
|
||||
(
|
||||
data => lib_call.promise_make<type_myreader, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
resolve(lib_lang.class_reader.default_raw(data));
|
||||
}
|
||||
)
|
||||
)
|
||||
;
|
||||
type type_foo_1 = {parameters : type_parameters; reader : type_myreader;};
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
var transform_arguments : (args : Array<string>)=>lib_call.type_promise<{path ?: string; input ?: Array<char>;}, Error> =
|
||||
args => lib_call.promise_resolve<{path ?: string; input ?: Array<char>;}, Error>({})
|
||||
.then<{path ?: string; input ?: Array<char>;}/*, Error*/>
|
||||
(
|
||||
parameters => lib_call.promise_make<{path ?: string; input ?: Array<char>;}, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
let path : string;
|
||||
path = ((args.length >= 1) ? args.shift() : null);
|
||||
if (path == null)
|
||||
{
|
||||
reject(new Error("no path specified"));
|
||||
}
|
||||
else
|
||||
{
|
||||
resolve({"path": path, "input": parameters.input});
|
||||
}
|
||||
}
|
||||
)
|
||||
)
|
||||
.then<{path ?: string; input ?: Array<char>;}/*, Error*/>
|
||||
(
|
||||
parameters => lib_call.promise_make<{path ?: string; input ?: Array<char>;}, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
let input : Array<char>;
|
||||
let input_raw : string = args.join(" ");
|
||||
if (input_raw == "")
|
||||
{
|
||||
reject(new Error("no input given"));
|
||||
}
|
||||
else
|
||||
{
|
||||
input = input_raw.split("");
|
||||
resolve({"path": parameters.path, "input": input});
|
||||
}
|
||||
}
|
||||
)
|
||||
)
|
||||
;
|
||||
type type_foo_2 = lib_lang.type_tree<lib_lang.type_terminal_default>;
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
var main : (args : Array<string>)=>lib_call.type_promise<void, Error> =
|
||||
args => lib_call.promise_resolve<void, Error>(undefined)
|
||||
.then<{path ?: string; input ?: Array<char>;}/*, Error*/>
|
||||
(
|
||||
_ => transform_arguments(args)
|
||||
type type_myreader = lib_lang.class_reader<char, lib_lang.type_terminal_default, string, type_foo_2>;
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function generate_reader(
|
||||
path : string
|
||||
) : lib_call.type_promise<type_myreader, Error>
|
||||
{
|
||||
return (
|
||||
lib_call.promise_resolve<void, Error>(undefined)
|
||||
.then<string/*, Error*/>(
|
||||
() => lib_file.read_promise(path)
|
||||
)
|
||||
.then<any/*, Error*/>(
|
||||
(content) => lib_call.promise_resolve<any, Error>(
|
||||
JSON.parse(content)
|
||||
)
|
||||
.then<{parameters : {path ?: string; input ?: Array<char>;}; reader : type_myreader;}/*, Error*/>
|
||||
(
|
||||
parameters => generate_reader(parameters.path)
|
||||
.then<{parameters : {path ?: string; input ?: Array<char>;}; reader : type_myreader;}, Error>
|
||||
(
|
||||
reader => lib_call.promise_make<{parameters : {path ?: string; input ?: Array<char>;}; reader : type_myreader;}, Error>
|
||||
(
|
||||
(resolve_, reject_) =>
|
||||
{
|
||||
resolve_({"parameters": parameters, "reader": reader});
|
||||
}
|
||||
)
|
||||
)
|
||||
)
|
||||
.then<type_myreader/*, Error*/>(
|
||||
(data) => lib_call.promise_resolve<type_myreader, Error>(
|
||||
lib_lang.class_reader.default_raw(data)
|
||||
)
|
||||
.then<lib_lang.type_tree<lib_lang.type_terminal_default>/*, Error*/>
|
||||
(
|
||||
vars => lib_call.promise_make<lib_lang.type_tree<lib_lang.type_terminal_default>, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
lib_log.level_push(1);
|
||||
let result : lib_lang.type_tree<lib_lang.type_terminal_default> = vars.reader.run(vars.parameters.input);
|
||||
lib_log.level_pop();
|
||||
if (result == null)
|
||||
{
|
||||
reject(new Error("didn't work"));
|
||||
}
|
||||
else
|
||||
{
|
||||
resolve(result);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function transform_arguments(
|
||||
args : Array<string>
|
||||
) : type_parameters
|
||||
{
|
||||
let parameters : type_parameters = {};
|
||||
// path
|
||||
{
|
||||
const path : string = (
|
||||
(args.length >= 1)
|
||||
? args.shift()
|
||||
: null
|
||||
);
|
||||
if (path == null) {
|
||||
throw (new Error("no path specified"))
|
||||
}
|
||||
else {
|
||||
parameters["path"] = path;
|
||||
}
|
||||
}
|
||||
// input
|
||||
{
|
||||
let input : Array<char>;
|
||||
const input_raw : string = args.join(" ");
|
||||
if (input_raw == "") {
|
||||
throw (new Error("no input given"));
|
||||
}
|
||||
else {
|
||||
input = input_raw.split("");
|
||||
parameters["input"] = input;
|
||||
}
|
||||
}
|
||||
return parameters;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
function main(
|
||||
args : Array<string>
|
||||
) : lib_call.type_promise<void, Error>
|
||||
{
|
||||
return (
|
||||
lib_call.promise_resolve<void, Error>(undefined)
|
||||
.then<string/*, Error*/>(
|
||||
() => lib_call.promise_make<string, Error>(
|
||||
(resolve, reject) => {
|
||||
// TODO: outsource reading from stdin to a plankton module
|
||||
let input_raw : string = "";
|
||||
process.stdin.setEncoding(
|
||||
"utf8"
|
||||
);
|
||||
process.stdin.on(
|
||||
"readable",
|
||||
() => {
|
||||
let chunk : string;
|
||||
while ((chunk = process.stdin.read()) !== null) {
|
||||
input_raw += chunk;
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
||||
process.stdin.on(
|
||||
"end",
|
||||
() => {
|
||||
resolve(input_raw);
|
||||
}
|
||||
);
|
||||
}
|
||||
)
|
||||
.then<void/*, Error*/>
|
||||
(
|
||||
result => lib_call.promise_make<void, Error>
|
||||
(
|
||||
(resolve, reject) =>
|
||||
{
|
||||
console.info(JSON.stringify(result, undefined, "\t"));
|
||||
resolve(undefined);
|
||||
}
|
||||
)
|
||||
)
|
||||
.then<type_parameters/*, Error*/>(
|
||||
(input_raw) => lib_call.promise_resolve<type_parameters, Error>(
|
||||
transform_arguments([args[0], input_raw])
|
||||
)
|
||||
;
|
||||
)
|
||||
.then<type_foo_1/*, Error*/>(
|
||||
(parameters) => (
|
||||
generate_reader(parameters.path)
|
||||
.then<type_foo_1/*, Error*/>(
|
||||
(reader) => lib_call.promise_resolve<type_foo_1, Error>(
|
||||
{
|
||||
"parameters": parameters,
|
||||
"reader": reader,
|
||||
}
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
.then<type_foo_2/*, Error*/>(
|
||||
(vars) => {
|
||||
lib_log.level_push(1);
|
||||
const result : type_foo_2 = vars.reader.run(vars.parameters.input);
|
||||
lib_log.level_pop();
|
||||
if (result == null) {
|
||||
return lib_call.promise_reject<type_foo_2, Error>(new Error("didn't work"));
|
||||
}
|
||||
else {
|
||||
return lib_call.promise_resolve<type_foo_2, Error>(result);
|
||||
}
|
||||
}
|
||||
)
|
||||
.then<void/*, Error*/>(
|
||||
(result) => {
|
||||
console.info(JSON.stringify(result, undefined, "\t"));
|
||||
return lib_call.promise_resolve<void, Error>(undefined);
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @author fenris
|
||||
*/
|
||||
main(process.argv.slice(2))
|
||||
.then
|
||||
(
|
||||
output =>
|
||||
{
|
||||
// console.info("--", "done:", output);
|
||||
}
|
||||
,
|
||||
error =>
|
||||
{
|
||||
console.error("--", "failed:", error);
|
||||
}
|
||||
)
|
||||
;
|
||||
.then(
|
||||
(output) => {
|
||||
// console.info("--", "done:", output);
|
||||
},
|
||||
(error) => {
|
||||
console.error("--", "failed:", error);
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +1,16 @@
|
|||
{
|
||||
"name": "type2",
|
||||
"version": "0.0.1",
|
||||
"version": "0.1.0",
|
||||
"dependencies": [
|
||||
"../plankton/lang/lang.prj.json"
|
||||
],
|
||||
"roottask": {
|
||||
"name": "link",
|
||||
"type": "schwamm",
|
||||
"parameters": {
|
||||
"includes": [
|
||||
"build/type2.swm.json"
|
||||
"temp/type2.swm.json"
|
||||
],
|
||||
"output": {
|
||||
"dump": {
|
||||
"logic-impl": "build/type2.js"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sub": [
|
||||
|
|
@ -23,18 +19,17 @@
|
|||
"type": "schwamm",
|
||||
"parameters": {
|
||||
"includes": [
|
||||
"../plankton/lang/build/lang.swm.json"
|
||||
"lib/plankton/plankton.swm.json"
|
||||
],
|
||||
"inputs": {
|
||||
"logic-decl": [
|
||||
"temp/unlinked-logic-decl.d.ts"
|
||||
],
|
||||
"logic-impl": [
|
||||
"temp/unlinked-logic-impl.js"
|
||||
"temp/unlinked.js"
|
||||
]
|
||||
},
|
||||
"output": {
|
||||
"save": "build/type2.swm.json"
|
||||
"dump": {
|
||||
"logic-impl": "build/type2.js"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sub": [
|
||||
|
|
@ -44,12 +39,15 @@
|
|||
"parameters": {
|
||||
"target": "ES6",
|
||||
"allowUnreachableCode": true,
|
||||
"input_from_schwamm": {
|
||||
"path": "lib/plankton/plankton.swm.json",
|
||||
"group": "logic-decl"
|
||||
},
|
||||
"inputs": [
|
||||
"source/base.ts",
|
||||
"source/type2.ts"
|
||||
],
|
||||
"declaration": "temp/unlinked-logic-decl.d.ts",
|
||||
"output": "temp/unlinked-logic-impl.js"
|
||||
"output": "temp/unlinked.js"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue