Skip to content

Commit

Permalink
[project] initial version of core inclusion document
Browse files Browse the repository at this point in the history
  • Loading branch information
cotto committed Nov 30, 2010
1 parent 6dd9f88 commit 4dc8e16
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions docs/project/core_inclusion.pod
@@ -0,0 +1,76 @@
# Copyright (c) 2010, The Parrot Foundation

=pod

=head1 Name

docs/project/core_inclusion.pod - Questions we'll consider when deciding if a
piece of code should be moved into core.

=head1 Abstract

Occasionally useful bits of code will arise that someone thinks should be made
core components of Parrot. This document lists some of the questions we'll
consider when deciding whether this is a good idea.

=head1 Introduction

when considering whether to add code to Parrot, we'll ask ourselves and the
developer(s) the following questions, in approximate order of importance. This
is not an exhaustive list as much as a guide to help us make sure we think
through the implications of adopting and supporting a new core component.

=over 4

=item * What benefit will the code provide to Parrot and its users?

How will it help Parrot and its users to further their goals? Examples include
better debugging, increased execution speed, better code generation and
improved modularity.

=item * How does its benefit outweigh its maintenance (testing, updating, support, deprecation, etc.) burden?

This is somewhat subjective, but the main question concerns how high the
maintenance burden will be relative to the benefits the code will provide.

=item * Is the code something that most of Parrot's users will be happy to find?

More specifically, will the addition make development more fun for the majority
of Parrot's users. A generic optimization framework is would help most
projects and have a good chance of inclusion. A specialized math library or an
HLL-specific datatype won't be of use to most projects and should live as a
separate project.

=item * How well-documented and tested is it?

If we can't figure out how it works or if it does what it claims, it'll have a
hard getting accepted. We have enough undertested and underdocumented code
already.

=item * Which committers have expressed willingness to maintain it? How familiar are they with it?

Core code needs to be maintained. If an experienced core committer expresses
willingness to maintain an addition, that's good. If that committer has worked
with the code, that's better.

=item * Does the code have any portability issues?

We want Parrot to run on as many platforms as possible. If the code has any
OS- or CPU-specific components, are they well-separated and easy to port to
other systems?

=item * What impact does it have on Parrot's install footprint?


=item * How will having the code in core help Parrot more than having it in an external project would?


=back

=cut

__END__
Local Variables:
fill-column:78
End:

0 comments on commit 4dc8e16

Please sign in to comment.