idx
int64
0
41.2k
question
stringlengths
83
4.15k
target
stringlengths
5
715
24,600
protected < T > T getDatamodelObjectFromResponse ( JsonNode response , List < String > path , Class < T > targetClass ) throws JsonProcessingException { if ( response == null ) { throw new JsonMappingException ( "The API response is null" ) ; } JsonNode currentNode = response ; for ( String field : path ) { if ( ! curr...
Extracts a particular data model instance from a JSON response returned by MediaWiki . The location is described by a list of successive fields to use from the root to the target object .
24,601
public static void findSomeStringProperties ( ApiConnection connection ) throws MediaWikiApiErrorException , IOException { WikibaseDataFetcher wbdf = new WikibaseDataFetcher ( connection , siteIri ) ; wbdf . getFilter ( ) . excludeAllProperties ( ) ; wbdf . getFilter ( ) . setLanguageFilter ( Collections . singleton ( ...
Finds properties of datatype string on test . wikidata . org . Since the test site changes all the time we cannot hardcode a specific property here . Instead we just look through all properties starting from P1 to find the first few properties of type string that have an English label . These properties are used for te...
24,602
public long findPosition ( long nOccurrence ) { updateCount ( ) ; if ( nOccurrence <= 0 ) { return RankedBitVector . NOT_FOUND ; } int findPos = ( int ) ( nOccurrence / this . blockSize ) ; if ( findPos < this . positionArray . length ) { long pos0 = this . positionArray [ findPos ] ; long leftOccurrences = nOccurrence...
Returns the position for a given number of occurrences or NOT_FOUND if this value is not found .
24,603
void writeNoValueRestriction ( RdfWriter rdfWriter , String propertyUri , String rangeUri , String subject ) throws RDFHandlerException { Resource bnodeSome = rdfWriter . getFreshBNode ( ) ; rdfWriter . writeTripleValueObject ( subject , RdfWriter . RDF_TYPE , RdfWriter . OWL_CLASS ) ; rdfWriter . writeTripleValueObjec...
Writes no - value restriction .
24,604
public StatementBuilder withQualifierValue ( PropertyIdValue propertyIdValue , Value value ) { withQualifier ( factory . getValueSnak ( propertyIdValue , value ) ) ; return getThis ( ) ; }
Adds a qualifier with the given property and value to the constructed statement .
24,605
protected void countStatements ( UsageStatistics usageStatistics , StatementDocument statementDocument ) { for ( StatementGroup sg : statementDocument . getStatementGroups ( ) ) { usageStatistics . countStatements += sg . size ( ) ; countPropertyMain ( usageStatistics , sg . getProperty ( ) , sg . size ( ) ) ; for ( St...
Count the statements and property uses of an item or property document .
24,606
private void writeFinalResults ( ) { printStatus ( ) ; writePropertyStatisticsToFile ( this . itemStatistics , "item-property-counts.csv" ) ; writePropertyStatisticsToFile ( this . propertyStatistics , "property-property-counts.csv" ) ; try ( PrintStream out = new PrintStream ( ExampleHelpers . openExampleFileOuputStre...
Prints and stores final result of the processing . This should be called after finishing the processing of a dump . It will print the statistics gathered during processing and it will write a CSV file with usage counts for every property .
24,607
private void writePropertyStatisticsToFile ( UsageStatistics usageStatistics , String fileName ) { try ( PrintStream out = new PrintStream ( ExampleHelpers . openExampleFileOuputStream ( fileName ) ) ) { out . println ( "Property id,in statements,in qualifiers,in references,total" ) ; for ( Entry < PropertyIdValue , In...
Stores the gathered usage statistics about property uses to a CSV file .
24,608
private void writeTermStatisticsToFile ( UsageStatistics usageStatistics , String fileName ) { for ( String key : usageStatistics . aliasCounts . keySet ( ) ) { countKey ( usageStatistics . labelCounts , key , 0 ) ; } for ( String key : usageStatistics . descriptionCounts . keySet ( ) ) { countKey ( usageStatistics . l...
Stores the gathered usage statistics about term uses by language to a CSV file .
24,609
private void printStatistics ( UsageStatistics usageStatistics , String entityLabel ) { System . out . println ( "Processed " + usageStatistics . count + " " + entityLabel + ":" ) ; System . out . println ( " * Labels: " + usageStatistics . countLabels + ", descriptions: " + usageStatistics . countDescriptions + ", ali...
Prints a report about the statistics stored in the given data object .
24,610
private void countPropertyMain ( UsageStatistics usageStatistics , PropertyIdValue property , int count ) { addPropertyCounters ( usageStatistics , property ) ; usageStatistics . propertyCountsMain . put ( property , usageStatistics . propertyCountsMain . get ( property ) + count ) ; }
Counts additional occurrences of a property as the main property of statements .
24,611
private void addPropertyCounters ( UsageStatistics usageStatistics , PropertyIdValue property ) { if ( ! usageStatistics . propertyCountsMain . containsKey ( property ) ) { usageStatistics . propertyCountsMain . put ( property , 0 ) ; usageStatistics . propertyCountsQualifier . put ( property , 0 ) ; usageStatistics . ...
Initializes the counters for a property to zero if not done yet .
24,612
private void countKey ( Map < String , Integer > map , String key , int count ) { if ( map . containsKey ( key ) ) { map . put ( key , map . get ( key ) + count ) ; } else { map . put ( key , count ) ; } }
Helper method that stores in a hash map how often a certain key occurs . If the key has not been encountered yet a new entry is created for it in the map . Otherwise the existing value for the key is incremented .
24,613
public void addSite ( String siteKey ) { ValueMap gv = new ValueMap ( siteKey ) ; if ( ! this . valueMaps . contains ( gv ) ) { this . valueMaps . add ( gv ) ; } }
Registers a new site for specific data collection . If null is used as a site key then all data is collected .
24,614
private void countCoordinateStatement ( Statement statement , ItemDocument itemDocument ) { Value value = statement . getValue ( ) ; if ( ! ( value instanceof GlobeCoordinatesValue ) ) { return ; } GlobeCoordinatesValue coordsValue = ( GlobeCoordinatesValue ) value ; if ( ! this . globe . equals ( ( coordsValue . getGl...
Counts the coordinates stored in a single statement for the relevant property if they are actually given and valid .
24,615
private void countCoordinates ( int xCoord , int yCoord , ItemDocument itemDocument ) { for ( String siteKey : itemDocument . getSiteLinks ( ) . keySet ( ) ) { Integer count = this . siteCounts . get ( siteKey ) ; if ( count == null ) { this . siteCounts . put ( siteKey , 1 ) ; } else { this . siteCounts . put ( siteKe...
Counts a single pair of coordinates in all datasets .
24,616
private void writeImages ( ) { for ( ValueMap gv : this . valueMaps ) { gv . writeImage ( ) ; } try ( PrintStream out = new PrintStream ( ExampleHelpers . openExampleFileOuputStream ( "map-site-count.csv" ) ) ) { out . println ( "Site key,Number of geo items" ) ; out . println ( "wikidata total," + this . count ) ; for...
Writes image files for all data that was collected and the statistics file for all sites .
24,617
private int getColor ( int value ) { if ( value == 0 ) { return 0 ; } double scale = Math . log10 ( value ) / Math . log10 ( this . topValue ) ; double lengthScale = Math . min ( 1.0 , scale ) * ( colors . length - 1 ) ; int index = 1 + ( int ) lengthScale ; if ( index == colors . length ) { index -- ; } double partSca...
Returns a color for a given absolute number that is to be shown on the map .
24,618
public ReferenceBuilder withPropertyValue ( PropertyIdValue propertyIdValue , Value value ) { getSnakList ( propertyIdValue ) . add ( factory . getValueSnak ( propertyIdValue , value ) ) ; return getThis ( ) ; }
Adds the given property and value to the constructed reference .
24,619
private static void close ( Closeable closeable ) { if ( closeable != null ) { try { closeable . close ( ) ; } catch ( IOException ignored ) { logger . error ( "Failed to close output stream: " + ignored . getMessage ( ) ) ; } } }
Closes a Closeable and swallows any exceptions that might occur in the process .
24,620
public static void configureLogging ( ) { ConsoleAppender consoleAppender = new ConsoleAppender ( ) ; String pattern = "%d{yyyy-MM-dd HH:mm:ss} %-5p - %m%n" ; consoleAppender . setLayout ( new PatternLayout ( pattern ) ) ; consoleAppender . setThreshold ( Level . INFO ) ; consoleAppender . activateOptions ( ) ; Logger ...
Defines how messages should be logged . This method can be modified to restrict the logging messages that are shown on the console or to change their formatting . See the documentation of Log4J for details on how to do this .
24,621
public static void processEntitiesFromWikidataDump ( EntityDocumentProcessor entityDocumentProcessor ) { DumpProcessingController dumpProcessingController = new DumpProcessingController ( "wikidatawiki" ) ; dumpProcessingController . setOfflineMode ( OFFLINE_MODE ) ; boolean onlyCurrentRevisions ; switch ( DUMP_FILE_MO...
Processes all entities in a Wikidata dump using the given entity processor . By default the most recent JSON dump will be used . In offline mode only the most recent previously downloaded file is considered .
24,622
void addValue ( V value , Resource resource ) { this . valueQueue . add ( value ) ; this . valueSubjectQueue . add ( resource ) ; }
Adds the given value to the list of values that should still be serialized . The given RDF resource will be used as a subject .
24,623
protected void processAliases ( List < MonolingualTextValue > addAliases , List < MonolingualTextValue > deleteAliases ) { for ( MonolingualTextValue val : addAliases ) { addAlias ( val ) ; } for ( MonolingualTextValue val : deleteAliases ) { deleteAlias ( val ) ; } }
Processes changes on aliases updating the planned state of the item .
24,624
protected void deleteAlias ( MonolingualTextValue alias ) { String lang = alias . getLanguageCode ( ) ; AliasesWithUpdate currentAliases = newAliases . get ( lang ) ; if ( currentAliases != null ) { currentAliases . aliases . remove ( alias ) ; currentAliases . deleted . add ( alias ) ; currentAliases . write = true ; ...
Deletes an individual alias
24,625
protected void addAlias ( MonolingualTextValue alias ) { String lang = alias . getLanguageCode ( ) ; AliasesWithUpdate currentAliasesUpdate = newAliases . get ( lang ) ; NameWithUpdate currentLabel = newLabels . get ( lang ) ; if ( currentLabel == null ) { newLabels . put ( lang , new NameWithUpdate ( alias , true ) ) ...
Adds an individual alias . It will be merged with the current list of aliases or added as a label if there is no label for this item in this language yet .
24,626
protected void processDescriptions ( List < MonolingualTextValue > descriptions ) { for ( MonolingualTextValue description : descriptions ) { NameWithUpdate currentValue = newDescriptions . get ( description . getLanguageCode ( ) ) ; if ( currentValue == null || ! currentValue . value . equals ( description ) ) { newDe...
Adds descriptions to the item .
24,627
protected void processLabels ( List < MonolingualTextValue > labels ) { for ( MonolingualTextValue label : labels ) { String lang = label . getLanguageCode ( ) ; NameWithUpdate currentValue = newLabels . get ( lang ) ; if ( currentValue == null || ! currentValue . value . equals ( label ) ) { newLabels . put ( lang , n...
Adds labels to the item
24,628
@ JsonProperty ( "labels" ) @ JsonInclude ( Include . NON_EMPTY ) public Map < String , TermImpl > getLabelUpdates ( ) { return getMonolingualUpdatedValues ( newLabels ) ; }
Label accessor provided for JSON serialization only .
24,629
@ JsonProperty ( "descriptions" ) @ JsonInclude ( Include . NON_EMPTY ) public Map < String , TermImpl > getDescriptionUpdates ( ) { return getMonolingualUpdatedValues ( newDescriptions ) ; }
Description accessor provided for JSON serialization only .
24,630
@ JsonProperty ( "aliases" ) @ JsonInclude ( Include . NON_EMPTY ) public Map < String , List < TermImpl > > getAliasUpdates ( ) { Map < String , List < TermImpl > > updatedValues = new HashMap < > ( ) ; for ( Map . Entry < String , AliasesWithUpdate > entry : newAliases . entrySet ( ) ) { AliasesWithUpdate update = en...
Alias accessor provided for JSON serialization only
24,631
protected Map < String , TermImpl > getMonolingualUpdatedValues ( Map < String , NameWithUpdate > updates ) { Map < String , TermImpl > updatedValues = new HashMap < > ( ) ; for ( NameWithUpdate update : updates . values ( ) ) { if ( ! update . write ) { continue ; } updatedValues . put ( update . value . getLanguageCo...
Helper to format term updates as expected by the Wikibase API
24,632
protected RdfSerializer createRdfSerializer ( ) throws IOException { String outputDestinationFinal ; if ( this . outputDestination != null ) { outputDestinationFinal = this . outputDestination ; } else { outputDestinationFinal = "{PROJECT}" + this . taskName + "{DATE}" + ".nt" ; } OutputStream exportOutputStream = getO...
Creates a new RDF serializer based on the current configuration of this object .
24,633
private void setTasks ( String tasks ) { for ( String task : tasks . split ( "," ) ) { if ( KNOWN_TASKS . containsKey ( task ) ) { this . tasks |= KNOWN_TASKS . get ( task ) ; this . taskName += ( this . taskName . isEmpty ( ) ? "" : "-" ) + task ; } else { logger . warn ( "Unsupported RDF serialization task \"" + task...
Sets the RDF serialization tasks based on the given string value .
24,634
void resizeArray ( int newArraySize ) { long [ ] newArray = new long [ newArraySize ] ; System . arraycopy ( this . arrayOfBits , 0 , newArray , 0 , Math . min ( this . arrayOfBits . length , newArraySize ) ) ; this . arrayOfBits = newArray ; }
Resizes the array that represents this bit vector .
24,635
public ItemDocument updateStatements ( ItemIdValue itemIdValue , List < Statement > addStatements , List < Statement > deleteStatements , String summary ) throws MediaWikiApiErrorException , IOException { ItemDocument currentDocument = ( ItemDocument ) this . wikibaseDataFetcher . getEntityDocument ( itemIdValue . getI...
Updates the statements of the item document identified by the given item id . The updates are computed with respect to the current data found online making sure that no redundant deletions or duplicate insertions happen . The references of duplicate statements will be merged .
24,636
public ItemDocument updateTermsStatements ( ItemIdValue itemIdValue , List < MonolingualTextValue > addLabels , List < MonolingualTextValue > addDescriptions , List < MonolingualTextValue > addAliases , List < MonolingualTextValue > deleteAliases , List < Statement > addStatements , List < Statement > deleteStatements ...
Updates the terms and statements of the item document identified by the given item id . The updates are computed with respect to the current data found online making sure that no redundant deletions or duplicate insertions happen . The references of duplicate statements will be merged . The labels and aliases in a give...
24,637
@ SuppressWarnings ( "unchecked" ) public < T extends TermedStatementDocument > T updateTermsStatements ( T currentDocument , List < MonolingualTextValue > addLabels , List < MonolingualTextValue > addDescriptions , List < MonolingualTextValue > addAliases , List < MonolingualTextValue > deleteAliases , List < Statemen...
Updates the terms and statements of the current document . The updates are computed with respect to the current data in the document making sure that no redundant deletions or duplicate insertions happen . The references of duplicate statements will be merged . The labels and aliases in a given language are kept distin...
24,638
public < T extends StatementDocument > void nullEdit ( ItemIdValue itemId ) throws IOException , MediaWikiApiErrorException { ItemDocument currentDocument = ( ItemDocument ) this . wikibaseDataFetcher . getEntityDocument ( itemId . getId ( ) ) ; nullEdit ( currentDocument ) ; }
Performs a null edit on an item . This has some effects on Wikibase such as refreshing the labels of the referred items in the UI .
24,639
public < T extends StatementDocument > void nullEdit ( PropertyIdValue propertyId ) throws IOException , MediaWikiApiErrorException { PropertyDocument currentDocument = ( PropertyDocument ) this . wikibaseDataFetcher . getEntityDocument ( propertyId . getId ( ) ) ; nullEdit ( currentDocument ) ; }
Performs a null edit on a property . This has some effects on Wikibase such as refreshing the labels of the referred items in the UI .
24,640
@ SuppressWarnings ( "unchecked" ) public < T extends StatementDocument > T nullEdit ( T currentDocument ) throws IOException , MediaWikiApiErrorException { StatementUpdate statementUpdate = new StatementUpdate ( currentDocument , Collections . < Statement > emptyList ( ) , Collections . < Statement > emptyList ( ) ) ;...
Performs a null edit on an entity . This has some effects on Wikibase such as refreshing the labels of the referred items in the UI .
24,641
public static void main ( String [ ] args ) throws IOException { ExampleHelpers . configureLogging ( ) ; JsonSerializationProcessor . printDocumentation ( ) ; JsonSerializationProcessor jsonSerializationProcessor = new JsonSerializationProcessor ( ) ; ExampleHelpers . processEntitiesFromWikidataDump ( jsonSerialization...
Runs the example program .
24,642
public void close ( ) throws IOException { System . out . println ( "Serialized " + this . jsonSerializer . getEntityDocumentCount ( ) + " item documents to JSON file " + OUTPUT_FILE_NAME + "." ) ; this . jsonSerializer . close ( ) ; }
Closes the output . Should be called after the JSON serialization was finished .
24,643
private boolean includeDocument ( ItemDocument itemDocument ) { for ( StatementGroup sg : itemDocument . getStatementGroups ( ) ) { if ( ! "P19" . equals ( sg . getProperty ( ) . getId ( ) ) ) { continue ; } for ( Statement s : sg ) { if ( s . getMainSnak ( ) instanceof ValueSnak ) { Value v = s . getValue ( ) ; if ( v...
Returns true if the given document should be included in the serialization .
24,644
public static String insertDumpInformation ( String pattern , String dateStamp , String project ) { if ( pattern == null ) { return null ; } else { return pattern . replace ( "{DATE}" , dateStamp ) . replace ( "{PROJECT}" , project ) ; } }
Inserts the information about the dateStamp of a dump and the project name into a pattern .
24,645
private List < DumpProcessingAction > handleArguments ( String [ ] args ) { CommandLine cmd ; CommandLineParser parser = new GnuParser ( ) ; try { cmd = parser . parse ( options , args ) ; } catch ( ParseException e ) { logger . error ( "Failed to parse arguments: " + e . getMessage ( ) ) ; return Collections . emptyLi...
This function interprets the arguments of the main function . By doing this it will set flags for the dump generation . See in the help text for more specific information about the options .
24,646
private void handleGlobalArguments ( CommandLine cmd ) { if ( cmd . hasOption ( CMD_OPTION_DUMP_LOCATION ) ) { this . dumpDirectoryLocation = cmd . getOptionValue ( CMD_OPTION_DUMP_LOCATION ) ; } if ( cmd . hasOption ( CMD_OPTION_OFFLINE_MODE ) ) { this . offlineMode = true ; } if ( cmd . hasOption ( CMD_OPTION_QUIET )...
Analyses the command - line arguments which are relevant for the serialization process in general . It fills out the class arguments with this data .
24,647
private void handleGlobalArguments ( Section section ) { for ( String key : section . keySet ( ) ) { switch ( key ) { case OPTION_OFFLINE_MODE : if ( section . get ( key ) . toLowerCase ( ) . equals ( "true" ) ) { this . offlineMode = true ; } break ; case OPTION_QUIET : if ( section . get ( key ) . toLowerCase ( ) . e...
Analyses the content of the general section of an ini configuration file and fills out the class arguments with this data .
24,648
private void checkDuplicateStdOutOutput ( DumpProcessingAction newAction ) { if ( newAction . useStdOut ( ) ) { if ( this . quiet ) { logger . warn ( "Multiple actions are using stdout as output destination." ) ; } this . quiet = true ; } }
Checks if a newly created action wants to write output to stdout and logs a warning if other actions are doing the same .
24,649
private void setLanguageFilters ( String filters ) { this . filterLanguages = new HashSet < > ( ) ; if ( ! "-" . equals ( filters ) ) { Collections . addAll ( this . filterLanguages , filters . split ( "," ) ) ; } }
Sets the set of language filters based on the given string .
24,650
private void setSiteFilters ( String filters ) { this . filterSites = new HashSet < > ( ) ; if ( ! "-" . equals ( filters ) ) { Collections . addAll ( this . filterSites , filters . split ( "," ) ) ; } }
Sets the set of site filters based on the given string .
24,651
private void setPropertyFilters ( String filters ) { this . filterProperties = new HashSet < > ( ) ; if ( ! "-" . equals ( filters ) ) { for ( String pid : filters . split ( "," ) ) { this . filterProperties . add ( Datamodel . makeWikidataPropertyIdValue ( pid ) ) ; } } }
Sets the set of property filters based on the given string .
24,652
public void writeFinalResults ( ) { printStatus ( ) ; try ( PrintStream out = new PrintStream ( ExampleHelpers . openExampleFileOuputStream ( "gender-ratios.csv" ) ) ) { out . print ( "Site key,pages total,pages on humans,pages on humans with gender" ) ; for ( EntityIdValue gender : this . genderNamesList ) { out . pri...
Writes the results of the processing to a CSV file .
24,653
public static void printDocumentation ( ) { System . out . println ( "********************************************************************" ) ; System . out . println ( "*** Wikidata Toolkit: GenderRatioProcessor" ) ; System . out . println ( "*** " ) ; System . out . println ( "*** This program will download and proce...
Prints some basic documentation about this program .
24,654
private boolean containsValue ( StatementGroup statementGroup , Value value ) { for ( Statement s : statementGroup ) { if ( value . equals ( s . getValue ( ) ) ) { return true ; } } return false ; }
Checks if the given group of statements contains the given value as the value of a main snak of some statement .
24,655
private void addNewGenderName ( EntityIdValue entityIdValue , String name ) { this . genderNames . put ( entityIdValue , name ) ; this . genderNamesList . add ( entityIdValue ) ; }
Adds a new gender item and an initial name .
24,656
private SiteRecord getSiteRecord ( String siteKey ) { SiteRecord siteRecord = this . siteRecords . get ( siteKey ) ; if ( siteRecord == null ) { siteRecord = new SiteRecord ( siteKey ) ; this . siteRecords . put ( siteKey , siteRecord ) ; } return siteRecord ; }
Returns a site record for the site of the given name creating a new one if it does not exist yet .
24,657
private void countGender ( EntityIdValue gender , SiteRecord siteRecord ) { Integer curValue = siteRecord . genderCounts . get ( gender ) ; if ( curValue == null ) { siteRecord . genderCounts . put ( gender , 1 ) ; } else { siteRecord . genderCounts . put ( gender , curValue + 1 ) ; } }
Counts a single page of the specified gender . If this is the first page of that gender on this site a suitable key is added to the list of the site s genders .
24,658
public List < WbSearchEntitiesResult > wbSearchEntities ( String search , String language , Boolean strictLanguage , String type , Long limit , Long offset ) throws MediaWikiApiErrorException { Map < String , String > parameters = new HashMap < String , String > ( ) ; parameters . put ( ApiConnection . PARAM_ACTION , "...
Executes the API action wbsearchentity for the given parameters . Searches for entities using labels and aliases . Returns a label and description for the entity in the user language if possible . Returns details of the matched term . The matched term text is also present in the aliases key if different from the displa...
24,659
public ItemDocumentBuilder withSiteLink ( String title , String siteKey , ItemIdValue ... badges ) { withSiteLink ( factory . getSiteLink ( title , siteKey , Arrays . asList ( badges ) ) ) ; return this ; }
Adds an additional site link to the constructed document .
24,660
public Resource addReference ( Reference reference ) { Resource resource = this . rdfWriter . getUri ( Vocabulary . getReferenceUri ( reference ) ) ; this . referenceQueue . add ( reference ) ; this . referenceSubjectQueue . add ( resource ) ; return resource ; }
Adds the given reference to the list of references that should still be serialized and returns the RDF resource that will be used as a subject .
24,661
public void writeReferences ( ) throws RDFHandlerException { Iterator < Reference > referenceIterator = this . referenceQueue . iterator ( ) ; for ( Resource resource : this . referenceSubjectQueue ) { final Reference reference = referenceIterator . next ( ) ; if ( this . declaredReferences . add ( resource ) ) { write...
Writes references that have been added recently . Auxiliary triples that are generated for serializing snaks in references will be written right afterwards . This will also trigger any other auxiliary triples to be written that the snak converter object may have buffered .
24,662
public Sites getSitesInformation ( ) throws IOException { MwDumpFile sitesTableDump = getMostRecentDump ( DumpContentType . SITES ) ; if ( sitesTableDump == null ) { return null ; } MwSitesDumpFileProcessor sitesDumpFileProcessor = new MwSitesDumpFileProcessor ( ) ; sitesDumpFileProcessor . processDumpFileContents ( si...
Processes the most recent dump of the sites table to extract information about registered sites .
24,663
public void processMostRecentDump ( DumpContentType dumpContentType , MwDumpFileProcessor dumpFileProcessor ) { MwDumpFile dumpFile = getMostRecentDump ( dumpContentType ) ; if ( dumpFile != null ) { processDumpFile ( dumpFile , dumpFileProcessor ) ; } }
Processes the most recent dump of the given type using the given dump processor .
24,664
void processDumpFile ( MwDumpFile dumpFile , MwDumpFileProcessor dumpFileProcessor ) { try ( InputStream inputStream = dumpFile . getDumpFileStream ( ) ) { dumpFileProcessor . processDumpFileContents ( inputStream , dumpFile ) ; } catch ( FileAlreadyExistsException e ) { logger . error ( "Dump file " + dumpFile . toStr...
Processes one dump file with the given dump file processor handling exceptions appropriately .
24,665
public MwDumpFile findMostRecentDump ( DumpContentType dumpContentType ) { List < MwDumpFile > dumps = findAllDumps ( dumpContentType ) ; for ( MwDumpFile dump : dumps ) { if ( dump . isAvailable ( ) ) { return dump ; } } return null ; }
Finds the most recent dump of the given type that is actually available .
24,666
List < MwDumpFile > mergeDumpLists ( List < MwDumpFile > localDumps , List < MwDumpFile > onlineDumps ) { List < MwDumpFile > result = new ArrayList < > ( localDumps ) ; HashSet < String > localDateStamps = new HashSet < > ( ) ; for ( MwDumpFile dumpFile : localDumps ) { localDateStamps . add ( dumpFile . getDateStamp ...
Merges a list of local and online dumps . For dumps available both online and locally only the local version is included . The list is order with most recent dump date first .
24,667
List < MwDumpFile > findDumpsLocally ( DumpContentType dumpContentType ) { String directoryPattern = WmfDumpFile . getDumpFileDirectoryName ( dumpContentType , "*" ) ; List < String > dumpFileDirectories ; try { dumpFileDirectories = this . dumpfileDirectoryManager . getSubdirectories ( directoryPattern ) ; } catch ( I...
Finds out which dump files of the given type have been downloaded already . The result is a list of objects that describe the available dump files in descending order by their date . Not all of the dumps included might be actually available .
24,668
List < MwDumpFile > findDumpsOnline ( DumpContentType dumpContentType ) { List < String > dumpFileDates = findDumpDatesOnline ( dumpContentType ) ; List < MwDumpFile > result = new ArrayList < > ( ) ; for ( String dateStamp : dumpFileDates ) { if ( dumpContentType == DumpContentType . DAILY ) { result . add ( new WmfOn...
Finds out which dump files of the given type are available for download . The result is a list of objects that describe the available dump files in descending order by their date . Not all of the dumps included might be actually available .
24,669
public void processItemDocument ( ItemDocument itemDocument ) { this . countItems ++ ; if ( this . countItems < 10 ) { System . out . println ( itemDocument ) ; } else if ( this . countItems == 10 ) { System . out . println ( "*** I won't print any further items.\n" + "*** We will never finish if we print all the items...
Processes one item document . This is often the main workhorse that gathers the data you are interested in . You can modify this code as you wish .
24,670
static EntityIdValue fromId ( String id , String siteIri ) { switch ( guessEntityTypeFromId ( id ) ) { case EntityIdValueImpl . JSON_ENTITY_TYPE_ITEM : return new ItemIdValueImpl ( id , siteIri ) ; case EntityIdValueImpl . JSON_ENTITY_TYPE_PROPERTY : return new PropertyIdValueImpl ( id , siteIri ) ; case EntityIdValueI...
Parses an item id
24,671
static String guessEntityTypeFromId ( String id ) { if ( id . isEmpty ( ) ) { throw new IllegalArgumentException ( "Entity ids should not be empty." ) ; } switch ( id . charAt ( 0 ) ) { case 'L' : if ( id . contains ( "-F" ) ) { return JSON_ENTITY_TYPE_FORM ; } else if ( id . contains ( "-S" ) ) { return JSON_ENTITY_TY...
RReturns the entity type of the id like item or property
24,672
public void close ( ) { logger . info ( "Finished processing." ) ; this . timer . stop ( ) ; this . lastSeconds = ( int ) ( timer . getTotalWallTime ( ) / 1000000000 ) ; printStatus ( ) ; }
Stops the processing and prints the final time .
24,673
private void countEntity ( ) { if ( ! this . timer . isRunning ( ) ) { startTimer ( ) ; } this . entityCount ++ ; if ( this . entityCount % 100 == 0 ) { timer . stop ( ) ; int seconds = ( int ) ( timer . getTotalWallTime ( ) / 1000000000 ) ; if ( seconds >= this . lastSeconds + this . reportInterval ) { this . lastSeco...
Counts one entity . Every once in a while the current time is checked so as to print an intermediate report roughly every ten seconds .
24,674
public static String implodeObjects ( Iterable < ? > objects ) { StringBuilder builder = new StringBuilder ( ) ; boolean first = true ; for ( Object o : objects ) { if ( first ) { first = false ; } else { builder . append ( "|" ) ; } builder . append ( o . toString ( ) ) ; } return builder . toString ( ) ; }
Builds a string that serializes a list of objects separated by the pipe character . The toString methods are used to turn objects into strings . This operation is commonly used to build parameter lists for API requests .
24,675
public void logout ( ) throws IOException { if ( this . loggedIn ) { Map < String , String > params = new HashMap < > ( ) ; params . put ( "action" , "logout" ) ; params . put ( "format" , "json" ) ; try { sendJsonRequest ( "POST" , params ) ; } catch ( MediaWikiApiErrorException e ) { throw new IOException ( e . getMe...
Logs the current user out .
24,676
String fetchToken ( String tokenType ) throws IOException , MediaWikiApiErrorException { Map < String , String > params = new HashMap < > ( ) ; params . put ( ApiConnection . PARAM_ACTION , "query" ) ; params . put ( "meta" , "tokens" ) ; params . put ( "type" , tokenType ) ; try { JsonNode root = this . sendJsonReques...
Executes a API query action to get a new token . The method only executes the action without doing any checks first . If errors occur they are logged and null is returned .
24,677
public InputStream sendRequest ( String requestMethod , Map < String , String > parameters ) throws IOException { String queryString = getQueryString ( parameters ) ; URL url = new URL ( this . apiBaseUrl ) ; HttpURLConnection connection = ( HttpURLConnection ) WebResourceFetcherImpl . getUrlConnection ( url ) ; setupC...
Sends a request to the API with the given parameters and the given request method and returns the result string . It automatically fills the cookie map with cookies in the result header after the request .
24,678
List < String > getWarnings ( JsonNode root ) { ArrayList < String > warnings = new ArrayList < > ( ) ; if ( root . has ( "warnings" ) ) { JsonNode warningNode = root . path ( "warnings" ) ; Iterator < Map . Entry < String , JsonNode > > moduleIterator = warningNode . fields ( ) ; while ( moduleIterator . hasNext ( ) )...
Extracts warnings that are returned in an API response .
24,679
String getQueryString ( Map < String , String > params ) { StringBuilder builder = new StringBuilder ( ) ; try { boolean first = true ; for ( Map . Entry < String , String > entry : params . entrySet ( ) ) { if ( first ) { first = false ; } else { builder . append ( "&" ) ; } builder . append ( URLEncoder . encode ( en...
Returns the query string of a URL from a parameter list .
24,680
public static < T > T load ( String resourcePath , BeanSpec spec ) { return load ( resourcePath , spec , false ) ; }
Load resource content from given path into variable with type specified by spec .
24,681
protected void printCenter ( String format , Object ... args ) { String text = S . fmt ( format , args ) ; info ( S . center ( text , 80 ) ) ; }
Print formatted string in the center of 80 chars line left and right padded .
24,682
protected void printCenterWithLead ( String lead , String format , Object ... args ) { String text = S . fmt ( format , args ) ; int len = 80 - lead . length ( ) ; info ( S . concat ( lead , S . center ( text , len ) ) ) ; }
Print the lead string followed by centered formatted string . The whole length of the line is 80 chars .
24,683
public String convert ( BufferedImage image , boolean favicon ) { statsArray = new int [ 12 ] ; dStart = System . nanoTime ( ) ; image = scale ( image , favicon ) ; StringBuilder sb = new StringBuilder ( ( image . getWidth ( ) + 1 ) * image . getHeight ( ) ) ; for ( int y = 0 ; y < image . getHeight ( ) ; y ++ ) { if (...
The main conversion method .
24,684
private static BufferedImage scale ( BufferedImage imageToScale , int dWidth , int dHeight , double fWidth , double fHeight ) { BufferedImage dbi = null ; int imageType = imageToScale . getType ( ) ; if ( imageToScale != null ) { dbi = new BufferedImage ( dWidth , dHeight , imageType ) ; Graphics2D g = dbi . createGrap...
Image scale method
24,685
public EventBus emit ( Enum < ? > event , Object ... args ) { return _emitWithOnceBus ( eventContext ( event , args ) ) ; }
Emit an enum event with parameters supplied .
24,686
public EventBus emit ( String event , Object ... args ) { return _emitWithOnceBus ( eventContext ( event , args ) ) ; }
Emit a string event with parameters .
24,687
public EventBus emit ( EventObject event , Object ... args ) { return _emitWithOnceBus ( eventContext ( event , args ) ) ; }
Emit an event object with parameters .
24,688
public EventBus emitAsync ( Enum < ? > event , Object ... args ) { return _emitWithOnceBus ( eventContextAsync ( event , args ) ) ; }
Emit an enum event with parameters and force all listeners to be called asynchronously .
24,689
public EventBus emitAsync ( String event , Object ... args ) { return _emitWithOnceBus ( eventContextAsync ( event , args ) ) ; }
Emit a string event with parameters and force all listeners to be called asynchronously .
24,690
public EventBus emitAsync ( EventObject event , Object ... args ) { return _emitWithOnceBus ( eventContextAsync ( event , args ) ) ; }
Emit a event object with parameters and force all listeners to be called asynchronously .
24,691
public EventBus emitSync ( Enum < ? > event , Object ... args ) { return _emitWithOnceBus ( eventContextSync ( event , args ) ) ; }
Emit an enum event with parameters and force all listener to be called synchronously .
24,692
public EventBus emitSync ( String event , Object ... args ) { return _emitWithOnceBus ( eventContextSync ( event , args ) ) ; }
Emit a string event with parameters and force all listener to be called synchronously .
24,693
public EventBus emitSync ( EventObject event , Object ... args ) { return _emitWithOnceBus ( eventContextSync ( event , args ) ) ; }
Emit a event object with parameters and force all listeners to be called synchronously .
24,694
public static String common ( ) { String common = SysProps . get ( KEY_COMMON_CONF_TAG ) ; if ( S . blank ( common ) ) { common = "common" ; } return common ; }
Return the common configuration set name . By default it is common
24,695
public static String confSetName ( ) { String profile = SysProps . get ( AppConfigKey . PROFILE . key ( ) ) ; if ( S . blank ( profile ) ) { profile = Act . mode ( ) . name ( ) . toLowerCase ( ) ; } return profile ; }
Return the name of the current conf set
24,696
private static Map < String , Object > processConf ( Map < String , ? > conf ) { Map < String , Object > m = new HashMap < String , Object > ( conf . size ( ) ) ; for ( String s : conf . keySet ( ) ) { Object o = conf . get ( s ) ; if ( s . startsWith ( "act." ) ) s = s . substring ( 4 ) ; m . put ( s , o ) ; m . put (...
trim act . from conf keys
24,697
public File curDir ( ) { File file = session ( ) . attribute ( ATTR_PWD ) ; if ( null == file ) { file = new File ( System . getProperty ( "user.dir" ) ) ; session ( ) . attribute ( ATTR_PWD , file ) ; } return file ; }
Return the current working directory
24,698
private String getRowLineBuf ( int colCount , List < Integer > colMaxLenList , String [ ] [ ] data ) { S . Buffer rowBuilder = S . buffer ( ) ; int colWidth ; for ( int i = 0 ; i < colCount ; i ++ ) { colWidth = colMaxLenList . get ( i ) + 3 ; for ( int j = 0 ; j < colWidth ; j ++ ) { if ( j == 0 ) { rowBuilder . appen...
Each string item rendering requires the border and a space on both sides .
24,699
public byte [ ] toByteArray ( ) { try { ByteArrayOutputStream baos = new ByteArrayOutputStream ( ) ; ObjectOutputStream oos = new ObjectOutputStream ( baos ) ; oos . writeObject ( this ) ; return baos . toByteArray ( ) ; } catch ( IOException e ) { throw E . ioException ( e ) ; } }
Serialize this AppDescriptor and output byte array