#!/usr/bin/perl -w -I/opt/eprints/perl_lib 

#-d:DProf

######################################################################
#
#  This file is part of GNU EPrints 2.
#  
#  Copyright (c) 2000-2004 University of Southampton, UK. SO17 1BJ.
#  
#  EPrints 2 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 2 of the License, or
#  (at your option) any later version.
#  
#  EPrints 2 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 EPrints 2; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
######################################################################

use EPrints;
use strict;
$|=1;

# nb. This syntax is subject to change in future versions.
my( $archiveid, $datasetid, $userid ) = @ARGV;

my $session = new EPrints::Session( 1 , $archiveid );
exit( 1 ) unless( defined $session );

my $db = $session->get_database;
#$db->set_timer( 1 );

$userid = 1 unless defined $userid;
$datasetid = "archive" unless defined $datasetid;

my $datapath = $EPrints::SystemSettings::conf->{base_path}."/testdata/data";

my $ds = $session->get_archive()->get_dataset( $datasetid );

my $info =  { 
	ds => $ds,
	userid => $userid,
	datapath => $datapath,
};
my $infile = $datapath."/set-01.xml";
#print `date`;
EPrints::ImportXML::import_file( $session , $infile , \&deal, $ds, $info );
#print `date`;

$session->terminate();

exit;

sub deal 
{
	my( $session , $table , $eprint, $info ) = @_;

	my $fullpath = $info->{datapath}."/demo.pdf";
#	open( PDF, $fullpath ) || die "Could not read $fullpath";
#	my $filedata = join(",",<PDF> );
#	close PDF;

	$eprint->set_value( "userid", $info->{userid} );
	my $data = $eprint->get_data;
	$data->{documents} = [
		{
			format=>"pdf",
			main=>"paper.pdf",
			files => [ { filename=>"paper.pdf", data=>$fullpath } ],
		}
	];
	$eprint = $info->{ds}->create_object( $session, $data );

	print "added: ".$eprint->get_id."\n";
}


