Package com.rdio.simple

Examples of com.rdio.simple.RdioClient$Token


      }

      StringMultiset tagAttributes = tag.getAttributes();

      while (index < size) {
        Token token = tokens.get(index);
        index++;
        TokenType tokenType = token.getType();
        if (ATTRIBUTE == tokenType) {
          String attribute = token.getValue();
          attribute = ignoreCase ? attribute.toLowerCase() : attribute;
          attributes.add(attribute);
          tagAttributes.add(attribute);
        } else if (TAG == tokenType) {
          // Tag closing token
          tag.setDirty(false);
          inTag = false;
          break;
        }
      }
      if (newAttributes && attributes.size() != 0) {
        line.putTag(TAG_ATTRIBUTES, attributes);
      } else if (!newAttributes && attributes.size() == 0) {
        line.putTag(TAG_ATTRIBUTES, null);
      }
    } else {
      line.putTag(TAG_ATTRIBUTES, null);
    }

    while (index < size) {
      Token token = tokens.get(index);
      index++;
      TokenType tokenType = token.getType();
      if (TAG == tokenType) {
        if (inTag) {
          if (">".equals(token.getValue()) || "/>".equals(token.getValue())) {
            // If type is "tag" and content is ">", this is HTML token.
            inTag = false;
          }
        } else {
          // Check that we are in html mode.
          if (CodeMirror2.HTML.equals(token.getMode())) {
            lastTagTokenIndex = index - 1;
            inTag = true;
          }
        }
      }
    }

    if (inTag) {
      if (lastTagTokenIndex != -1) {
        index = lastTagTokenIndex;
        Token token = tokens.get(index);
        index++;
        String tagName = token.getValue().substring(1).trim();
        tag = new HtmlTagWithAttributes(tagName);
        StringMultiset tagAttributes = tag.getAttributes();
        while (index < size) {
          token = tokens.get(index);
          index++;
          TokenType tokenType = token.getType();
          if (ATTRIBUTE == tokenType) {
            String attribute = token.getValue();
            tagAttributes.add(ignoreCase ? attribute.toLowerCase() : attribute);
          }
        }
      }
View Full Code Here


   */
  static boolean buildInvocationSequenceContext(
      JsonArray<Token> tokens, boolean expectingPeriod, JsonArray<String> contextParts) {
    // right-to-left tokens processing loop.
    while (!tokens.isEmpty()) {
      Token lastToken = tokens.pop();
      TokenType lastTokenType = lastToken.getType();
      String lastTokenValue = lastToken.getValue();

      // Omit whitespaces.
      if (lastTokenType == WHITESPACE) {
        continue;
      }
View Full Code Here

    if (result == null) {
      return new ExtendedParseResult<T>(null, Context.NOT_PARSED);
    }

    JsonArray<Token> tokens = result.getTokens();
    Token lastToken = tokens.peek();
    Preconditions.checkNotNull(lastToken,
        "Last token expected to be non-null; text='%s', position=%s", text, position);
    TokenType lastTokenType = lastToken.getType();
    String lastTokenValue = lastToken.getValue();
    if (!addSpace) {
      if (lastTokenType == STRING || lastTokenType == REGEXP) {
        return new ExtendedParseResult<T>(result, Context.IN_STRING);
      } else if (lastTokenType == TokenType.COMMENT) {
        return new ExtendedParseResult<T>(result, Context.IN_COMMENT);
      }

      // Python parser, for a purpose of simplicity, parses period and variable
      // name as a single token. If period is not followed by identifier, parser
      // states that this is and error, which is, generally, not truth.
      if ((lastTokenType == TokenType.ERROR) && LITERAL_PERIOD.equals(lastTokenValue)) {
        tokens.pop();
        tokens.add(new Token(lastToken.getMode(), TokenType.NULL, LITERAL_PERIOD));
      }

      return new ExtendedParseResult<T>(result, Context.IN_CODE);
    }

    // Remove / shorten last token to omit added whitespace.
    tokens.pop();
    if (lastTokenType == STRING || lastTokenType == REGEXP || lastTokenType == TokenType.COMMENT) {
      // Whitespace stuck to token - strip it.
      lastTokenValue = lastTokenValue.substring(0, lastTokenValue.length() - 1);
      tokens.add(new Token(lastToken.getMode(), lastTokenType, lastTokenValue));
      if (lastTokenType == STRING || lastTokenType == REGEXP) {
        return new ExtendedParseResult<T>(result, Context.IN_STRING);
      } else {
        return new ExtendedParseResult<T>(result, Context.IN_COMMENT);
      }
View Full Code Here

      }
      JsonArray<Token> tokens = parseResult.getTokens();
      if (tokens.isEmpty()) {
        return null;
      }
      Token lastToken = tokens.peek();
      return lastToken.getValue();
    }
View Full Code Here

    int indent = 0;
    if (TokenType.WHITESPACE == tokens.get(0).getType()) {
      indent = tokens.get(0).getValue().length();
    }

    Token lastToken = tokens.pop();
    TokenType lastTokenType = lastToken.getType();

    if (lastTokenType == WHITESPACE) {
      return new CompletionContext<T>("", "", false, CompletionType.GLOBAL, parseResult, indent);
    }

    String lastTokenValue = lastToken.getValue();

    if (lastTokenType == KEYWORD) {
      return new CompletionContext<T>(
          "", lastTokenValue, false, CompletionType.GLOBAL, parseResult, indent);
    }
View Full Code Here

        List<Album> resultList = new ArrayList<Album>();
        // String q = URLEncoder.encode(artist + " " + album, "UTF-8");
        String q = artist + " " + album;
        logger.debug("Querying Rdio for: {}", q);

        RdioClient rdio = new RdioCoreClient(new RdioClient.Consumer(Rdio.KEY, Rdio.SHARED_SECRET));
        String response = rdio.call("search", Parameters.build("query", q).and("types", "Album").and("extras", "icon400,isCompilation"));

        logger.trace("Response from Rdio: {}", response);
        JSONObject json = new JSONObject(response);

        String status = json.getString("status");
View Full Code Here

    public static void loadTracks(Album a) throws IOException, JSONException, RdioException {
        RdioAlbum rdioAlbum = (RdioAlbum) a;
        List<DataSet> datasets = a.getTracks();

        RdioClient rdio = new RdioCoreClient(new RdioClient.Consumer(Rdio.KEY, Rdio.SHARED_SECRET));
        //@formatter:off
        String extras = "["
                + "{\"field\": \"*\", \"exclude\": true},"
                + "{\"field\": \"name\"},"
                + "{\"field\": \"icon\"},"
                + "{\"field\": \"tracks\", \"extras\": ["
                + "     {\"field\": \"*\", \"exclude\": true},"
                + "     {\"field\": \"name\"},"
                + "     {\"field\":\"key\"},"
                + "     {\"field\":\"artist\"},"
                + "     {\"field\":\"trackNum\"}]"
                + "}]";
        //@formatter:on
        logger.debug("Getting album {} [{}] from Rdio", rdioAlbum.getTitle(), rdioAlbum.getId());
        String response = rdio.call("get", Parameters.build("keys", rdioAlbum.getId()).and("extras", extras));
        logger.trace("Response from Rdio: {}", response);

        JSONObject json = new JSONObject(response);
        if ("ok".equalsIgnoreCase(json.getString("status"))) {
            JSONObject result = json.getJSONObject("result");
View Full Code Here

        RdioAlbum rdioAlbum = (RdioAlbum) a;
        String id = rdioAlbum.getId();

        logger.debug("Querying Rdio for album art for: {} - {}", rdioAlbum.getArtist(), rdioAlbum.getTitle());

        RdioClient rdio = new RdioCoreClient(new RdioClient.Consumer(Rdio.KEY, Rdio.SHARED_SECRET));
        String response = rdio.call("get", Parameters.build("keys", id).and("extras", "-*,icon,icon400"));

        logger.trace("Response from Rdio: {}", response);

        JSONObject json = new JSONObject(response);
        if ("ok".equalsIgnoreCase(json.getString("status"))) {
View Full Code Here

    }

    private Token buildTokenModel(TokenInfo token) throws CloudException {
        Preconditions.checkNotNull(token);

        Token response = new Token();

        response.expires = TokenAuth.getExpiration(token);

        UserData user = authRepository.getUsers().find(token.getUserId());
        if (user == null) {
View Full Code Here

    return new JAVACCParser(reader, new SPARQLParser(reader));
  }

  @Override
  public TOKEN getNextToken() {
    final Token token = this.parser.getNextToken();
    if(token==null){
      return null;
    } else {
      return new SPARQLToken(token);
    }
View Full Code Here

TOP

Related Classes of com.rdio.simple.RdioClient$Token

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.