-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into truffle-head
- 9.4.12.0
- 9.4.11.0
- 9.4.10.0
- 9.4.9.0
- 9.4.8.0
- 9.4.7.0
- 9.4.6.0
- 9.4.5.0
- 9.4.4.0
- 9.4.3.0
- 9.4.2.0
- 9.4.1.0
- 9.4.0.0
- 9.3.15.0
- 9.3.14.0
- 9.3.13.0
- 9.3.12.0
- 9.3.11.0
- 9.3.10.0
- 9.3.9.0
- 9.3.8.0
- 9.3.7.0
- 9.3.6.0
- 9.3.5.0
- 9.3.4.0
- 9.3.3.0
- 9.3.2.0
- 9.3.1.0
- 9.3.0.0
- 9.2.21.0
- 9.2.20.1
- 9.2.20.0
- 9.2.19.0
- 9.2.18.0
- 9.2.17.0
- 9.2.16.0
- 9.2.15.0
- 9.2.14.0
- 9.2.13.0
- 9.2.12.0
- 9.2.11.1
- 9.2.11.0
- 9.2.10.0
- 9.2.9.0
- 9.2.8.0
- 9.2.7.0
- 9.2.6.0
- 9.2.5.0
- 9.2.4.1
- 9.2.4.0
- 9.2.3.0
- 9.2.2.0
- 9.2.1.0
- 9.2.0.0
- 9.1.17.0
- 9.1.16.0
- 9.1.15.0
- 9.1.14.0
- 9.1.13.0
- 9.1.12.0
- 9.1.11.0
- 9.1.10.0
- 9.1.9.0
- 9.1.8.0
- 9.1.7.0
- 9.1.6.0
Showing
122 changed files
with
1,909 additions
and
1,214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/***** BEGIN LICENSE BLOCK ***** | ||
* Version: EPL 1.0/GPL 2.0/LGPL 2.1 | ||
* | ||
* The contents of this file are subject to the Eclipse Public | ||
* License Version 1.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.eclipse.org/legal/epl-v10.html | ||
* | ||
* Software distributed under the License is distributed on an "AS | ||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing | ||
* rights and limitations under the License. | ||
* | ||
* Alternatively, the contents of this file may be used under the terms of | ||
* either of the GNU General Public License Version 2 or later (the "GPL"), | ||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), | ||
* in which case the provisions of the GPL or the LGPL are applicable instead | ||
* of those above. If you wish to allow use of your version of this file only | ||
* under the terms of either the GPL or the LGPL, and not to allow others to | ||
* use your version of this file under the terms of the EPL, indicate your | ||
* decision by deleting the provisions above and replace them with the notice | ||
* and other provisions required by the GPL or the LGPL. If you do not delete | ||
* the provisions above, a recipient may use your version of this file under | ||
* the terms of any one of the EPL, the GPL or the LGPL. | ||
***** END LICENSE BLOCK *****/ | ||
|
||
package org.jruby; | ||
|
||
import static jnr.constants.platform.Signal.SIGINT; | ||
|
||
import org.jruby.anno.JRubyMethod; | ||
import org.jruby.anno.JRubyClass; | ||
import org.jruby.runtime.Block; | ||
import org.jruby.runtime.ObjectAllocator; | ||
import org.jruby.runtime.ThreadContext; | ||
import org.jruby.runtime.Arity; | ||
import org.jruby.runtime.builtin.IRubyObject; | ||
import static org.jruby.runtime.Visibility.PRIVATE; | ||
import org.jruby.util.ArraySupport; | ||
|
||
@JRubyClass(name="Interrupt", parent="SignalException") | ||
public class RubyInterrupt extends RubySignalException { | ||
private static final ObjectAllocator INTERRUPT_ALLOCATOR = new ObjectAllocator() { | ||
@Override | ||
public IRubyObject allocate(Ruby runtime, RubyClass klass) { | ||
return new RubyInterrupt(runtime, klass); | ||
} | ||
}; | ||
|
||
static RubyClass createInterruptClass(Ruby runtime, RubyClass signalExceptionClass) { | ||
RubyClass interruptClass = runtime.defineClass("Interrupt", signalExceptionClass, INTERRUPT_ALLOCATOR); | ||
interruptClass.defineAnnotatedMethods(RubyInterrupt.class); | ||
return interruptClass; | ||
} | ||
|
||
protected RubyInterrupt(Ruby runtime, RubyClass exceptionClass) { | ||
super(runtime, exceptionClass); | ||
} | ||
|
||
@JRubyMethod(optional = 1, visibility = PRIVATE) | ||
@Override | ||
public IRubyObject initialize(ThreadContext context, IRubyObject[] args, Block block) { | ||
final Ruby runtime = context.runtime; | ||
|
||
Arity.checkArgumentCount(runtime, args, 0, 1); | ||
|
||
IRubyObject signo = runtime.newFixnum(SIGINT); | ||
|
||
if (args.length > 0) { | ||
args = ArraySupport.newCopy(signo, args); | ||
} else { | ||
args = new IRubyObject[]{signo, runtime.newString("Interrupt")}; | ||
} | ||
|
||
super.initialize(args, block); | ||
return this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/***** BEGIN LICENSE BLOCK ***** | ||
* Version: EPL 1.0/GPL 2.0/LGPL 2.1 | ||
* | ||
* The contents of this file are subject to the Eclipse Public | ||
* License Version 1.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.eclipse.org/legal/epl-v10.html | ||
* | ||
* Software distributed under the License is distributed on an "AS | ||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing | ||
* rights and limitations under the License. | ||
* | ||
* Alternatively, the contents of this file may be used under the terms of | ||
* either of the GNU General Public License Version 2 or later (the "GPL"), | ||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), | ||
* in which case the provisions of the GPL or the LGPL are applicable instead | ||
* of those above. If you wish to allow use of your version of this file only | ||
* under the terms of either the GPL or the LGPL, and not to allow others to | ||
* use your version of this file under the terms of the EPL, indicate your | ||
* decision by deleting the provisions above and replace them with the notice | ||
* and other provisions required by the GPL or the LGPL. If you do not delete | ||
* the provisions above, a recipient may use your version of this file under | ||
* the terms of any one of the EPL, the GPL or the LGPL. | ||
***** END LICENSE BLOCK *****/ | ||
|
||
package org.jruby; | ||
|
||
import static jnr.constants.platform.Signal.NSIG; | ||
|
||
import org.jruby.anno.JRubyClass; | ||
import org.jruby.anno.JRubyMethod; | ||
import org.jruby.runtime.ObjectAllocator; | ||
import org.jruby.runtime.Arity; | ||
import org.jruby.runtime.Block; | ||
import org.jruby.runtime.ThreadContext; | ||
import static org.jruby.runtime.Visibility.PRIVATE; | ||
import org.jruby.runtime.builtin.IRubyObject; | ||
import org.jruby.RubyBasicObject; | ||
import org.jruby.RubySignal; | ||
import org.jruby.util.TypeConverter; | ||
|
||
@JRubyClass(name="SignalException", parent="Exception") | ||
public class RubySignalException extends RubyException { | ||
private static final ObjectAllocator SIGNAL_EXCEPTION_ALLOCATOR = new ObjectAllocator() { | ||
@Override | ||
public IRubyObject allocate(Ruby runtime, RubyClass klass) { | ||
return new RubySignalException(runtime, klass); | ||
} | ||
}; | ||
|
||
protected RubySignalException(Ruby runtime, RubyClass exceptionClass) { | ||
super(runtime, exceptionClass); | ||
} | ||
|
||
static RubyClass createSignalExceptionClass(Ruby runtime, RubyClass exceptionClass) { | ||
RubyClass signalExceptionClass = runtime.defineClass("SignalException", exceptionClass, SIGNAL_EXCEPTION_ALLOCATOR); | ||
signalExceptionClass.defineAnnotatedMethods(RubySignalException.class); | ||
|
||
return signalExceptionClass; | ||
} | ||
|
||
@JRubyMethod(optional = 2, visibility = PRIVATE) | ||
public IRubyObject initialize(ThreadContext context, IRubyObject[] args, Block block) { | ||
final Ruby runtime = context.runtime; | ||
int argnum = 1; | ||
IRubyObject sig = context.nil; | ||
long _signo; | ||
int argc = args.length; | ||
|
||
if (argc > 0) { | ||
sig = TypeConverter.checkIntegerType(runtime, args[0], "to_int"); | ||
|
||
if (sig.isNil()) { | ||
sig = args[0]; | ||
} else { | ||
argnum = 2; | ||
} | ||
} | ||
|
||
Arity.checkArgumentCount(runtime, args, 1, argnum); | ||
|
||
if (argnum == 2) { | ||
_signo = sig.convertToInteger().getLongValue(); | ||
if (_signo < 0 || _signo > NSIG.longValue()) { | ||
throw runtime.newArgumentError("invalid signal number (" + _signo + ")"); | ||
} | ||
|
||
if (argc > 1) { | ||
sig = args[1]; | ||
} else { | ||
sig = runtime.newString(RubySignal.signmWithPrefix(RubySignal.signo2signm(_signo))); | ||
} | ||
} else { | ||
String signm = sig.toString(); | ||
_signo = RubySignal.signm2signo(RubySignal.signmWithoutPrefix(signm)); | ||
|
||
if (_signo == 0) { | ||
throw runtime.newArgumentError("unsupported name " + sig); | ||
} | ||
|
||
sig = runtime.newString(RubySignal.signmWithPrefix(signm)); | ||
} | ||
|
||
super.initialize(new IRubyObject[]{sig}, block); | ||
this.signo = runtime.newFixnum(_signo); | ||
|
||
return this; | ||
} | ||
|
||
@JRubyMethod | ||
public IRubyObject signo(ThreadContext context) { | ||
assert signo != null; | ||
|
||
if (signo == RubyBasicObject.UNDEF) return context.nil; | ||
|
||
return signo; | ||
} | ||
|
||
@JRubyMethod(name = {"message","signm"}) | ||
@Override | ||
public IRubyObject message(ThreadContext context) { | ||
return super.message(context); | ||
} | ||
|
||
private IRubyObject signo; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
560 changes: 401 additions & 159 deletions
560
core/src/main/java/org/jruby/ext/socket/Addrinfo.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
298 changes: 157 additions & 141 deletions
298
core/src/main/java/org/jruby/ext/socket/SocketUtils.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.