Skip to content

Commit

Permalink
[contrib, connector-wikiedits] Add WikipediaEditsSource
Browse files Browse the repository at this point in the history
This closes apache#1439
  • Loading branch information
uce committed Dec 16, 2015
1 parent 19cbc78 commit 8f6f294
Show file tree
Hide file tree
Showing 7 changed files with 665 additions and 0 deletions.
38 changes: 38 additions & 0 deletions flink-contrib/flink-connector-wikiedits/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# flink-connector-wikiedits

A non-parallel source that parses a live stream of Wikipedia edits.

Meta data about the edits is mirrored to the IRC channel `#en.wikipedia`. The
source establishes a connection to this IRC channel and parses the messages
into `WikipediaEditEvent` instances.

The purpose of this source is to ease the setup of demos of the `DataStream`
API with live data.

The original idea is from the [Hello Samza](https://samza.apache.org/startup/hello-samza/latest/)
project of [Apache Samza](http://samza.apache.org). The Samza code for this is located in the
[samza-hello-samza](https://github.com/apache/samza-hello-samza) repository.

## Example

Add the following dependency to your project:

```xml
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-connector-wikiedits</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
```

You can use the source like regular sources:

```java
StreamExecutionEnvironment env = StreamExecutionEnvironment
.getExecutionEnvironment();

DataStream<WikipediaEditEvent> edits = env
.addSource(new WikipediaEditsSource());
```
Remember that it is *non-parallel* source and as such it will run with
parallelism 1.
50 changes: 50 additions & 0 deletions flink-contrib/flink-connector-wikiedits/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.flink</groupId>
<artifactId>flink-contrib-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

<artifactId>flink-connector-wikiedits</artifactId>
<name>flink-connector-wikiedits</name>

<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-java</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.schwering</groupId>
<artifactId>irclib</artifactId>
<version>1.10</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.flink.streaming.connectors.wikiedits;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class WikipediaEditEvent {

// Metadata
private final long timestamp;
private final String channel;

// Edit attributes
private final String title;
private final String diffUrl;
private final String user;
private final int byteDiff;
private final String summary;
private final int flags;

public WikipediaEditEvent(
long timestamp,
String channel,
String title,
String diffUrl,
String user,
int byteDiff,
String summary,
boolean isMinor,
boolean isNew,
boolean isUnpatrolled,
boolean isBotEdit,
boolean isSpecial,
boolean isTalk) {

if (channel == null || title == null || diffUrl == null ||
user == null || summary == null) {
throw new NullPointerException();
}

this.timestamp = timestamp;
this.channel = channel;

this.title = title;
this.diffUrl = diffUrl;
this.user = user;
this.byteDiff = byteDiff;
this.summary = summary;
this.flags = getFlags(
isMinor,
isNew,
isUnpatrolled,
isBotEdit,
isSpecial,
isTalk);
}

/**
* Returns the timestamp when this event arrived at the source.
*
* @return The timestamp assigned at the source.
*/
public long getTimestamp() {
return timestamp;
}

public String getChannel() {
return channel;
}

public String getTitle() {
return title;
}

public String getDiffUrl() {
return diffUrl;
}

public String getUser() {
return user;
}

public int getByteDiff() {
return byteDiff;
}

public String getSummary() {
return summary;
}

public boolean isMinor() {
return (flags & IS_MINOR) > 0;
}

public boolean isNew() {
return (flags & IS_NEW) > 0;
}

public boolean isUnpatrolled() {
return (flags & IS_UNPATROLLED) > 0;
}

public boolean isBotEdit() {
return (flags & IS_BOT_EDIT) > 0;
}

public boolean isSpecial() {
return (flags & IS_SPECIAL) > 0;
}

public boolean isTalk() {
return (flags & IS_TALK) > 0;
}

@Override
public String toString() {
return "WikipediaEditEvent{" +
"timestamp=" + timestamp +
", channel='" + channel + '\'' +
", title='" + title + '\'' +
", diffUrl='" + diffUrl + '\'' +
", user='" + user + '\'' +
", byteDiff=" + byteDiff +
", summary='" + summary + '\'' +
", flags=" + flags +
'}';
}

// - Flags ----------------------------------------------------------------

private static final byte IS_MINOR = 0B000001;
private static final byte IS_NEW = 0B000010;
private static final byte IS_UNPATROLLED = 0B000100;
private static final byte IS_BOT_EDIT = 0B001000;
private static final byte IS_SPECIAL = 0B010000;
private static final byte IS_TALK = 0B100000;

private byte getFlags(
boolean isMinor,
boolean isNew,
boolean isUnpatrolled,
boolean isBotEdit,
boolean isSpecial,
boolean isTalk) {

byte flag = 0;
flag |= isMinor ? IS_MINOR : flag;
flag |= isNew ? IS_NEW : flag;
flag |= isUnpatrolled ? IS_UNPATROLLED : flag;
flag |= isBotEdit ? IS_BOT_EDIT : flag;
flag |= isSpecial ? IS_SPECIAL : flag;
flag |= isTalk ? IS_TALK : flag;

return flag;
}

// - Parser ---------------------------------------------------------------

/** Expected pattern of raw events. */
private static final Pattern p = Pattern.compile("\\[\\[(.*)\\]\\]\\s(.*)\\s(.*)\\s\\*\\s(.*)\\s\\*\\s\\(\\+?(.\\d*)\\)\\s(.*)");

public static WikipediaEditEvent fromRawEvent(
long timestamp,
String channel,
String rawEvent) {
final Matcher m = p.matcher(rawEvent);

if (m.find() && m.groupCount() == 6) {
String title = m.group(1);
String flags = m.group(2);
String diffUrl = m.group(3);
String user = m.group(4);
int byteDiff = Integer.parseInt(m.group(5));
String summary = m.group(6);

boolean isMinor = flags.contains("M");
boolean isNew = flags.contains("N");
boolean isUnpatrolled = flags.contains("!");
boolean isBotEdit = flags.contains("B");
boolean isSpecial = title.startsWith("Special:");
boolean isTalk = title.startsWith("Talk:");

return new WikipediaEditEvent(
timestamp,
channel,
title,
diffUrl,
user,
byteDiff,
summary,
isMinor,
isNew,
isUnpatrolled,
isBotEdit,
isSpecial,
isTalk);
}

return null;
}
}
Loading

0 comments on commit 8f6f294

Please sign in to comment.