use of org.haiku.haikudepotserver.dataobjects.PkgVersionLocalization in project haikudepotserver by haiku.
the class PkgCategoryCoverageExportSpreadsheetJobRunner method run.
@Override
public void run(JobService jobService, PkgCategoryCoverageExportSpreadsheetJobSpecification specification) throws IOException {
Preconditions.checkArgument(null != jobService);
Preconditions.checkArgument(null != specification);
final ObjectContext context = serverRuntime.newContext();
// this will register the outbound data against the job.
JobDataWithByteSink jobDataWithByteSink = jobService.storeGeneratedData(specification.getGuid(), "download", MediaType.CSV_UTF_8.toString());
try (OutputStream outputStream = jobDataWithByteSink.getByteSink().openBufferedStream();
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(outputStream);
CSVWriter writer = new CSVWriter(outputStreamWriter, ',')) {
// headers
final List<String> pkgCategoryCodes = getPkgCategoryCodes();
String[] headings = getHeadingRow(pkgCategoryCodes);
long startMs = System.currentTimeMillis();
writer.writeNext(headings);
// stream out the packages.
LOGGER.info("will produce category coverage spreadsheet report");
long count = pkgService.eachPkg(context, false, pkg -> {
PkgSupplement pkgSupplement = pkg.getPkgSupplement();
List<String> cols = new ArrayList<>();
Optional<PkgVersionLocalization> locOptional = Optional.empty();
if (null != pkg) {
locOptional = PkgVersionLocalization.getAnyPkgVersionLocalizationForPkg(context, pkg);
}
cols.add(pkg.getName());
cols.add(repositoryService.getRepositoriesForPkg(context, pkg).stream().map(Repository::getCode).collect(Collectors.joining(";")));
cols.add(locOptional.isPresent() ? locOptional.get().getSummary().orElse("") : "");
cols.add(pkgSupplement.getPkgPkgCategories().isEmpty() ? AbstractJobRunner.MARKER : "");
for (String pkgCategoryCode : pkgCategoryCodes) {
cols.add(pkgSupplement.getPkgPkgCategory(pkgCategoryCode).isPresent() ? AbstractJobRunner.MARKER : "");
}
// no action
cols.add("");
writer.writeNext(cols.toArray(new String[cols.size()]));
// keep going!
return true;
});
LOGGER.info("did produce category coverage spreadsheet report for {} packages in {}ms", count, System.currentTimeMillis() - startMs);
}
}
use of org.haiku.haikudepotserver.dataobjects.PkgVersionLocalization in project haikudepotserver by haiku.
the class RepositoryHpkrIngressServiceIT method testImportThenCheck.
@Test
public void testImportThenCheck() throws Exception {
File temporaryDir;
File temporaryRepoFile = null;
File temporaryRepoInfoFile = null;
try {
temporaryDir = Files.createTempDir();
temporaryRepoFile = new File(temporaryDir, "repo");
temporaryRepoInfoFile = new File(temporaryDir, "repo.info");
// get the test hpkr data and copy it into a temporary file that can be used as a source
// for a repository.
Files.write(getResourceData("sample-repo.info"), temporaryRepoInfoFile);
Files.write(getResourceData("sample-repo.hpkr"), temporaryRepoFile);
// first setup a fake repository to import that points at the local test HPKR file.
{
ObjectContext context = serverRuntime.newContext();
Repository repository = context.newObject(Repository.class);
repository.setCode("test");
repository.setName("Test Repository");
RepositorySource repositorySource = context.newObject(RepositorySource.class);
repositorySource.setCode("testsrc_xyz");
repositorySource.setIdentifier("file://" + temporaryDir.getAbsolutePath());
repository.addToManyTarget(Repository.REPOSITORY_SOURCES.getName(), repositorySource, true);
RepositorySourceMirror repositorySourceMirror = context.newObject(RepositorySourceMirror.class);
repositorySourceMirror.setBaseUrl("file://" + temporaryDir.getAbsolutePath());
repositorySourceMirror.setIsPrimary(true);
repositorySourceMirror.setCode("testsrc_xyz_mirror");
repositorySourceMirror.setCountry(Country.getByCode(context, Country.CODE_NZ));
repositorySource.addToManyTarget(RepositorySource.REPOSITORY_SOURCE_MIRRORS.getName(), repositorySourceMirror, true);
context.commitChanges();
}
// setup another repository that is not related to the import test to check some stuff...
{
ObjectContext context = serverRuntime.newContext();
Repository repository = context.newObject(Repository.class);
repository.setCode("test2");
repository.setName("Test 2");
RepositorySource repositorySource = context.newObject(RepositorySource.class);
repositorySource.setCode("testsrc2_xyz");
// just after epoc second.
repositorySource.setLastImportTimestamp(new java.sql.Timestamp(12345L));
repository.addToManyTarget(Repository.REPOSITORY_SOURCES.getName(), repositorySource, true);
RepositorySourceMirror repositorySourceMirror = context.newObject(RepositorySourceMirror.class);
repositorySourceMirror.setBaseUrl("file://does-not-exist/path");
repositorySourceMirror.setIsPrimary(true);
repositorySourceMirror.setCode("testsrc2_xyz_mirror");
repositorySourceMirror.setCountry(Country.getByCode(context, Country.CODE_NZ));
repositorySource.addToManyTarget(RepositorySource.REPOSITORY_SOURCE_MIRRORS.getName(), repositorySourceMirror, true);
context.commitChanges();
}
// add a package version from this repository that is known not to be in that example and then
// latterly check that the package version is no longer active.
{
ObjectContext context = serverRuntime.newContext();
Pkg pkg = integrationTestSupportService.createPkg(context, "taranaki");
pkgService.ensurePkgProminence(context, pkg, Repository.tryGetByCode(context, "test").get());
pkgService.ensurePkgProminence(context, pkg, Repository.tryGetByCode(context, "test2").get());
// this one should get deactivated
{
PkgVersion pkgVersion = context.newObject(PkgVersion.class);
pkgVersion.setPkg(pkg);
pkgVersion.setMajor("1");
pkgVersion.setMinor("2");
pkgVersion.setArchitecture(Architecture.tryGetByCode(context, "x86_64").get());
pkgVersion.setIsLatest(true);
pkgVersion.setRepositorySource(RepositorySource.tryGetByCode(context, "testsrc_xyz").get());
}
// this one should remain
{
PkgVersion pkgVersion = context.newObject(PkgVersion.class);
pkgVersion.setPkg(pkg);
pkgVersion.setMajor("1");
pkgVersion.setMinor("3");
pkgVersion.setArchitecture(Architecture.tryGetByCode(context, "x86_64").get());
pkgVersion.setIsLatest(true);
pkgVersion.setRepositorySource(RepositorySource.tryGetByCode(context, "testsrc2_xyz").get());
}
context.commitChanges();
}
// add an inactive package version from this repository that is known to be in the repository. This
// package should be activated and re-used.
ObjectId originalFfmpegPkgOid;
{
ObjectContext context = serverRuntime.newContext();
Pkg pkg = integrationTestSupportService.createPkg(context, "ffmpeg");
pkgService.ensurePkgProminence(context, pkg, Repository.tryGetByCode(context, "test").get());
pkgService.ensurePkgProminence(context, pkg, Repository.tryGetByCode(context, "test2").get());
PkgVersion pkgVersion = context.newObject(PkgVersion.class);
pkgVersion.setPkg(pkg);
pkgVersion.setMajor("3");
pkgVersion.setMinor("3");
pkgVersion.setMicro("2");
pkgVersion.setRevision(1);
pkgVersion.setArchitecture(Architecture.tryGetByCode(context, "x86_64").get());
pkgVersion.setIsLatest(true);
// to be sure!
pkgVersion.setActive(false);
pkgVersion.setRepositorySource(RepositorySource.tryGetByCode(context, "testsrc_xyz").get());
PkgVersionUrl pkgVersionUrl = context.newObject(PkgVersionUrl.class);
pkgVersionUrl.setPkgUrlType(PkgUrlType.getByCode(context, org.haiku.pkg.model.PkgUrlType.HOMEPAGE.name().toLowerCase()).get());
pkgVersionUrl.setUrl("http://noop");
pkgVersion.addToManyTarget(PkgVersion.PKG_VERSION_URLS.getName(), pkgVersionUrl, true);
PkgVersionCopyright pkgVersionCopyright = context.newObject(PkgVersionCopyright.class);
pkgVersionCopyright.setBody("Norfolk pine");
pkgVersion.addToManyTarget(PkgVersion.PKG_VERSION_COPYRIGHTS.getName(), pkgVersionCopyright, true);
PkgVersionLicense pkgVersionLicense = context.newObject(PkgVersionLicense.class);
pkgVersionLicense.setBody("Punga");
pkgVersion.addToManyTarget(PkgVersion.PKG_VERSION_LICENSES.getName(), pkgVersionLicense, true);
context.commitChanges();
originalFfmpegPkgOid = pkgVersion.getObjectId();
}
// do the import.
String guid = jobService.submit(new RepositoryHpkrIngressJobSpecification("test"), JobSnapshot.COALESCE_STATUSES_NONE);
// wait for it to finish.
{
long startMs = System.currentTimeMillis();
while (Jobs.isQueuedOrStarted(jobService.tryGetJob(guid).get()) && (System.currentTimeMillis() - startMs) < DELAY_PROCESSSUBMITTEDTESTJOB) {
Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS);
}
if (Jobs.isQueuedOrStarted(jobService.tryGetJob(guid).get())) {
throw new IllegalStateException("test processing of the sample repo has taken > " + DELAY_PROCESSSUBMITTEDTESTJOB + "ms");
}
}
// check that the sample url is loaded into the repository source.
{
ObjectContext context = serverRuntime.newContext();
RepositorySource repositorySource = RepositorySource.tryGetByCode(context, "testsrc_xyz").get();
Assertions.assertThat(repositorySource.getIdentifier()).isEqualTo("f0c086e5-e096-429c-b38d-57beabd764e9");
// ^^ as defined in the repo info file.
Assertions.assertThat(repositorySource.getArchitecture().getCode()).isEqualTo("x86_gcc2");
// ^^ as defined in the repo info file.
}
// now pull out some known packages and make sure they are imported correctly.
// TODO - this is a fairly simplistic test; do some more checks.
{
ObjectContext context = serverRuntime.newContext();
verifyPackage(context, "apr");
verifyPackage(context, "schroedinger");
// this one is not in the import and so should be inactive afterwards.
List<PkgVersion> pkgVersions = ObjectSelect.query(PkgVersion.class).where(PkgVersion.PKG.dot(Pkg.NAME).eq("taranaki")).select(context);
Assertions.assertThat(pkgVersions.size()).isEqualTo(2);
for (PkgVersion pkgVersion : pkgVersions) {
boolean isTestRepository = pkgVersion.getRepositorySource().getRepository().getCode().equals("test");
Assertions.assertThat(pkgVersion.getActive()).isEqualTo(!isTestRepository);
}
// check that the ffmpeg package was re-used and populated; as an example.
{
PkgVersion pkgVersion = PkgVersion.get(context, originalFfmpegPkgOid);
Assertions.assertThat(pkgVersion.getActive()).isTrue();
Assertions.assertThat(pkgVersion.getIsLatest()).isTrue();
Assertions.assertThat(PkgVersion.getForPkg(context, pkgVersion.getPkg(), Repository.tryGetByCode(context, "test").get(), true).size()).isEqualTo(// include inactive
1);
PkgVersionLocalization localization = pkgVersion.getPkgVersionLocalization(NaturalLanguage.getByCode(context, NaturalLanguage.CODE_ENGLISH)).get();
Assertions.assertThat(localization.getDescription().get()).startsWith("FFmpeg is a complete, cro");
Assertions.assertThat(localization.getSummary().get()).startsWith("Audio and video rec");
// the former rubbish copyright is removed
List<String> copyrights = pkgVersion.getCopyrights();
Assertions.assertThat(copyrights.size()).isEqualTo(2);
Assertions.assertThat(ImmutableSet.copyOf(copyrights)).containsOnly("2000-2003 Fabrice Bellard", "2003-2017 the FFmpeg developers");
// the former rubbish license is removed
List<String> licenses = pkgVersion.getLicenses();
Assertions.assertThat(licenses.size()).isEqualTo(2);
Assertions.assertThat(ImmutableSet.copyOf(licenses)).containsOnly("GNU LGPL v2.1", "GNU GPL v2");
Optional<PkgVersionUrl> pkgVersionUrlOptional = pkgVersion.getPkgVersionUrlForType(PkgUrlType.getByCode(context, org.haiku.pkg.model.PkgUrlType.HOMEPAGE.name().toLowerCase()).get());
Assertions.assertThat(pkgVersionUrlOptional.isPresent()).isTrue();
Assertions.assertThat(pkgVersionUrlOptional.get().getUrl()).isEqualTo("https://ffmpeg.org/");
}
}
} finally {
if (null != temporaryRepoFile) {
if (!temporaryRepoFile.delete()) {
LOGGER.warn("unable to delete the temporary 'repo' file");
}
}
if (null != temporaryRepoInfoFile) {
if (!temporaryRepoInfoFile.delete()) {
LOGGER.warn("unable to delete the temporary 'repo.info' file");
}
}
}
}
use of org.haiku.haikudepotserver.dataobjects.PkgVersionLocalization in project haikudepotserver by haiku.
the class PkgApiImpl method getPkgVersionLocalizations.
@Override
public GetPkgVersionLocalizationsResult getPkgVersionLocalizations(GetPkgVersionLocalizationsRequest getPkgVersionLocalizationsRequest) {
Preconditions.checkNotNull(getPkgVersionLocalizationsRequest);
Preconditions.checkState(!Strings.isNullOrEmpty(getPkgVersionLocalizationsRequest.architectureCode));
Preconditions.checkState(!Strings.isNullOrEmpty(getPkgVersionLocalizationsRequest.pkgName));
Preconditions.checkNotNull(getPkgVersionLocalizationsRequest.naturalLanguageCodes);
Preconditions.checkArgument(!Strings.isNullOrEmpty(getPkgVersionLocalizationsRequest.repositoryCode), "the repository code must be supplied");
final ObjectContext context = serverRuntime.newContext();
Pkg pkg = getPkg(context, getPkgVersionLocalizationsRequest.pkgName);
Architecture architecture = getArchitecture(context, getPkgVersionLocalizationsRequest.architectureCode);
Repository repository = getRepository(context, getPkgVersionLocalizationsRequest.repositoryCode);
Optional<PkgVersion> pkgVersionOptional;
if (null == getPkgVersionLocalizationsRequest.major) {
pkgVersionOptional = pkgService.getLatestPkgVersionForPkg(context, pkg, repository, Collections.singletonList(architecture));
} else {
pkgVersionOptional = PkgVersion.getForPkg(context, pkg, repository, architecture, new VersionCoordinates(getPkgVersionLocalizationsRequest.major, getPkgVersionLocalizationsRequest.minor, getPkgVersionLocalizationsRequest.micro, getPkgVersionLocalizationsRequest.preRelease, getPkgVersionLocalizationsRequest.revision));
}
if (pkgVersionOptional.isEmpty() || !pkgVersionOptional.get().getActive()) {
throw new ObjectNotFoundException(PkgVersion.class.getSimpleName(), pkg.getName() + "/" + architecture.getCode());
}
GetPkgVersionLocalizationsResult result = new GetPkgVersionLocalizationsResult();
result.pkgVersionLocalizations = new ArrayList<>();
for (String naturalLanguageCode : getPkgVersionLocalizationsRequest.naturalLanguageCodes) {
Optional<PkgVersionLocalization> pkgVersionLocalizationOptional = pkgVersionOptional.get().getPkgVersionLocalization(naturalLanguageCode);
if (pkgVersionLocalizationOptional.isPresent()) {
org.haiku.haikudepotserver.api1.model.pkg.PkgVersionLocalization resultPkgVersionLocalization = new org.haiku.haikudepotserver.api1.model.pkg.PkgVersionLocalization();
resultPkgVersionLocalization.naturalLanguageCode = naturalLanguageCode;
resultPkgVersionLocalization.description = pkgVersionLocalizationOptional.get().getDescription().orElse(null);
resultPkgVersionLocalization.summary = pkgVersionLocalizationOptional.get().getSummary().orElse(null);
result.pkgVersionLocalizations.add(resultPkgVersionLocalization);
}
}
return result;
}
Aggregations