Beispiel #1
0
 public RelabelNode(TsurgeonPattern child, string newLabel)
     : base("relabel", new TsurgeonPattern[] { child })
 {
     // Overly complicated pattern to identify regexes surrounded by /,
     // possibly with / escaped inside the regex.
     // The purpose of the [^/]*[^/\\\\] is to match characters that
     // aren't / and to allow escaping of other characters.
     // The purpose of the \\\\/ is to allow escaped / inside the pattern.
     // The purpose of the \\\\\\\\ is to allow escaped \ at the end of
     // the pattern, so you can match, for example, /\\/.  There need to
     // be 8x\ because both java and regexes need escaping, resulting in 4x.
     Java.Util.Regex.Matcher m1 = substPattern.Matcher(newLabel);
     if (m1.Matches())
     {
         mode                   = RelabelNode.RelabelMode.Regex;
         this.labelRegex        = Pattern.Compile(m1.Group(1));
         this.replacementString = m1.Group(2);
         replacementPieces      = new List <string>();
         Java.Util.Regex.Matcher generalMatcher = oneGeneralReplacementPattern.Matcher(m1.Group(2));
         int lastPosition = 0;
         while (generalMatcher.Find())
         {
             if (generalMatcher.Start() > lastPosition)
             {
                 replacementPieces.Add(Sharpen.Runtime.Substring(replacementString, lastPosition, generalMatcher.Start()));
             }
             lastPosition = generalMatcher.End();
             string piece = generalMatcher.Group();
             if (piece.Equals(string.Empty))
             {
                 continue;
             }
             replacementPieces.Add(generalMatcher.Group());
         }
         if (lastPosition < replacementString.Length)
         {
             replacementPieces.Add(Sharpen.Runtime.Substring(replacementString, lastPosition));
         }
         this.newLabel = null;
     }
     else
     {
         mode = RelabelNode.RelabelMode.Fixed;
         Java.Util.Regex.Matcher m2 = regexPattern.Matcher(newLabel);
         if (m2.Matches())
         {
             // fixed relabel but surrounded by regex slashes
             string unescapedLabel = m2.Group(1);
             this.newLabel = RemoveEscapeSlashes(unescapedLabel);
         }
         else
         {
             // just a node name to relabel to
             this.newLabel = newLabel;
         }
         this.replacementString = null;
         this.replacementPieces = null;
         this.labelRegex        = null;
     }
 }
Beispiel #2
0
        /**
         * \brief Create the media player and load video
         */
        private void createMediaPlayer()
        {
            mMediaPlayerLock.Lock();
            mMediaControllerLock.Lock();

            mMediaPlayer     = new MediaPlayer();
            mMediaController = new MediaController(this);

            AssetFileDescriptor afd = null;
            bool fileExist          = true;

            try
            {
                afd = Assets.OpenFd(mMovieUrl);
            }
            catch (IOException e)
            {
                fileExist = false;
            }
            if (afd == null)
            {
                fileExist = false;
            }
            try
            {
                if (fileExist)
                {
                    mMediaPlayer.SetDataSource(afd.FileDescriptor, afd.StartOffset, afd.Length);
                    afd.Close();
                }
                else
                {
                    string URL_REGEX          = "^((https?|ftp)://|(www|ftp)\\.)[a-z0-9-]+(\\.[a-z0-9-]+)+((:[0-9]+)|)+([/?].*)?$"; //should be ok
                    Java.Util.Regex.Pattern p = Java.Util.Regex.Pattern.Compile(URL_REGEX);
                    Java.Util.Regex.Matcher m = p.Matcher(mMovieUrl);                                                               //replace with string to compare
                    if (m.Find())
                    {
                        mMediaPlayer.SetDataSource(mMovieUrl);
                    }
                }

                mMediaPlayer.SetDisplay(mHolder);
                mMediaPlayer.PrepareAsync();
                mMediaPlayer.SetOnPreparedListener(this);
                mMediaPlayer.SetOnErrorListener(this);
                mMediaPlayer.SetOnCompletionListener(this);
                mMediaPlayer.SetAudioStreamType(Stream.Music);
            }
            catch (Exception e)
            {
                Log.Error("PikkartFullscreenVideo", "error while creating the MediaPlayer: " + e.ToString());
                prepareForTermination();
                destroyMediaPlayer();
                Finish();
            }

            mMediaControllerLock.Unlock();
            mMediaPlayerLock.Unlock();
        }
Beispiel #3
0
        private bool isValidEmail(String email)
        {
            String EMAIL_PATTERN = "^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@"
                                   + "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$";

            Java.Util.Regex.Pattern pattern = Java.Util.Regex.Pattern.Compile(EMAIL_PATTERN);
            Java.Util.Regex.Matcher matcher = pattern.Matcher(email);
            return(matcher.Matches());
        }
 public override object MatchWithResult(string str)
 {
     if (str == null)
     {
         return(null);
     }
     Java.Util.Regex.Matcher m = pattern.Matcher(str);
     if (m.Matches())
     {
         return(m.ToMatchResult());
     }
     else
     {
         return(null);
     }
 }
Beispiel #5
0
        public virtual void TestRegExp()
        {
            // println("start");
            string token = "A;B;[C;D];E";
            // (*)&&^(*^)
            string pattern = "[\\[*\\]]";

            Java.Util.Regex.Pattern p = Java.Util.Regex.Pattern.Compile(pattern);
            string[] array            = token.Split(pattern);
            Java.Util.Regex.Matcher m = p.Matcher(token);
            // println(token);
            // println(m.groupCount());
            for (int i = 0; i < array.Length; i++)
            {
            }
        }
Beispiel #6
0
 public DescriptionPattern(Relation rel, bool negDesc, string desc, string name, bool useBasicCat, Func <string, string> basicCatFunction, IList <Pair <int, string> > variableGroups, bool isLink, string linkedName)
 {
     // what size string matchers to use before switching to regex for
     // disjunction matches
     // todo: conceptually final, but we'd need to rewrite TregexParser
     // to make it so.
     // also conceptually final, but it depends on the child
     // specifies the groups in a regex that are captured as matcher-global string variables
     // for example, /^:$/
     // for example, /^[$]$/
     // for example, /^-NONE-$/
     // for example, /^JJ/
     this.rel        = rel;
     this.negDesc    = negDesc;
     this.isLink     = isLink;
     this.linkedName = linkedName;
     if (desc != null)
     {
         stringDesc = desc;
         // TODO: factor out some of these blocks of code
         if (desc.Equals("__") || desc.Equals("/.*/") || desc.Equals("/^.*$/"))
         {
             descriptionMode = DescriptionPattern.DescriptionMode.Anything;
             descPattern     = null;
             exactMatch      = null;
             stringFilter    = null;
         }
         else
         {
             if (SingleWordPattern.Matcher(desc).Matches())
             {
                 // Expressions are written like this to put special characters
                 // in the tregex matcher, but a regular expression is less
                 // efficient than a simple string match
                 descriptionMode = DescriptionPattern.DescriptionMode.Exact;
                 descPattern     = null;
                 Java.Util.Regex.Matcher matcher = SingleWordPattern.Matcher(desc);
                 matcher.Matches();
                 string matchedGroup = null;
                 for (int i = 1; i <= matcher.GroupCount(); ++i)
                 {
                     if (matcher.Group(i) != null)
                     {
                         matchedGroup = matcher.Group(i);
                         break;
                     }
                 }
                 exactMatch   = matchedGroup;
                 stringFilter = null;
             }
             else
             {
                 //log.info("DescriptionPattern: converting " + desc + " to " + exactMatch);
                 if (MultiWordPattern.Matcher(desc).Matches())
                 {
                     Java.Util.Regex.Matcher matcher = MultiWordPattern.Matcher(desc);
                     matcher.Matches();
                     string matchedGroup = null;
                     for (int i = 1; i <= matcher.GroupCount(); ++i)
                     {
                         if (matcher.Group(i) != null)
                         {
                             matchedGroup = matcher.Group(i);
                             break;
                         }
                     }
                     matchedGroup = matchedGroup.ReplaceAll("\\\\", string.Empty);
                     if (matchedGroup.Split("[|]").Length > MaxStringMatcherSize)
                     {
                         descriptionMode = DescriptionPattern.DescriptionMode.Pattern;
                         descPattern     = Pattern.Compile(Sharpen.Runtime.Substring(desc, 1, desc.Length - 1));
                         exactMatch      = null;
                         stringFilter    = null;
                     }
                     else
                     {
                         //log.info("DescriptionPattern: not converting " + desc);
                         descriptionMode = DescriptionPattern.DescriptionMode.Strings;
                         descPattern     = null;
                         exactMatch      = null;
                         stringFilter    = new ArrayStringFilter(ArrayStringFilter.Mode.Exact, matchedGroup.Split("[|]"));
                     }
                 }
                 else
                 {
                     //log.info("DescriptionPattern: converting " + desc + " to " + stringFilter);
                     if (CaseInsensitivePattern.Matcher(desc).Matches())
                     {
                         Java.Util.Regex.Matcher matcher = CaseInsensitivePattern.Matcher(desc);
                         matcher.Matches();
                         string matchedGroup = null;
                         for (int i = 1; i <= matcher.GroupCount(); ++i)
                         {
                             if (matcher.Group(i) != null)
                             {
                                 matchedGroup = matcher.Group(i);
                                 break;
                             }
                         }
                         matchedGroup = matchedGroup.ReplaceAll("\\\\", string.Empty);
                         if (matchedGroup.Split("[|]").Length > MaxStringMatcherSize)
                         {
                             descriptionMode = DescriptionPattern.DescriptionMode.Pattern;
                             descPattern     = Pattern.Compile(Sharpen.Runtime.Substring(desc, 1, desc.Length - 1));
                             exactMatch      = null;
                             stringFilter    = null;
                         }
                         else
                         {
                             //log.info("DescriptionPattern: not converting " + desc);
                             descriptionMode = DescriptionPattern.DescriptionMode.Strings;
                             descPattern     = null;
                             exactMatch      = null;
                             stringFilter    = new ArrayStringFilter(ArrayStringFilter.Mode.CaseInsensitive, matchedGroup.Split("[|]"));
                         }
                     }
                     else
                     {
                         //log.info("DescriptionPattern: converting " + desc + " to " + stringFilter);
                         if (PrefixPattern.Matcher(desc).Matches())
                         {
                             Java.Util.Regex.Matcher matcher = PrefixPattern.Matcher(desc);
                             matcher.Matches();
                             string matchedGroup = null;
                             for (int i = 1; i <= matcher.GroupCount(); ++i)
                             {
                                 if (matcher.Group(i) != null)
                                 {
                                     matchedGroup = matcher.Group(i);
                                     break;
                                 }
                             }
                             if (matchedGroup.Split("\\|").Length > MaxStringMatcherSize)
                             {
                                 descriptionMode = DescriptionPattern.DescriptionMode.Pattern;
                                 descPattern     = Pattern.Compile(Sharpen.Runtime.Substring(desc, 1, desc.Length - 1));
                                 exactMatch      = null;
                                 stringFilter    = null;
                             }
                             else
                             {
                                 //log.info("DescriptionPattern: not converting " + desc);
                                 descriptionMode = DescriptionPattern.DescriptionMode.Strings;
                                 descPattern     = null;
                                 exactMatch      = null;
                                 stringFilter    = new ArrayStringFilter(ArrayStringFilter.Mode.Prefix, matchedGroup.Split("[|]"));
                             }
                         }
                         else
                         {
                             //log.info("DescriptionPattern: converting " + desc + " to " + stringFilter);
                             if (desc.Matches("/.*/"))
                             {
                                 descriptionMode = DescriptionPattern.DescriptionMode.Pattern;
                                 descPattern     = Pattern.Compile(Sharpen.Runtime.Substring(desc, 1, desc.Length - 1));
                                 exactMatch      = null;
                                 stringFilter    = null;
                             }
                             else
                             {
                                 if (desc.IndexOf('|') >= 0)
                                 {
                                     // patterns which contain ORs are a special case; we either
                                     // promote those to regex match or make a string matcher out
                                     // of them.  for short enough disjunctions, a simple string
                                     // matcher can be more efficient than a regex.
                                     string[] words = desc.Split("[|]");
                                     if (words.Length <= MaxStringMatcherSize)
                                     {
                                         descriptionMode = DescriptionPattern.DescriptionMode.Strings;
                                         descPattern     = null;
                                         exactMatch      = null;
                                         stringFilter    = new ArrayStringFilter(ArrayStringFilter.Mode.Exact, words);
                                     }
                                     else
                                     {
                                         descriptionMode = DescriptionPattern.DescriptionMode.Pattern;
                                         descPattern     = Pattern.Compile("^(?:" + desc + ")$");
                                         exactMatch      = null;
                                         stringFilter    = null;
                                     }
                                 }
                                 else
                                 {
                                     // raw description
                                     descriptionMode = DescriptionPattern.DescriptionMode.Exact;
                                     descPattern     = null;
                                     exactMatch      = desc;
                                     stringFilter    = null;
                                 }
                             }
                         }
                     }
                 }
             }
         }
     }
     else
     {
         if (name == null && linkedName == null)
         {
             throw new AssertionError("Illegal description pattern.  Does not describe a node or link/name a variable");
         }
         stringDesc      = " ";
         descriptionMode = null;
         descPattern     = null;
         exactMatch      = null;
         stringFilter    = null;
     }
     this.name = name;
     SetChild(null);
     this.basicCatFunction = (useBasicCat ? basicCatFunction : null);
     //    System.out.println("Made " + (negDesc ? "negated " : "") + "DescNode with " + desc);
     this.variableGroups = variableGroups;
 }
Beispiel #7
0
 private bool Check(string openload, string str)
 {
     Java.Util.Regex.Pattern pattern = Java.Util.Regex.Pattern.Compile(openload, Java.Util.Regex.RegexOptions.CaseInsensitive);
     Java.Util.Regex.Matcher matcher = pattern.Matcher(str);
     return(matcher.Find());
 }