#!/usr/bin/perl -Tw -Ilib -I../lib # # noid - a Perl script that mints and binds nice opaque identifiers # using the Noid.pm module. This script can be invoked additionally # (via a links) as "web" to format output for the web. # # Author: John A. Kunze, jak@ucop.edu, California Digital Library # Orginally created Nov. 2002 at UCSF Center for Knowledge Management # # --------- # Copyright (c) 2002-2004 UC Regents # # Permission to use, copy, modify, distribute, and sell this software and # its documentation for any purpose is hereby granted without fee, provided # that (i) the above copyright notices and this permission notice appear in # all copies of the software and related documentation, and (ii) the names # of the UC Regents and the University of California are not used in any # advertising or publicity relating to the software without the specific, # prior written permission of the University of California. # # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. # # IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY # SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY # THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE # OR PERFORMANCE OF THIS SOFTWARE. # --------- use strict; sub get_untainted_PERL5LIB { my $key; my $perl_5_lib = $ENV{"PERL5LIB"}; my @lib_list = ('./Noid/lib'); ! defined($perl_5_lib) and return(@lib_list); if ($perl_5_lib =~ /^(\/\S+)$/) { push @lib_list, $1; return(@lib_list); } die(qq@Format of variable "PERL5LIB" ($perl_5_lib) invalid.\n@); } #use lib './Noid/lib'; use lib get_untainted_PERL5LIB( ); use Text::ParseWords; use Getopt::Long; use BerkeleyDB; use Noid; my $web = 0; my ($dbdir, $dbname, $debug, $ver, $help, $contact, $bulkcmd); my ($template, $snaa, $total); my (@valid_helptopics, %info); # purposely undefined for now my @valid_commands = qw( bind dbinfo dbcreate fetch get hello help hold mint note peppermint queue validate ); # yyy make a noidmail (email robot interface?) # xxx location field for redirect should include a discriminant # eg, ^c for client choice, ^i for ipaddr, ^f format, ^l language # and ^b for browser type, ^xyz for any http header?? # yyy add "file" command, like bind, but stores a file, either as file or # in a big concatenation stream (binding offset, length, checksum)? # xxx figure out whether validate needs to open the database, and if not, # what that means # xxx to notify: include Giarlo, Giaretta, Stack, OCKHAM, Juha, weibel, lannom # all ARK users, DC-p.Id list, DC-pres., ERC list, # max planck society: suckfuell@gv.mpg.de, schimmer@mpg-gv.mpg.de, # i.overkamp@bm.mpg.de, bowman@biochem.mpg.de # main { my $line; if ($0 =~ m|noidu[^/]*$|) { # if called with the URL interface $web = 1; # orient output for HTTP print "Content-Type: text/plain\n\n"; open(STDERR, ">&STDOUT") or die("Can't combine stderr and stdout: $!\n"); ! defined($ENV{'QUERY_STRING'}) and die("No QUERY_STRING (hence no command) defined.\n"); ($line = $ENV{'QUERY_STRING'}) =~ tr/+/ /; @ARGV = shellwords($line); #print "ARGV: " . join("|", @ARGV) . "\n"; } if ($0 =~ m|noidr[^/]*$|) { # if called for RewriteMap resolving, # see Apache Rewrite mod documentation $| = 1; # very important to unbuffer the output $bulkcmd = 1; # xxx should we set a timeout to prevent hanging the server? } if (! ($contact = who_are_you($web))) { print STDERR "Can't tell who you are: $!\n"; exit(1); } if (! GetOptions( 'debug' => \$debug, # flag 'f=s' => \$dbdir, # filesystem directory name 'version' => \$ver, # flag 'help' => \$help, # flag )) { print "error: GetOptions\n"; usage(1, 1, "intro"); exit(1); } $web && $debug and print "contact=$contact, pwd=", `pwd`; # Handle -v or -h, and exit early. if ($ver) { # We take our version number from the Noid module version. print qq@This is "noid" version $Noid::VERSION.\n@; exit(0); } if ($help) { # xxx should we encode help output? print "help:\n"; usage(0, 0, "intro"); exit(0); } # Now try to find a database directory string. # In the special case of dbcreate, we may create # and name the directory on behalf of the user. # if (! defined($dbdir)) { defined($ENV{'NOID'}) and # is NOID env variable defined? $dbdir = $ENV{'NOID'}, 1 or $0 =~ m|_([^/]+)$| and # executable link reveals dbdir? $dbdir = $1, 1 or $dbdir = '.', # else try current directory ; if (! defined($dbdir) || $dbdir !~ /\S/) { print "error: no Dbdir\n"; usage(1, 1, "intro"); exit(1); } } elsif ($web) { print qq@-f option not allowed in URL interface.\n@; return(0); } # Now untaint $dbdir. xxx we can do better? $dbdir =~ m|^(.*)$| and $dbdir = $1 or print("error: bad Dbdir\n"), usage(1, 1, "intro"), exit(1) ; $dbname = "$dbdir/NOID/noid.bdb"; # Bulk command mode is signified by a single final argument of "-". # If we're _not_ in bulk command mode, expect a single command # represented by the remaining arguments; do it and exit. # $bulkcmd ||= ($#ARGV == 0 && $ARGV[0] eq "-"); if (! $bulkcmd) { do_command(@ARGV); exit(0); } # If we get here, we're in bulk command mode. Read, tokenize, # and execute commands from the standard input. Test with # curl --data-binary @cmd_file http://dot.ucop.edu/nd/noidu_kt5\?- # where cmd_file contains newline-separated commands. # xxx do HTTP Post version of this...! # XXX make sure to %-decode web QUERY_STRING, so we don't have # to always put +'s for spaces # while (($line = )) { do_command(shellwords($line)); } exit(0); } sub do_command { # Any remaining args should form a noid command. # Look at the command part (if any) now, and complain about # a non-existent database unless the command is "dbcreate". # my $command = shift; if (! defined($command)) { # if no command arg usage(1, 1, "intro"); return(0); } if (! -f $dbname && $command ne 'dbcreate' && $command ne 'help') { # if the database doesn't exist when it needs to bprint(*STDERR, "error: no database ($dbname) " . "-- use dbcreate?\n\n"); usage(1, 1, "intro"); return(0) } if (grep(/^$command$/, @valid_commands) != 1) { print "error: no such command: $command (", join(" ", @_), ")\n"; usage(1, 1, "intro"); return(0); } # Perform extra checks in $web case. if ($web && $command eq 'dbcreate') { print qq@error: command "$command" not allowed in URL interface.\n@; usage(1, 1, "intro"); return(0); } # It should now be safe to turn off strict 'refs' when we # invoke a command via its subroutine name. #if ($#_ < 0) { # usage(1); # xxx say something senstive about $command #usage(1, 1, "intro"); # return(0); #} no strict 'refs'; &$command(@_); } # # --- begin almost alphabetic listing of functions --- # # yyy what is the sensible thing to do if (a) no element given, # (b) if no value, or (c) if there are multiple values? # xxx vbind(..., template, ...)? nvbind()? # # Returns number of elements successfully bound. # # XXX what about append at the list vs the string level? sub bind { my( $how, $id, $elem, $value )=@_; my $validate = 1; my $noid = Noid::dbopen($dbname, 0); if (! $noid) { print STDERR Noid::errmsg($noid); return(0); } my $report; ! defined($elem) and $elem = ""; if ($elem eq ":") { # expect name/value pairs up to blank line defined($value) and print(STDERR "Why give a value ($value) with an " . qq@element "$elem"?\n@), Noid::dbclose($noid), return(0); # To slurp paragraph, apparently safest to use local $/, which local $/; # disappears when scope exits. $/ = "\n\n"; # Means paragraph mode. my $para = || ""; chop $para; # XXX needed? $para =~ s/^#.*\n//g; # remove comment lines $para =~ s/\n\s+/ /g; # merge continuation lines my @elemvals = split(/^([^:]+)\s*:\s*/m, $para); shift @elemvals; # throw away first null my ($bound, $total) = (0, 0); while (1) { ($elem, $value) = (shift @elemvals, shift @elemvals); ! defined($elem) && ! defined($value) and last; $total++; ! defined($elem) and Noid::addmsg($noid, "error: $id: bad element associated " . qq@with value "$value".@), last; ! defined($value) and $value = "", 1 or chop $value ; $report = Noid::bind($noid, $contact, $validate, $how, $id, $elem, $value); ! defined($report) and print(STDERR $report, "\n"), usage(1, 1, "bind"), # XXX how/who should log failures in "hard" case or $bound++, print($report, "\n"), ; } # XXX summarize for log $total and $bound Noid::dbclose($noid); return(defined($report) ? 1 : 0); } elsif ($elem eq ":-") { # expect name/value to be rest of file defined($value) and print(STDERR "Why give a value ($value) with an " . qq@element "$elem"?\n@), Noid::dbclose($noid), return(0); # while () { # next if /^#/ || /^\s*\n/; # last; # end at first non-blank, non-comment # } # chop; # ! defined($_) || ! s/^(\w+)\s*:\s*// and # Noid::addmsg($noid, "error: $id no element to bind."), # Noid::dbclose($noid), # return(0); # $elem = $1; # $value = $_; # # To slurp file, apparently safest is to use local $/, which # local $/; # disappears when scope exits. # $value .= ; # $/==undef means file mode. # Read all of STDIN into array "@input_lines". my @input_lines = ; # Remove all newlines. foreach (@input_lines) { chomp; } # Ignore any leading lines that start with a pound sign # or contain nothing but white space. while (scalar(@input_lines) > 0) { if ((substr($input_lines[0], 0, 1) eq "#") || ($input_lines[0] =~ /^\s*$/)) { shift @input_lines; next; } last; } # If we don't have any lines, there's a problem. if (scalar(@input_lines) == 0) { print STDERR "error: no non-blank, non-comment ", "input.\n"; Noid::dbclose($noid); return(0); } # There must be an element and a colon on the first line. unless ($input_lines[0] =~ /^\s*(\w+)\s*:\s*(.*)$/) { print STDERR "error: missing element or colon on ", "first non-blank, non-comment line.\n"; Noid::dbclose($noid); return(0); } # Save the element, and any part of the value that there # might be on the first line. $elem = $1; $value = $2; # Remove the first line from the array. shift @input_lines; # Append any additional lines to the value. foreach (@input_lines) { $value .= "\n" . $_; } # Put on the final newline. $value .= "\n"; # # Now drop through to end of if-elsif clause to real binding. } # yyy eg, :fragment:Offset:Length:Path # yyy eg, :fragment:Offset:Length:Path # yyy eg, :file:Path # yyy eg, ":xml", elsif ($elem =~ /^:/) { print(STDERR qq@Binding to element syntax "$elem" @ . "not supported.\n"); Noid::dbclose($noid); return(0); } $report = Noid::bind($noid, $contact, $validate, $how, $id, $elem, $value); ! defined($report) and print(STDERR Noid::errmsg($noid)), usage(0, 1, "bind") or print($report, "\n") ; # xxx make sure return(0)'s do dbclose... Noid::dbclose($noid); return(defined($report) ? 1 : 0); } # This routine may not make sense in the URL interface. # sub dbcreate { my( $template, $policy, $naan, $naa, $subnaa )=@_; my $dbreport = Noid::dbcreate($dbdir, $contact, $template, $policy, $naan, $naa, $subnaa); if (! $dbreport) { print Noid::errmsg(), "\n"; return(0); } print $dbreport, "\n"; return(1); } sub dbinfo { my( $level )=@_; $level = "brief" if (! defined($level)); my $noid = Noid::dbopen($dbname, DB_RDONLY); if (! $noid) { print Noid::errmsg($noid); return(0); } Noid::dbinfo($noid, $level); Noid::dbclose($noid); return(1); } sub fetch { my( $id, @elems )=@_; return(getfetch(1, $id, @elems)); } sub get { my( $id, @elems )=@_; return(getfetch(0, $id, @elems)); } # xxx RewriteLock /path/toLockFile # xxx RewriteMap prg:/path/toBDB # xxx id->stdin; NULL or 1-line->stdout sub rmap { my( $id, @elems )=@_; return(getfetch(0, $id, @elems)); } sub getfetch { my( $verbose, $id, @elems )=@_; my $noid = Noid::dbopen($dbname, DB_RDONLY); if (! $noid) { print STDERR Noid::errmsg($noid); return(0); } my $fetched = Noid::fetch($noid, $verbose, $id, @elems); ! defined($fetched) and print(STDERR Noid::errmsg($noid)) or print($fetched), $verbose && print("\n") ; Noid::dbclose($noid); return(1); } sub hello { print "Hello.\n"; } sub help { my( $topic )=@_; my $in_error = 0; my $brief = 0; return(usage($in_error, $brief, $topic)); } # yyy what about a "winnow" routine that is either started # from cron or is started when an exiting noid call notices # that there's some harvesting/garbage collecting to do and # schedules it for, say, 10 minutes hence (by not exiting, # but sleeping for 10 minutes and then harvesting)? sub hold { my( $on_off, @ids )=@_; my $noid = Noid::dbopen($dbname, 0); if (! $noid) { print STDERR Noid::errmsg($noid); return(0); } if (! Noid::hold($noid, $contact, $on_off, @ids)) { print(STDERR Noid::errmsg($noid)); usage(1, 1, "hold"); Noid::dbclose($noid); return(0); } print(Noid::errmsg($noid), "\n"); # no error message at all Noid::dbclose($noid); return(1); } sub peppermint { my( $n, $elem, $value )=@_; mint($n, $elem, $value, 1); } sub mint { my( $n, $elem, $value, $pepper )=@_; if (defined($pepper)) { print STDERR "The peppermint command is not implemented yet.\n"; return(0); } if (! defined($n) || $n !~ /^\d+$/) { print STDERR "Argument error: expected positive integer, got ", (defined($n) ? qq@"$n"@ : "nothing"), "\n"; usage(1, 1, "mint"); return(0); } my $noid = Noid::dbopen($dbname, 0); if (! $noid) { print Noid::errmsg($noid); return(0); } my $id; while ($n--) { if (! defined($id = Noid::mint($noid, $contact, $pepper))) { print STDERR Noid::errmsg($noid); Noid::dbclose($noid); return(0); } print "id: $id\n"; } Noid::dbclose($noid); print "\n"; return(1); } sub note { my( $key, $value )=@_; if (! defined($key) || ! defined($value)) { print STDERR "You must supply a key and a value.\n"; usage(1, 1, "note"); return(0); } my $noid = Noid::dbopen($dbname, 0); ! Noid::note($noid, $contact, $key, $value) and print Noid::errmsg($noid); Noid::dbclose($noid); return(1); } sub queue { my( $when, @ids )=@_; my $noid = Noid::dbopen($dbname, 0); if (! $noid) { print STDERR Noid::errmsg($noid); return(0); } my @queued = Noid::queue($noid, $contact, $when, @ids); my $retval; ! @queued and $retval = 0, print(STDERR Noid::errmsg($noid), "\n"), 1 or $retval = 1, print(join("\n", @queued), "\n"), ; my $n = scalar(grep(! /^error:/, @queued)); print("note: $n identifier", ($n == 1 ? "" : "s"), " queued\n"); Noid::dbclose($noid); return($retval); } # Returns the number of valid ids. sub validate { my( $template, @ids )=@_; my $noid = Noid::dbopen($dbname, DB_RDONLY); if (! $noid) { print Noid::errmsg($noid); return(0); } my @valids = Noid::validate($noid, $template, @ids); ! @valids and print(STDERR Noid::errmsg($noid)), Noid::dbclose($noid), usage(1, 1, "validate"), return(0); my @iderrs = grep(/^error:/, @valids); print($_, "\n") for (@valids); Noid::dbclose($noid); return(scalar(@ids) - scalar(@iderrs)); } # Print a blank (space) in front of every newline. # First arg must be a filehandle. # sub bprint { my( $out, @args )=@_; map {s/\n/\n /g} @args; return print $out @args; } # Always returns 1 so it can be used in boolean blocks. # sub usage { my( $in_error, $brief, $topic )=@_; ! defined($in_error) and $in_error = 1; # default is to treat as error $in_error and $| = 1; # flush any pending output my $out = # where to send output ($in_error ? *STDERR : *STDOUT); ! defined($brief) and $brief = 1; # default is to be brief $topic ||= "intro"; $topic = lc($topic); # Initialize info topics if need be. # ! @valid_helptopics and init_help(); my @blurbs = grep(/^$topic/, @valid_helptopics); if (scalar(@blurbs) != 1) { print $out (scalar(@blurbs) < 1 ? qq@Sorry: nothing under "$topic".\n@ : "Help: Your request ($topic), matches more than one " . "topic:\n\t(" . join(", ", @blurbs) . ").\n" ), " You might try one of these topics:"; my @topics = @valid_helptopics; my $n = 0; my $topics_per_line = 8; while (1) { ! @topics and print("\n "), last or $n++ % $topics_per_line == 0 and print("\n\t") or print(" ", shift(@topics)) ; } print "\n\n"; return(1); } # If we get here, @blurbs names one story. my $blurb = shift @blurbs; # Big if-elsif clause to switch on requested topic. # # Note that we try to make the output conform to ANVL syntax; # in the case of help output, every line tries to be a continuation # line for the value of an element called "Usage". To do this we # pass all output through a routine that just adds a space after # every newline. The end of the output should end the ANVL record, # so we print "\n\n" at the end. # my ($t, $i); if ($blurb eq "intro") { bprint $out, qq@Usage: noid [-f Dbdir] [-v] [-h] Command Arguments@, ($brief ? qq@ noid -h (for help with a Command summary).@ : qq@ Dbdir defaults to "." if not found from -f or a NOID environment variable. For more information try "perldoc noid" or "noid help Command". Summary: @); $brief and print("\n\n"), return(1); for $t (@valid_commands) { $i = $info{"$t/brief"}; ! defined($i) || ! $i and next; bprint $out, $i; } bprint $out, qq@ If invoked as "noidu...", output is formatted for a web client. Give Command as "-" to run a block of noid Commands read from stdin or from POST data.@; print "\n\n"; return(1); } #elsif $blurb eq "dbcreate" and print $out $info{$blurb} #or #$blurb eq "bind" and print $out $brief and $blurb .= "/brief"; $t = $info{$blurb}; if (! defined($t) || ! $t) { print $out qq@Sorry: no information on "$blurb".\n\n@; return(1); } bprint $out, $t; print "\n"; return(1); # XXX fix these verbose messages my $yyyy = qq@ Called as "noid", an id generator accompanies every COMMAND. Called as "noi", the id generator is supplied implicitly by looking first for a NOID environment variable and, failing that, for a file calld ".noid" in the current directory. Examples show the explicit form. To create a generator, use noid ck8 dbcreate TPL SNAA where you replace TPL with a template that defines the shape and number of all identifiers to be minted by this generator. You replace SNAA with the name (eg, the initials) of the sub NAA (Name Assigning Authority) that will be responsible for this generator; for example, if the Online Archive of California is the sub-authority for a template, SNAA could be "oac". This example of generator intialization, noid oac.noid dbcreate pd2.wwdwwdc oac sets up the "oac.noid" identifier generator. It can create "nice opaque identifiers", such as "pd2pq5dk9z", suitable for use as persistent identifiers should the supporting organization wish to provide such a level of commitment. This generator is also capable of holding a simple sequential counter (starting with 1), which some callers may wish to use as an internal number to keep track of minted external identifiers. [ currently accessible only via the count() routine ] In the example template, "pd2" is a constant prefix for an identifier generator capable of producing 70,728,100 identifiers before it runs out. A template has the form "prefix.mask", where 'prefix' is a literal string prepended to each identifier and 'mask' specifies the form of the generated identifier that will appear after the prefix (but with no '.' between). Mask characters are 'd' (decimal digit), 'w' (limited alpha-numeric digit), 'c' (a generated check character that may only appear in the terminal position). Alternatively, if the mask contains an 's' (and no other letters), dbcreate initializes a generator of sequential numbers. Instead of seemingly random creates sequentially generated number. Use '0s' to indicate a constant width number padded on the left with zeroes. @; return(1); } sub init_help { # For convenient maintenance, we store individual topics in separate # array elements. So as not to slow down script start up, we don't # pre-load anything. In this way only the requester of help info, # who does not need speed for this purpose, pays for it. # @valid_helptopics = qw( intro all templates ); push(@valid_helptopics, @valid_commands); %info = ( 'bind/brief' => q@ noid bind How Id Element Value # to bind an Id's Element, where How is set|add|insert|new|replace|mint|append|prepend|delete|purge. Use an Id of :idmap/Idpattern, Value=PerlReplacementPattern so that fetch returns variable values. Use ":" as Element to read Elements and Values up to a blank line from stdin (up to EOF with ":-"). @, 'bind' => q@@, 'dbinfo/brief' => q@@, 'dbinfo' => q@@, 'dbcreate/brief' => q@ noid dbcreate [ Template (long|-|short) [ NAAN NAA SubNAA ] ] where Template=prefix.Tmask, T=(r|s|z), and mask=string of (e|d|k) @, 'dbcreate' => q| To create an identifier minter governed by Template and Term ("long" or "-"), noid dbcreate [ Template Term [ NAAN NAA SubNAA ] ] The Template gives the number and form of generated identifiers. Examples: .rddd minter of random 3-digit numbers that stops after the 1000th .zd sequential numbers without limit, adding new digits as needed bc.sdddd sequential 4-digit numbers with constant prefix "bc" .rdedeede .7 billion random ids, extended-digits at chars 2, 4, 5 and 7 fk.rdeeek .24 million random ids with prefix "fk" and final check char For persistent identifiers, use "long" for Term, and specify the NAAN, NAA, and SubNAA. Otherwise, use "-" for Term or omit it. The NAAN is a globally registered Name Assigning Authority Number; for identifiers conforming to the ARK scheme, this is a 5-digit number registered with ark@cdlib.org, or 00000. The NAA is the character string equivalent registered for the NAAN; for example, the NAAN, 13030, corresponds to the NAA, "cdlib.org". The SubNAA is also a character string, but it is a locally determined and possibly structured subauthority string (e.g., "oac", "ucb/dpg", "practice_area") that is not globablly registered. |, 'fetch/brief' => q@ noid fetch Id Element ... # fetch/map one or more Elements @, 'fetch' => q@ To bind, noid bind replace fk0wqkb myGoto http://www.cdlib.org/foobar.html sets "myGoto" element of identifier "fk0wqkb" to a string (here a URL). @, 'get/brief' => q@ noid get Id Element ... # fetch/map Elements without labels @, 'get' => q@@, 'hello/brief' => q@@, 'hello' => q@@, 'hold/brief' => q@ noid hold (set|release) Id ... # place or remove a "hold" on Id(s) @, 'hold' => q@@, 'mint/brief' => q@ noid mint N [ Elem Value ] # to mint N identifiers (optionally binding) @, 'mint' => q@@, 'note/brief' => q@@, 'note' => q@@, 'peppermint/brief' => q@@, 'peppermint' => q@@, 'queue/brief' => q@ noid queue (now|first|lvf|Time) Id ... # queue (eg, recycle) Id(s) Time is NU, meaning N units, where U= d(ays) | s(econds). With "lvf" (Lowest Value First) lowest value of id will mint first. @, 'queue' => q@@, 'validate/brief' => q@ noid validate Template Id ... # to check if Ids are valid Use Template of "-" to use the minter's native template. @, 'validate' => q@@, ); return(1); } sub who_are_you { my( $web )=@_; my $user; if ($web) { $user = $ENV{'REMOTE_USER'} || ''; my $host = $ENV{'REMOTE_HOST'} || $ENV{'REMOTE_ADDR'} || ''; $user .= '@' . $host; } # Look up by REAL_USER_ID first. my ($name, undef, undef, $gid) = getpwuid($<); my $ugid = getlogin() || $name; ! $ugid and return ""; $ugid .= "/" . ((getgrgid($gid))[0] || ""); # If EFFECTIVE_USER_ID differs from REAL_USER_ID, get its info too. if ($> ne $<) { ($name, undef, undef, $gid) = getpwuid($>); ! $name and return ""; $ugid .= " ($name/" . ((getgrgid($gid))[0] || "") . ")"; } $user = ($user ? "$user $ugid" : $ugid); return $user; } exit 0; 1; # yyy Possible for 'c' mask char: # ASCII 33 to 126 (no SPACE, no DEL) --> 94 (not prime) # MINUS the 5 chars: / \ - % " --> 89 (prime) # or MINUS the 5 chars: / \ - % . --> 89 (prime) # or MINUS the 5 chars: / \ - % SPACE --> 89 (prime) # # Note: current (1/2004) restrictions on ARKs are alphanums plus # = @ $ _ * + # # with the following reserved for special purposes # / . - % # xxx noid example: shuffle play (as in random song list) # xxx bind is pair-wise or triple-wise? (how to explain consistently) # xxx mail to Evan Owens when noid is ready __END__ =head1 NAME noid - nice opaque identifier generator commands =head1 SYNOPSIS B [ B<-f> I ] [ B<-vh> ] I I =head1 DESCRIPTION The B utility creates minters (identifier generators) and accepts commands that operate them. A minter efficiently generates, tracks, and binds unique identifiers, which are produced without replacement in random or sequential order, with or without a check character (for detecting transcription errors). A minter can bind identifiers to arbitrary element names and element values that are either stored or produced upon retrieval from rule-based transformations of requested identifiers (e.g., with application to URL redirection). Identifiers generated by these minters are also known as "noids" (nice opaque identifiers). Noid minters are suitable for the production and management of identifiers ranging from persistent, globally unique names -- ARKs, PURLs, URNs, Handles, LSIDs, etc. -- to short-lived, compact session keys (cf. UUIDs). Noid minters are very fast, scalable, easy to create and tear down, and have a relatively small footprint. They use BerkeleyDB as the underlying database, with locking and transactions for concurrency control. The form, number, and longevity of a minter's identifiers are determined by a Template and a Term supplied when the generator database is created. A supplied Term of "long" establishes extra restrictions and logging appropriate for identifiers that are intended to be persistent. Across successive minting operations, the generator "uses up" its namespace (the pool of identifiers it is capable of minting) such that no identifier will ever be generated twice unless the supplied Term is "short" and the namespace is finite and completely exhausted. The default Term is "medium". The B utility parameters -- flags, I (database location), I, I -- are described later in the COMMANDS section. There are other sections covering TEMPLATES, RULEZ<>-BASED MAPPING, and the URL INTERFACE. =head1 TUTORIAL INTRODUCTION To create a minter for an unlimited number of identifiers, you could try noid dbcreate s.zd This produces a generator for medium term identifiers (the default) with the Template, "s.zd", governing the order, number, and form of minted identifier strings. These identifiers will begin with the constant part "s" and end in a digit (the final 'd'), all within an unbounded sequential ('z') namespace. The TEMPLATES section gives a full explanation. This generator will mint the identifiers, in order, s0, s1, s2, ..., s9, s10, ..., s99, s100, ... and never run out. To mint the first ten identifiers, noid mint 10 When you're done, on a UNIX platform you can remove that minter with rm -fr NOID Now let's create a second minter with a more complex template. noid dbcreate f5.reedeedk long 13030 cdlib.org oac/cmp This creates a generator for long term identifiers that begin with the constant part "13030/f5". Identifiers will emerge in "quasi-random" order, each consisting of six characters matching up one-for-one with the letters "eedeed". The template's final 'k' causes a computed check character to be added to the end of every generated identifier. Exactly 70,728,100 identifiers will be minted before running out. The 13030 parameter is the registered Name Assigning Authority Number (NAAN) for the assigning authority known as "cdlib.org", and "oac/cmp" is a string chosen by the person setting up this minter to identify the project that will be operating it. This particular minter generates identifiers that start with the prefix "f5" in the 13030 namespace. To register for a NAAN, request one by email to ark at cdlib dot org. Although the order of minting is not obvious, it is "quasi-random" in the sense that on your machine a minter created with the same Template will always produce the same sequence of noids over its lifetime. For example, our second minter will generate identifiers that range from 13030/f5000000s to 13030/f5zz9zz94. The first two generated will be 13030/f54x54g11 and 13030/f5154dn7k Quasi-random is a shade more predictable than pseudo-random (which, techically, is as random as computers get). This is a feature designed to help identifier managers in case they are forced to start minting again from scratch; they simply process their objects over in the same order as before to recover the original assignments. rm NOID/noid.bdb The above command removes just enough of the minter to allow you to create another minter in its place. =head1 IDENTIFIER = ASSOCIATION = BINDING An identifier is not a string of character data. An identifier is an association between a string of data and an object. It doesn't matter whether the object is physical, digital, or abstract -- without an association, a string of data is just data. The association can be anything you say, but because it is an abstraction, that association is easy to lose track of unless you write down your assertions. To record the assertions supporting the association that defines an identifier, a noid minter allows you to bind arbitrary named elements and values to the identifier. Noid element values (and names for that matter) can be up to 4 gigabytes in length. You don't have to use the noid binding features at all if you prefer to keep track of your bindings elsewhere, such as in a separate database management system (DBMS) or on a piece of paper. At a minimum, for each noid generated, the minter automatically stores a "circulation" record asserting who generated it and when. An arbitrary database system can complement a noid minter without any awareness or dependency on noids. Associations, the I of identifiers, last only as long as they (in particular, their bindings) are maintained. On computers, identifier bindings are typically managed using methods that at some point map identifier strings to database records and/or to filesystem entries (effectively using the filesystem as a DBMS). The structures and logistics for bindings maintenance may reside entirely with the minter database, entirely outside the minter database, or anywhere in between. An individual organization defines whatever maintenance configuration suits it best. A persistent identifier is an identifier that an organization commits to retain in perpetuity. Often maintaining identifiers goes hand in hand with maintaining the objects to which they are bound. No technology exists that automatically maintains objects and associations; persistence is a matter of service commitment, tools that support that commitment, and information that allows users receiving identifiers to make the best judgments regarding an organization's ability and intention to maintain those identifiers. It will be normal for other organizations to maintain their own assertions about identifiers that you issue, and vice versa. In general there is nothing to prevent discrepancies among sets of assertions. Effectively, the association -- the identifier -- is in the eye of the beholder. As a simple example, authors create bibliography entries for cited works, and in that process they make their claims (sometimes in error) about such things as the author and title of the identified thing. A conscientious provider of an identifier-driven service (such as digital object retrieval) will allow users to review the assertions it makes about identifiers that it services, whether it minted none, some, or all of them. We call such an organization a Name Mapping Authority because it "maps" identifiers to services. For persistence across decades or centuries, an archiving organization must be able to assert its views about the identity and support policy for an object inherited through a chain of stewardship all the way back to a completely unrelated and now defunct issuing organization. For that identifier to have persisted across the intervening years, it must look the same as when first minted. At that time global uniqueness would have required the minted identifier to bear the imprint of the original issuing organization, or Name Assigning Authority, which long ago ceased to have any responsibility for its persistence. There is thus no conflict in a mapping authority servicing identifiers that originate in many different assigning authorities. These notions of service and persistence are built into the ARK (Archival Resource Key) naming scheme that noid minters were designed, among other things, to support; see L for more information. =head1 COMMANDS Once again, the overall utility summary is =over 5 B [ B<-f> I ] [ B<-vh> ] I I =back In all invocations, output is intended to be both human- and machine-readable. Bulk operations are possible, allowing multiple minting and binding commands within one invocation. In particular, if I is given as an "-" argument, then actual I are read from the standard input. The database directory string, I, may be given with the B environment variable, overridable with the B<-f> option. If those strings are empty, the name or link name of the B executable (argv[0] for C programmers) is checked to see if it reveals I. If that check (described next) fails, I is taken to be the current directory. To check the executable for I, the final pathname component (tail) of its name is examined and split at the first '_' encountered. If none, the check fails. Otherwise, the check is considered successful and the latter half is taken as naming I relative to the current directory. This mechanism is designed for cases when it is inconvenient to specify I (such as in the URL interface) or when you are running several minters at once. As an example, F specifies a I of F. All files associated with a minter will be organized in a subdirectory, F, of I; this has the consequence that there can be at most one minter in a directory. To allow B to create a new minter in a directory already containing a F subdirectory, it is sufficient to remove the file, F, which is the heart of the minter database. The B utility may be run as a URL-driven web server application, such as in a CGI that allows name assignment via remote operator. If the executable begins B, the noid URL mode is in effect. Input parameters, separated by a '+' sign, are expected to arrive embedded in the query part of a URL, and output will be formatted for display on an ordinary web browser. An executable of B, for example, would turn on URL mode and set I to I. At minter creation time, a report summarizing its properties is produced and stored in the file, F. This report may be useful to the organization articulating the operating policy of the minter. In a formal context, such as the creation of a minter for long term identifiers, that organization is the Name Assigning Authority. The B<-v> option prints the current version of the B utility and B<-h> prints a help message. In the I list below, capitalized symbols indicate values to be replaced by the caller. Optional arguments are in [brackets] and (A|B|C) means one of A or B or C. =over 4 =item B [ I